From 37c7150ce8662c4195ed97f713ef5fd9274cdf88 Mon Sep 17 00:00:00 2001 From: Fabian Galinski Date: Sat, 28 Nov 2015 18:49:02 +0100 Subject: [PATCH] [FEATURE] Adds the compatibility for TYPO3 7.6 --- .../Controller/GoogleSitemapController.php | 4 ++-- .../TypoScript/Frontend/constants.txt | 0 Configuration/TypoScript/Frontend/setup.txt | 0 Resources/Private/Language/de.locallang.xlf | 0 .../Private/Language/de.locallang_backend.xlf | 0 .../Private/Language/de.locallang_db.xlf | 0 Resources/Private/Language/locallang.xlf | 0 .../Private/Language/locallang_backend.xlf | 0 Resources/Private/Language/locallang_db.xlf | 0 composer.json | 21 ++++++++++++++++++ ext_emconf.php | 10 ++++----- ext_icon.gif | Bin ext_localconf.php | 0 ext_tables.php | 0 14 files changed, 28 insertions(+), 7 deletions(-) mode change 100644 => 100755 Classes/Controller/GoogleSitemapController.php mode change 100644 => 100755 Configuration/TypoScript/Frontend/constants.txt mode change 100644 => 100755 Configuration/TypoScript/Frontend/setup.txt mode change 100644 => 100755 Resources/Private/Language/de.locallang.xlf mode change 100644 => 100755 Resources/Private/Language/de.locallang_backend.xlf mode change 100644 => 100755 Resources/Private/Language/de.locallang_db.xlf mode change 100644 => 100755 Resources/Private/Language/locallang.xlf mode change 100644 => 100755 Resources/Private/Language/locallang_backend.xlf mode change 100644 => 100755 Resources/Private/Language/locallang_db.xlf create mode 100644 composer.json mode change 100644 => 100755 ext_emconf.php mode change 100644 => 100755 ext_icon.gif mode change 100644 => 100755 ext_localconf.php mode change 100644 => 100755 ext_tables.php diff --git a/Classes/Controller/GoogleSitemapController.php b/Classes/Controller/GoogleSitemapController.php old mode 100644 new mode 100755 index dff0c9f..9f72363 --- a/Classes/Controller/GoogleSitemapController.php +++ b/Classes/Controller/GoogleSitemapController.php @@ -1,6 +1,6 @@ \ No newline at end of file +?> diff --git a/Configuration/TypoScript/Frontend/constants.txt b/Configuration/TypoScript/Frontend/constants.txt old mode 100644 new mode 100755 diff --git a/Configuration/TypoScript/Frontend/setup.txt b/Configuration/TypoScript/Frontend/setup.txt old mode 100644 new mode 100755 diff --git a/Resources/Private/Language/de.locallang.xlf b/Resources/Private/Language/de.locallang.xlf old mode 100644 new mode 100755 diff --git a/Resources/Private/Language/de.locallang_backend.xlf b/Resources/Private/Language/de.locallang_backend.xlf old mode 100644 new mode 100755 diff --git a/Resources/Private/Language/de.locallang_db.xlf b/Resources/Private/Language/de.locallang_db.xlf old mode 100644 new mode 100755 diff --git a/Resources/Private/Language/locallang.xlf b/Resources/Private/Language/locallang.xlf old mode 100644 new mode 100755 diff --git a/Resources/Private/Language/locallang_backend.xlf b/Resources/Private/Language/locallang_backend.xlf old mode 100644 new mode 100755 diff --git a/Resources/Private/Language/locallang_db.xlf b/Resources/Private/Language/locallang_db.xlf old mode 100644 new mode 100755 diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..82f0dbe --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "sgalinski/dd-googlesitemap-plugin", + "type": "typo3-cms-extension", + "description": "Google Sitemap Plugin - Extends the extension dd_googlesitemap by a plugin", + "homepage": "https://www.sgalinski.de", + "license": ["GPL-2.0+"], + "version": "2.0.0", + "support": { + }, + "require": { + "typo3/cms-core": "*" + }, + "replace": { + "dd-googlesitemap-plugin": "*" + }, + "autoload": { + "psr-4": { + "SGalinski\\DdGooglesitemapPlugin\\": "Classes/" + } + } +} diff --git a/ext_emconf.php b/ext_emconf.php old mode 100644 new mode 100755 index 0e213bc..e7615bd --- a/ext_emconf.php +++ b/ext_emconf.php @@ -29,12 +29,12 @@ $EM_CONF[$_EXTKEY] = array( 'modify_tables' => '', 'clearCacheOnLoad' => 0, 'lockType' => '', - 'version' => '1.0.0', + 'version' => '2.0.0', 'constraints' => array( 'depends' => array( - 'typo3' => '6.1.0-6.1.99', - 'php' => '5.4.0-5.4.99', - 'dd_googlesitemap' => '1.3.0-', + 'typo3' => '6.2.0-7.6.99', + 'php' => '5.4.0-5.6.99', + 'dd_googlesitemap' => '2.0.4-', ), 'conflicts' => array( ), @@ -46,4 +46,4 @@ $EM_CONF[$_EXTKEY] = array( '_md5_values_when_last_written' => '', ); -?> \ No newline at end of file +?> diff --git a/ext_icon.gif b/ext_icon.gif old mode 100644 new mode 100755 diff --git a/ext_localconf.php b/ext_localconf.php old mode 100644 new mode 100755 diff --git a/ext_tables.php b/ext_tables.php old mode 100644 new mode 100755 -- 2.22.0