diff --git a/Documentation/ChangeLog/Index.rst b/Documentation/ChangeLog/Index.rst index 4709e63..fe4fd51 100644 --- a/Documentation/ChangeLog/Index.rst +++ b/Documentation/ChangeLog/Index.rst @@ -1,10 +1,15 @@ ChangeLog --------- +3.3.0 May 18, 2015 + - Remove removeDoubleEntriesCommand, because the CF do not allow double entries - Introduce the Caching Framework - Prepare configuration handling - Code cleanups +- Fix Caching bug +- Fix generation of the text base +- cleanups 3.2.0 May 03, 2015 diff --git a/Documentation/Settings.yml b/Documentation/Settings.yml index c5f73eb..8e9ec87 100644 --- a/Documentation/Settings.yml +++ b/Documentation/Settings.yml @@ -6,8 +6,8 @@ conf.py: copyright: 2015 project: 'Image RealURL' - version: 3.2 - release: 3.2.0 + version: 3.3 + release: 3.3.0 highlight_language: php latex_documents: - - Index diff --git a/ext_emconf.php b/ext_emconf.php index d81ae11..e05a129 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'title' => 'Image RealURL', 'description' => 'Add the RealURL functionality to image files. "typo3temp/2d972d5c89b5.jpg" goes "nice-name.jpg"! Many different fallbacks like file reference, file, content element or page settings to get the right file name.', 'category' => 'fe', - 'version' => '3.2.0', + 'version' => '3.3.0', 'state' => 'stable', 'author' => 'Tim Lochmueller, Sareen Millet, Dr. Ronald P. Steiner', 'author_email' => 'webmaster@fruit-lab.de', diff --git a/ext_localconf.php b/ext_localconf.php index 8ac0783..96b3402 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -13,7 +13,6 @@ 'className' => 'FRUIT\\FlRealurlImage\\Xclass\\ImageResource', ); -// new Cache for Images paths $GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['fl_realurl_image'] = array( 'frontend' => 'FRUIT\\FlRealurlImage\\Cache\\UriFrontend', ); \ No newline at end of file