Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
Release version 2.3.0
Browse files Browse the repository at this point in the history
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
PowerKiKi committed Feb 20, 2015
1 parent bfacc7b commit a1491e9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 42 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ecodev/newsletter",
"version": "2.2.3",
"version": "2.3.0",
"type": "typo3-cms-extension",
"description": "Send any pages as Newsletter and provide statistics on opened emails and clicked links.",
"homepage": "https://github.com/ecodev/newsletter",
Expand Down
80 changes: 39 additions & 41 deletions ext_emconf.php
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' => 'contact@ecodev.ch',
'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' => 'contact@ecodev.ch',
'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.',
);

0 comments on commit a1491e9

Please sign in to comment.