Skip to content

Releases: oveleon/contao-component-style-manager

3.4.0

01 Oct 19:11
fea96e5
Compare
Choose a tag to compare

Addition

Bugfixes

  • Set timestamp when importing stylemanager configurations bd5f31d

3.3.0

22 Jun 20:40
04c621c
Compare
Choose a tag to compare

Update

  • drop support for PHP 7
  • enable style manager bundle configurations within subfolders in templates f28ddb8

3.2.0

13 Mar 10:22
dcb4b2e
Compare
Choose a tag to compare

Addition

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

08 Mar 14:29
796fb89
Compare
Choose a tag to compare

What's Changed

  • Fix migration

Full Changelog: 3.1.1...3.1.2

3.1.1

27 Feb 07:13
38d1118
Compare
Choose a tag to compare
  • Remove strict check for $href in config buttons (#78 - @zoglo)

3.1.0

15 Feb 12:57
2b4cd96
Compare
Choose a tag to compare

Additions

Display archive group title above StyleManager widget 5f2815b 6acf49d 950dcb9

Example: Archive group titles

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 450f43a 49e6472

Usage:

  // 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

19 Jan 16:05
6e25460
Compare
Choose a tag to compare

Bugfix

  • Do not allow Contao > 4.13 (^4.13 only)

3.0.2

06 Dec 07:22
d7f5677
Compare
Choose a tag to compare
  • Fixes an error when migrating (#71)

3.0.1

24 Nov 16:21
cc737da
Compare
Choose a tag to compare
  • Fixing an error when no bundle configuration exists (#68)

3.0.0

21 Nov 16:14
b7d9b05
Compare
Choose a tag to compare

Version 3.0

Before you change to this version, please read the 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

🔹 Partial import

The import functionality has been extended to import only parts of a configuration.

Learn more about import / export

🔹 Better support for other extensions

By unifying and using constants in the code, support for custom DCAs has been improved. In addition, a boilerplate is available in the documentation.

Learn more about supporting your own extensions