Skip to content

Commit

Permalink
[RELEASE] Release of version 0.6.1
Browse files Browse the repository at this point in the history
Merge pull request #24 from jonathanheilmann/develop_v0.6.1
  • Loading branch information
jonathanheilmann committed May 10, 2016
2 parents 0cb008f + 5b77a19 commit 471e6d7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
8 changes: 2 additions & 6 deletions Classes/Core/EidRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
***************************************************************/

use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Core\Bootstrap;
use TYPO3\CMS\Extbase\Service\TypoScriptService;
use TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController;
use TYPO3\CMS\Frontend\Utility\EidUtility;

Expand Down Expand Up @@ -129,15 +127,15 @@ public function run()
}

/**
* EidRequest constructor.
* Initialize frontend environment
*
* @return void
*/
public function __construct()
{
$this->bootstrap = GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\Core\\Bootstrap');

$feUserObj = EidUtility::initFeUser();
EidUtility::initTCA();

$pageId = GeneralUtility::_GET('id') ?: 1;
$pageType = GeneralUtility::_GET('type') ?: 0;
Expand All @@ -156,10 +154,8 @@ public function __construct()
$this->typoScriptFrontendController->id = $pageId;
$this->typoScriptFrontendController->determineId();
$this->typoScriptFrontendController->checkAlternativeIdMethods();
$this->typoScriptFrontendController->getCompressedTCarray();
$this->typoScriptFrontendController->initTemplate();
$this->typoScriptFrontendController->getConfigArray();
$this->typoScriptFrontendController->includeTCA();
$this->typoScriptFrontendController->settingLanguage();
$this->typoScriptFrontendController->settingLocale();
}
Expand Down
6 changes: 6 additions & 0 deletions Documentation/Changelog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ ChangeLog
:Changes:
Changes

- :Version:
0.6.1

:Changes:
\* [BUGFIX] TYPO3 CMS 7 LTS: eID fails

- :Version:
0.6.0

Expand Down
4 changes: 2 additions & 2 deletions Documentation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ EXT: Magnific Popup
2010-02-18 17:03

:Changed:
2016-05-04 19:57
2016-05-10 10:14

:Classification:
jh_magnificpopup
Expand All @@ -44,7 +44,7 @@ Extension Key: jh\_magnificpopup

Language: en

Version: 0.6.0
Version: 0.6.1

Keywords: magnific popup, lightbox, responsive

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jonathanheilmann/jh_magnificpopup",
"type": "typo3-cms-extension",
"description": "This extension provides the responsive jQuery lightbox plugin Magnific Popup for images in content elements. Opening content like videos, other websites or inline/referenced content is supported within a plugin.",
"version": "0.6.0",
"version": "0.6.1",
"require": {
"typo3/cms-core": ">=6.2.0,<7.6.99"
},
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
'title' => 'Magnific Popup',
'description' => 'This extension provides the responsive jQuery lightbox plugin Magnific Popup for images in content elements. Opening content like videos, other websites or inline/referenced content is supported within a plugin.',
'category' => 'plugin',
'version' => '0.6.0',
'version' => '0.6.1',
'state' => 'stable',
'uploadfolder' => true,
'createDirs' => '',
Expand Down

0 comments on commit 471e6d7

Please sign in to comment.