Skip to content

Releases: Gernott/mask

v8.1.3

16 May 06:08
Compare
Choose a tag to compare

Fixed

  • maxitems no longer forced to 1 for File fields.

v8.1.2

15 May 07:14
Compare
Choose a tag to compare

Fixed

  • Prevent error when be:uri.editRecord is used in preview template (Thanks to nitori) #549

v8.1.1

08 May 10:15
Compare
Choose a tag to compare

Fixed

  • Errors in module appear in notification again
  • Type Integer eval cleaned up

v8.1.0

02 May 12:37
Compare
Choose a tag to compare

Compatibility TYPO3 v12.4 LTS.
This release is 100% deprecation-free!

Read the release article here.

Upgrade Wizard necessary

The persistence / matching of type Content fields has changed. It is necessary
to run the upgrade wizard with the title Migrate Mask Content fields.

Command with TYPO3 CLI:

// composer mode
vendor/bin/typo3 upgrade:run migrateContentFields

// classic mode
typo3/sysext/core/bin/typo3 upgrade:run migrateContentFields

v8.0.8

22 Mar 09:16
Compare
Choose a tag to compare

v8.0.7

27 Feb 17:52
Compare
Choose a tag to compare

Fixed

  • Fixed error when naming own Mask field bodytext.

How to fix, if this error already exist: Remove bodytextTypeByElement and add the correct type richtext or text.

Before:

                "tx_mask_bodytext": {
                    "bodytextTypeByElement": {
                        "foo": "richtext",
                    },
                    "config": {
                        "enableRichtext": 1,
                        "type": "text"
                    }
                },

After:

                "tx_mask_bodytext": {
                    "type": "richtext"
                    "config": {
                        "enableRichtext": 1,
                        "type": "text"
                    }
                },

v7.2.16

27 Feb 17:55
Compare
Choose a tag to compare

Fixed

  • Fixed error when naming own Mask field bodytext.

How to fix, if this error already exist: Remove bodytextTypeByElement and add the correct type richtext or text.

Before:

                "tx_mask_bodytext": {
                    "bodytextTypeByElement": {
                        "foo": "richtext",
                    },
                    "config": {
                        "enableRichtext": 1,
                        "type": "text"
                    }
                },

After:

                "tx_mask_bodytext": {
                    "type": "richtext"
                    "config": {
                        "enableRichtext": 1,
                        "type": "text"
                    }
                },

v8.0.6

02 Feb 16:12
Compare
Choose a tag to compare

Fixed

  • Error for file fields when upgrading from older installations #533

Important: If you already experience this error, you need to remove "coreField" from your custom file fields definition
of your mask json file and add something to the configuration:

Before

    "coreField": 1,
    "fullKey": "tx_mask_files",
    "imageoverlayPalette": 1,
    "key": "files",
    "type": "file"

After

    "config": {
        "minitems": "0"
    }
    "fullKey": "tx_mask_files",
    "imageoverlayPalette": 1,
    "key": "files",
    "type": "file"

v8.0.5

07 Dec 11:16
Compare
Choose a tag to compare

Fixed

  • Compatibility TYPO3 v12.1

v8.0.4

22 Nov 17:16
Compare
Choose a tag to compare

If you encounter any issues with this patch, please report it on GitHub.

Fixed

  • Streamlined inline record filling.