From 10f4b5ff5eb1926cc2e3442f2e353509ca817af1 Mon Sep 17 00:00:00 2001 From: Philipp Parzer Date: Thu, 3 Sep 2020 12:01:32 +0200 Subject: [PATCH 1/5] Raise version to 10.4 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4975f3f..cc4ef1f 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "homepage": "http://wappler.systems", "license": "GPL-2.0-or-later", "require": { - "typo3/cms-core": "^7.6 || ^8.7 || ^9.5" + "typo3/cms-core": "^7.6 || ^8.7 || ^9.5 || ^10.4" }, "replace": { "svewap/cleverreach": "self.version" From 8655b44d41513eefaceb9d81660d049a6d6844fe Mon Sep 17 00:00:00 2001 From: Philipp Parzer Date: Fri, 4 Sep 2020 12:34:29 +0200 Subject: [PATCH 2/5] raise version --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index cc4ef1f..31eedbf 100644 --- a/composer.json +++ b/composer.json @@ -4,6 +4,7 @@ "type": "typo3-cms-extension", "homepage": "http://wappler.systems", "license": "GPL-2.0-or-later", + "version": "0.1.7", "require": { "typo3/cms-core": "^7.6 || ^8.7 || ^9.5 || ^10.4" }, From 1c63351e16840bf099806ec6df558119e25eb07b Mon Sep 17 00:00:00 2001 From: Philipp Parzer Date: Fri, 4 Sep 2020 12:34:57 +0200 Subject: [PATCH 3/5] raise version --- ext_emconf.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext_emconf.php b/ext_emconf.php index d580674..92eda11 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -10,10 +10,10 @@ 'author' => 'Sven Wappler', 'author_email' => 'typo3YYYY@wappler.systems', 'author_company' => 'WapplerSystems', - 'version' => '0.1.6', + 'version' => '0.1.7', 'constraints' => [ 'depends' => [ - 'typo3' => '7.6.0-9.5.99', + 'typo3' => '7.6.0-10.4.99', 'php' => '7.0.0-7.2.99', ], 'conflicts' => [], From bef85899cf300fcddbc671fcff84e44d54f890cd Mon Sep 17 00:00:00 2001 From: Philipp Parzer Date: Wed, 9 Sep 2020 10:41:03 +0200 Subject: [PATCH 4/5] Make compatible to Core Files use \TYPO3\CMS\Core\TypoScript\TypoScriptService fix annotation initializeFinisher --- Classes/Powermail/Finisher/CleverReach.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Classes/Powermail/Finisher/CleverReach.php b/Classes/Powermail/Finisher/CleverReach.php index 1561b68..7d93e7b 100644 --- a/Classes/Powermail/Finisher/CleverReach.php +++ b/Classes/Powermail/Finisher/CleverReach.php @@ -35,7 +35,7 @@ class CleverReach extends AbstractFinisher /** * Because of T3 7 compatibility use this class - * @var \TYPO3\CMS\Extbase\Service\TypoScriptService + * @var \TYPO3\CMS\Core\TypoScript\TypoScriptService * @TYPO3\CMS\Extbase\Annotation\Inject */ protected $typoScriptService; @@ -119,9 +119,9 @@ public function cleverreachFinisher() /** - * Initialize + * @return void */ - public function initializeFinisher() + public function initializeFinisher(): void { $configuration = $this->typoScriptService->convertPlainArrayToTypoScriptArray($this->settings); if (!empty($configuration['dbEntry.'])) { From 38c1d8b3883c8bc465bedb11573f4240cdc108ba Mon Sep 17 00:00:00 2001 From: Philipp Parzer Date: Wed, 9 Sep 2020 11:25:04 +0200 Subject: [PATCH 5/5] Fix Folder Name --- ext_tables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_tables.php b/ext_tables.php index d74eff9..d367c96 100644 --- a/ext_tables.php +++ b/ext_tables.php @@ -4,7 +4,7 @@ } //# Add page TSConfig -$pageTsConfig = ''; +$pageTsConfig = ''; \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig($pageTsConfig);