Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
ChangeLog
=========

2022-01-14 : Upload of version 4.1.3

- Added Compatibility for TYPO3 V11 LTS.

2020-12-29 : Upload of version 4.1.2

- Added Compatibility for TYPO3 V10 LTS.
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ project = rt_simpleosm
# ... Set during rendering based on rendered version
# .................................................................................

release = 4.1.2
release = 4.1.3

# .................................................................................
# ... (recommended) displayed in footer
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ conf.py:
copyright: 2021
project: Simple OpenStreetMap
version: 4.1
release: 4.1.2
release: 4.1.3
intersphinx_mapping:
t3tsref:
- http://docs.typo3.org/typo3cms/TyposcriptReference/
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"license": ["GPL-2.0-or-later"],
"require": {
"typo3/cms-core": "~8.7.32 || ~9.5.24 || ~10.4.12"
"typo3/cms-core": "~8.7.32 || ~9.5.24 || ~10.4.12 || ~v11.5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -33,4 +33,4 @@
"extension-key": "rt_simpleosm"
}
}
}
}
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '4.1.2',
'version' => '4.1.3',
'constraints' => [
'depends' => [ 'typo3' => '8.7.32-10.4.99' ],
'depends' => [ 'typo3' => '8.7.32-11.5.99' ],
'conflicts' => [],
'suggests' => [
'tt_address' => '4.0.0-5.99.99',
Expand Down
10 changes: 7 additions & 3 deletions ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@
call_user_func(
function() {

// configure plugin
$typo3Version = TYPO3\CMS\Core\Utility\VersionNumberUtility::convertVersionStringToArray(TYPO3\CMS\Core\Utility\VersionNumberUtility::getNumericTypo3Version());
$controllerName = $typo3Version['version_main'] >= 10 ? \SYRADEV\RtSimpleosm\Controller\OsmController::class : 'Osm';
$extensionName = $typo3Version['version_main'] >= 10 ? 'RtSimpleosm' : 'SYRADEV.RtSimpleosm';
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'SYRADEV.RtSimpleosm',
$extensionName,
'Sosm',
[
'Osm' => 'displayMap'
$controllerName => 'displayMap'
],
// non-cacheable actions
[
'Osm' => ''
$controllerName => ''
]
);

Expand Down