Skip to content

Commit

Permalink
[TASK] Update for TCA fixes and composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Zillion01 committed Sep 29, 2021
1 parent 5a0be13 commit 73b8c50
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
Expand Up @@ -2,8 +2,8 @@
defined('TYPO3_MODE') or die();

$boot = static function () {
// Remove TCA settings for version 10 to avoid entries in TCA migration check
if (\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Information\Typo3Version::class)->getMajorVersion() === 10) {
// Remove TCA settings for version 10+ to avoid entries in TCA migration check
if (\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Information\Typo3Version::class)->getMajorVersion() >= 10) {
foreach (['question', 'category', 'questioncomment', 'categorycomment'] as $tableSuffix) {
unset($GLOBALS['TCA']['tx_jpfaq_domain_model_' . $tableSuffix]['interface']['showRecordFieldList']);
}
Expand Down
5 changes: 5 additions & 0 deletions Documentation/ChangeLog/Index.rst
Expand Up @@ -10,6 +10,11 @@

ChangeLog
=========
10.4.1
"""""
#. TCA fixes for TYPO3 10.4. (thx to Sven Wappler)
#. Add extension key to composer.json (thx to Klaus Hörmann-Engl)

10.4.0
"""""
For TYPO3 CMS versions 9.5 and 10.4. (thx to Cristian Fries)
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
@@ -1,8 +1,8 @@
[general]
project = Frequently Asked Questions
release = 10.4.0
release = 10.4.1
version = 10.4
copyright = 2020
copyright = 2021

[notify]
about_new_build = no
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.yml
Expand Up @@ -4,10 +4,10 @@

---
conf.py:
copyright: 2020
copyright: 2021
project: jpFAQ
version: 10.4
release: 10.4.0
release: 10.4.1
intersphinx_mapping:
t3tsref:
- http://docs.typo3.org/typo3cms/TyposcriptReference/
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Expand Up @@ -10,7 +10,7 @@
'uploadfolder' => false,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '10.4.0',
'version' => '10.4.1',
'constraints' =>
array(
'depends' =>
Expand Down

0 comments on commit 73b8c50

Please sign in to comment.