Releases
- V1.0.25 - 2022-11-08
- V1.0.24 - 2022-11-08
- V1.0.23 - 2022-11-07
- V1.0.22 - 2022-09-21
- V1.0.21 - 2022-09-05
- V1.0.20 - 2022-06-30
- V1.0.19 - 2022-06-23
- V1.0.18 - 2022-06-15
- V1.0.17 - 2022-06-15
- V1.0.16 - 2022-06-15
- V1.0.15 - 2022-06-14
- V1.0.14 - 2022-06-01
- V1.0.13 - 2022-05-23
- V1.0.12 - 2022-05-11
- V1.0.11 - 2022-04-14
- V1.0.10 / v1.0.0 - 2022-02-17
V1.0.25 - 2022-11-08
Bug fixes:
- Load scripts tags with src after ajax call.
Now you can load script tags like this:
<script srr='/path-to-script-to-be-loaded.js'></script>
V1.0.24 - 2022-11-08
Bug fixes:
- Get right selector for batch edit / delete
V1.0.23 - 2022-11-07
New features:
- now able to pass boolean to
$form->readonly($boolean)
/$form->disabled($boolan)
$form ->number('comment_id', __('Comment id')) ->default((request()->comment_id ?? '')) ->readonly((request()->comment_id ? true : false));
- added morphMany to show section
Bug fixes:
- Number field: disable change for readonly / disabled fields
- CSS: Space between cards
- Show footer in card for relations inside Show / display part
- Form Builder also check on full url when generating
_pervious_
field - Batch Actions removed getElementClass
Contributions
Much appreciation for the contributions for this release:
- https://github.com/hirayama-onagigawa-computing
- https://github.com/franzyke
- https://github.com/yeminlideveloper
V1.0.22 - 2022-09-22
New features:
- disable batch edit
Bug fixes:
- made column selector work propery (thanks to hirayama-onagigawa-computing)
Contributions
Much appreciation for the contributions for this release:
V1.0.21 - 2022-09-05
Bug fixes:
- css selector for choichesjs fixed
Contributions
Much appreciation for the contributions for this release:
V1.0.20 - 2022-06-30
New features:
- fields in widget forms can now be altered (not protected anymore)
- list fields can be sorted now
V1.0.19 - 2022-06-23
New features:
- show/hide password for password fields
- list fields can be sorted now
V1.0.16/17/18 - 2022-06-15
Bug fixes:
- js / css resource can now be excluded from the minifier
- allow ajax request to return without title tag
V1.0.15 - 2022-06-14
New features:
- introducting controller hooks: https://open-admin.org/docs/en/admin-controller-hooks
- Speeding up ajax request. Replace dom-crawler by plain str_replace functions
- new config option to exclude fields from the opration log (like passwords)
Bug fixes:
- bootstrap colors for operation log
- prevent thumbnails from being delete on save for picture fields
V1.0.14 - 2022-06-01
Bug fixes:
- make switch field working properly
- fix overflow bug for main wrapper sidebar
V1.0.13 - 2022-05-23
New features:
- artisan command for dev links. For development purpose you can create a symbolic link to resource dirctory so tests can be done on the fly without the resources needed to be published.
php artisan admin:dev-links
Bug fixes:
- allow linked forms to have upload fields
V1.0.12 - 2022-05-11
New features:
- get function for admin.ajax
- small buttons
- default on empty value
$form->text('columnName')->defaultOnEmpty('value_for_db');
Bug fixes:
- always prepare value for fields
- not deleting files when they are not there
- default value for key/value list
V1.0.11 - 2022-04-14
New features:
- changed button colors
Bug fixes:
- limit php version constaints
V1.0.10 / v1.0.0 - 2022-02-17
Started refactoring the whole architecture. This should have been with different version number below 1 (0.1 / 0.9 ect..) After this a usable an actual usable version 1 was launched.