forked from TYPO3-extensions/l10nmgr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Prepare for 8.0.0 release and final testing
Change-Id: I19988b22bad162e590b71070a2aaa120ec353ca9 Releases: master Reviewed-on: https://review.typo3.org/52868 Reviewed-by: Jo Hasenau <[email protected]> Tested-by: Jo Hasenau <[email protected]>
- Loading branch information
1 parent
66cfe15
commit 8614a0f
Showing
3 changed files
with
18 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
See https://git.typo3.org/TYPO3CMS/Extensions/l10nmgr.git/log/refs/heads/8-0 for 8.x.x specific changes | ||
|
||
2014-12-16 Daniel Zielinski <[email protected]> | ||
* [BUG] Fixed: CAT XML export of HTML content elements contains non XML compliant entities making export unusable. | ||
* [BUG] Added correct version number to CAT XML export file in meta data. | ||
|
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,21 +1,24 @@ | ||
{ | ||
"name": "localizationteam/l10nmgr", | ||
"type": "typo3-cms-extension", | ||
"description": "", | ||
"homepage": "http://typo3.org", | ||
"license": [ | ||
"GPL-2.0+" | ||
], | ||
"version" : "8.0.0", | ||
"description": "Module for managing localization import and export", | ||
"homepage": "https://docs.typo3.org/typo3cms/extensions/l10nmgr/", | ||
"license": ["GPL-2.0+"], | ||
"keywords": ["TYPO3 CMS", "L10N", "I18N", "T9N", "localization", "translation", "internationalization", "language"], | ||
"support": { | ||
"issues": "https://forge.typo3.org/projects/extension-l10nmgr/issues" | ||
}, | ||
"require": { | ||
"typo3/cms-core": ">=8.5.0,<9.0", | ||
"sjbr/static-info-tables": "~6.4.2" | ||
"typo3/cms-core": "^8.7.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Localizationteam\\L10nmgr\\": "Classes" | ||
} | ||
}, | ||
"replace": { | ||
"l10nmgr": "*" | ||
"l10nmgr": "self.version", | ||
"typo3-ter/l10nmgr": "self.version" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -10,32 +10,20 @@ | |
'title' => 'Localization Manager', | ||
'description' => 'Module for managing localization import and export', | ||
'category' => 'module', | ||
'shy' => 0, | ||
'version' => '8.0.0', | ||
'dependencies' => '', | ||
'conflicts' => '', | ||
'priority' => '', | ||
'loadOrder' => '', | ||
'module' => 'translate,export,import,cm1,cm2,cm3,mod1,mod2', | ||
'state' => 'beta', | ||
'uploadfolder' => false, | ||
'createDirs' => 'uploads/tx_l10nmgr/settings,uploads/tx_l10nmgr/saved_files,uploads/tx_l10nmgr/jobs,uploads/tx_l10nmgr/jobs/out,uploads/tx_l10nmgr/jobs/in,uploads/tx_l10nmgr/jobs/done,uploads/tx_l10nmgr/jobs/_cmd', | ||
'modify_tables' => '', | ||
'clearcacheonload' => true, | ||
'lockType' => '', | ||
'clearCacheOnLoad' => true, | ||
'author' => 'Kasper Skaarhoej, Daniel Zielinski, Daniel Poetzinger, Fabian Seltmann, Andreas Otto, Jo Hasenau, Peter Russ', | ||
'author_email' => '[email protected], [email protected], [email protected], [email protected]', | ||
'author_company' => 'Localization Manager Team', | ||
'CGLcompliance' => '', | ||
'CGLcompliance_note' => '', | ||
'constraints' => array( | ||
'depends' => array( | ||
'php' => '7.0.0-0.0.0', | ||
'typo3' => '8.5.0-8.99.99', | ||
'typo3' => '8.7.0-8.99.99', | ||
'static_info_tables' => '6.4.2-0.0.0' | ||
), | ||
'conflicts' => array(), | ||
'suggests' => array(), | ||
), | ||
'suggests' => array() | ||
'suggests' => array() | ||
) | ||
); |