Releases: Gernott/mask
Releases · Gernott/mask
v8.1.3
v8.1.2
v8.1.1
v8.1.0
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
- Compatibility fix for upcoming new associative array keys for select items. See: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77626
v8.0.7
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
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
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"