3.6.2 |
> V3.6 introduced strict typing, the troublesome occurrences are now properly checked or casted
### Bugfixes
* Handle multiple (existing and potential) strict type errors by @zoglo in https://github.com/oveleon/contao-component-style-manager/pull/110
____
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.6.1...3.6.2 |
3.6.1 |
### Bugfix
* Do not use `$dc->id` for slug generator by @fritzmg in https://github.com/oveleon/contao-component-style-manager/pull/107 (fixes #106)
___
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.6.0...3.6.1 |
3.6.0 |
### Changes
* PHP ^8.1 only
* Unlock Symfony 7
* Added missing shadow dependencies
* Use PHP Attributes instead of annotations a9fccfefefeae12ec0d609b9bea7b02465e76ff6 43f733aefc3093182e96bae9b6b30509bb599833
* Register routes directly to allow Symfony 5,6 and 7 simultaneously b19e8b215ccb2da2289d03ddf691b0ff340b2994
### Bugfix
* Type safety for PHP errors 9e463500604afec7fa9e034fad1e2277ffd61d47
* Fix other PHP 8 warnings eb8bfd208dc45a70c3d1b842f31c981e676ddd95
* Add forwards compatibility for edit and children icons a61cb2ff7a831ff4d36e418c1d666913879885e7
* Hide the style manager widget legend again (`^C5`) eda7c41ee7a231c28b55549b85caf1ba29a475fe
___
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.5.3...3.6.0 |
3.5.3 |
## What's Changed * Skip migration if field does not exist by @fritzmg in https://github.com/oveleon/contao-component-style-manager/pull/101
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.5.2...3.5.3 |
3.5.2 |
## What's Changed
* Correctly override bundle-configuration by @zoglo in https://github.com/oveleon/contao-component-style-manager/pull/100
____
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.5.1...3.5.2 |
3.5.1 |
## What's Changed
* Reset excluded groups when calling prepare method by @zoglo in https://github.com/oveleon/contao-component-style-manager/pull/98
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.5.0...3.5.1 |
3.5.0 |
## What's Changed * Twig support by @doishub in https://github.com/oveleon/contao-component-style-manager/pull/97
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.4.3...3.5.0 |
3.4.3 |
## What's Changed * Skip migrations for non-existing style-manager groups (#84) by @zoglo in https://github.com/oveleon/contao-component-style-manager/pull/96
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.4.2...3.4.3 |
3.4.2 |
Bugfix
- Fixed an issue where stylemanager widget would not remember the state in Contao 5.x https://github.com/oveleon/contao-component-style-manager/issues/93
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.4.1...3.4.2 |
3.4.1 |
Bugfix
- Fixed an issue with overriding values from bundle configs through the style manager archive https://github.com/oveleon/contao-component-style-manager/pull/90/commits/0bf720b66bf36c25a199e5e7089679851d3d945c > if an option was not found, the first value has been overwritten due to array_search returning false, hence searching for the first key '0' within the classes array |
3.4.0 |
Addition
- added Dark-Mode for Contao ^5 5469b5f0128fa0ee588ca6fab3ca551c5fa29636 - rework partial import aded55f70af84b96aac6c7cff8ede8e4fd4d3381
Bugfixes
- Set timestamp when importing stylemanager configurations bd5f31dee82d854b8a31ecd22f3a60219c21532a |
add Zeige mehr Versionen an |
3.3.0 |
Update
- drop support for PHP 7 - enable style manager bundle configurations within subfolders in templates https://github.com/oveleon/contao-component-style-manager/pull/88/commits/f28ddb820ba31160d60ef30e2944acc97c353686
|
3.2.0 |
Addition
- added Contao ^5.1 support #80 @Tastaturberuf
> **Known Limitation** As of now, template variables do not work within Twig-Templates, please check: https://github.com/Tastaturberuf/contao-component-style-manager/blob/contao-5/docs/TEMPLATE_VARIABLES.md on how to bypass it. |
3.1.2 |
## What's Changed - Fix migration
**Full Changelog**: https://github.com/oveleon/contao-component-style-manager/compare/3.1.1...3.1.2 |
3.1.1 |
- Remove strict check for `$href` in config buttons (#78 - @zoglo) |
3.1.0 |
Additions
#### Display archive group title above StyleManager widget https://github.com/oveleon/contao-component-style-manager/commit/5f2815ba4cc3787ce0d7325b44731df65df3dcf9 https://github.com/oveleon/contao-component-style-manager/commit/6acf49d6fa13445b17dddb7ed8c8a9dc55017827 https://github.com/oveleon/contao-component-style-manager/commit/950dcb91e5be5b67f4b8010a0e9162c1683d8554 Example: [Archive group titles](https://user-images.githubusercontent.com/55794780/218698182-9643e1a0-672c-41fc-99de-91c1038e795d.png)
> You can disable this feature by excluding via config.yaml: https://github.com/oveleon/contao-component-style-manager/blob/master/docs/CONFIGURATION.md#hide-group-titles
___
#### Added the posibility to exclude specific children from the archive when using the css classes as template variables https://github.com/oveleon/contao-component-style-manager/commit/450f43ad537aed320d516017bd0a06c09ed98be1 https://github.com/oveleon/contao-component-style-manager/commit/49e647251798653361e2c85fdc9063c41b8ba5bd
Usage: ```php // Get $this->styleManager->exclude(['foo','bar'])->get('archive'); // Prepare $this->styleManager->prepare('archive')->exclude(['foo','bar'])->format(' %s'); // or $this->styleManager->exclude(['foo','bar'])->prepare('archive')->format(' %s'); ``` |
3.0.3 |
Bugfix
- Do not allow Contao > 4.13 (^4.13 only) |
3.0.2 |
- Fixes an error when migrating (#71) |
3.0.1 |
- Fixing an error when no bundle configuration exists (#68) |
3.0.0 |
## Version 3.0 Before you change to this version, please read the [UPGRADE.md](https://github.com/oveleon/contao-component-style-manager/blob/master/UPGRADE.md) file.
### New Features #### 🔹 Bundle-Configurations The StyleManager can now be fed by other extensions. This saves time for new projects and allows the dynamic growth of a project as well as other benefits. For example, already exported configurations can now be delivered directly by other extensions, so that an import is no longer mandatory.
[Learn more about bundle configurations](https://github.com/oveleon/contao-component-style-manager/blob/master/docs/BUNDLE_CONFIG.md)
#### 🔹 Partial import The import functionality has been extended to import only parts of a configuration.
[Learn more about import / export](https://github.com/oveleon/contao-component-style-manager/blob/master/docs/IMPORT_EXPORT.md)
#### 🔹 Better support for other extensions By unifying and using constants in the code, support for custom DCAs has been improved. In addition, a [boilerplate](https://github.com/oveleon/contao-component-style-manager/blob/master/docs/SUPPORT.md#boilerplate) is available in the documentation.
[Learn more about supporting your own extensions](https://github.com/oveleon/contao-component-style-manager/blob/master/docs/SUPPORT.md) |
2.6.5 |
- Fix undefined array key warning #63 | @fritzmg |
2.6.4 |
Bugfixes
- Changes to StyleManagerArchive label (#60) https://github.com/oveleon/contao-component-style-manager/commit/44e22eb297dd079ffb26677a55209b4c5ce49b84 | @fritzmg - Changed collation for aliases (css-groups) (#59) https://github.com/oveleon/contao-component-style-manager/commit/2629a3749c4076c62f486f01ed0c70f021e6f752 | @zoglo |
2.6.3 |
- Fix page / layout template vars (#57) |
2.6.2 |
- Fix template variable for pages and layouts @doishub - Add French translations @LupusVII |
2.6.1 |
- Fix php8 warnings |
2.6.0 |
- Category description added (#49) |
2.5.0 |
- Adding an blank option can now be set in a CSS group (*default values*) (#45) - Class fields are filled regardless of permissions (#40) - Adding php8 compat (#46) |
2.4.4 |
- Fix: Values of a CSS group that contained HTML entities were not selected again after saving - Spelling has been corrected - Add missing translations (#41) |
2.4.3 |
Fix: Invalid SQL definition for cssID (#37) |
2.4.2 |
Increase the length of the database fields to ensure larger sets of styles |
2.4.1 |
|
2.4.0 |
|
2.3.4 |
|
2.3.3 |
|
2.3.2 |
|
2.3.1 |
|
2.3.0 |
|
2.2.0 |
|
2.1.3 |
|
2.1.2 |
|
2.1.1 |
|
2.1.0 |
|
2.0.1 |
|
2.0.0 |
|
1.2.1 |
|
1.2.0 |
|
1.1.2 |
|
1.1.1 |
|
1.1.0 |
|
1.0.2 |
|
1.0.1 |
|
1.0.0 |
|
dev-main |
|
2.x-dev |
|