This repository has been archived by the owner on Jun 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release refactored a lot of code to bring compatibility with TYPO3 7. It also brings continuous integration on Travis CI for TYPO3 6.2 and 7.0. BREAKING CHANGES ================ * Database structure changed and should be updated via Install Tool * Existing data in DB **must** be updated via the extension update script available from Extension Manager * Classes are now entirely namespaced, if you extended some code you will have to adapt it
- Loading branch information
Showing
2 changed files
with
40 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,46 @@ | ||
<?php | ||
|
||
/********************************************************************* | ||
* Extension configuration file for ext "newsletter". | ||
* | ||
* Generated by ext 03-02-2015 08:58 UTC | ||
* | ||
* https://github.com/t3elmar/Ext | ||
*********************************************************************/ | ||
/* * ******************************************************************* | ||
* Extension configuration file for ext "newsletter". | ||
* | ||
* Generated by ext 03-02-2015 08:58 UTC | ||
* | ||
* https://github.com/t3elmar/Ext | ||
* ******************************************************************* */ | ||
|
||
$EM_CONF[$_EXTKEY] = array( | ||
'title' => 'Newsletter', | ||
'description' => 'Send any pages as Newsletter and provide statistics on opened emails and clicked links.', | ||
'category' => 'module', | ||
'shy' => 0, | ||
'version' => '2.2.3', | ||
'dependencies' => '', | ||
'conflicts' => '', | ||
'priority' => '', | ||
'loadOrder' => '', | ||
'module' => 'cli,web', | ||
'state' => 'stable', | ||
'uploadfolder' => 1, | ||
'createDirs' => '', | ||
'modify_tables' => '', | ||
'clearcacheonload' => 0, | ||
'lockType' => '', | ||
'author' => 'Ecodev', | ||
'author_email' => '[email protected]', | ||
'author_company' => 'Ecodev', | ||
'CGLcompliance' => null, | ||
'CGLcompliance_note' => null, | ||
'constraints' => array( | ||
'depends' => array( | ||
'cms' => '', | ||
'extbase' => '', | ||
'fluid' => '', | ||
'php' => '5.3.7-0.0.0', | ||
'typo3' => '6.1.0-6.2.99', | ||
'scheduler' => '1.1.0', | ||
), | ||
'title' => 'Newsletter', | ||
'description' => 'Send any pages as Newsletter and provide statistics on opened emails and clicked links.', | ||
'category' => 'module', | ||
'shy' => 0, | ||
'version' => '2.3.0', | ||
'dependencies' => '', | ||
'conflicts' => '', | ||
'suggests' => array( | ||
'priority' => '', | ||
'loadOrder' => '', | ||
'module' => 'cli,web', | ||
'state' => 'stable', | ||
'uploadfolder' => 1, | ||
'createDirs' => '', | ||
'modify_tables' => '', | ||
'clearcacheonload' => 0, | ||
'lockType' => '', | ||
'author' => 'Ecodev', | ||
'author_email' => '[email protected]', | ||
'author_company' => 'Ecodev', | ||
'CGLcompliance' => null, | ||
'CGLcompliance_note' => null, | ||
'constraints' => array( | ||
'depends' => array( | ||
'cms' => '', | ||
'extbase' => '', | ||
'fluid' => '', | ||
'php' => '5.3.7-0.0.0', | ||
'typo3' => '6.1.0-7.0.99', | ||
'scheduler' => '1.1.0', | ||
), | ||
'conflicts' => '', | ||
'suggests' => array( | ||
), | ||
), | ||
), | ||
'user' => 'acrivelli', | ||
'comment' => 'Minor fix to ensure that test button is always visible. See https://forge.typo3.org/news/758 for important announcement.', | ||
); |