Skip to content
Merged
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
5 changes: 5 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
ChangeLog
=========

Version 13.0.2
==============

* BUGFIX: Load assets for embedded map in EditPoiCollection partial

Version 13.0.1
==============

Expand Down
2 changes: 1 addition & 1 deletion Documentation/guides.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
project-issues="https://github.com/jweiland-net/maps2/issues"
edit-on-github-branch="main"
edit-on-github="jweiland/maps2" typo3-core-preferred="stable"/>
<project title="maps2 (Maps2)" release="13.0.1" version="13.0" copyright="since 2013 by jweiland.net"/>
<project title="maps2 (Maps2)" release="13.0.2" version="13.0" copyright="since 2013 by jweiland.net"/>
</guides>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<f:comment>
<!-- Use this section to show a map in the templates of your own extension. This is a replacement for old PoiCollection widget --></f:comment>
<f:section name="editMap">
<f:render partial="LoadAssets"/>

<maps2:getEnvironment>
<f:variable name="ttContentUid">{environment.contentRecord.uid}</f:variable>
<maps2:form.hidden class="title-{ttContentUid}" property="{property}.title" value="{title}"/>
Expand All @@ -14,7 +16,8 @@
<maps2:form.hidden class="longitude-{ttContentUid}" property="{property}.longitude"
value="{poiCollection.longitude}"/>

<div class="maps2 maps2-{data.uid} editMarker"
<div id="maps2-{environment.contentRecord.uid}"
class="maps2 editMarker"
data-override="{override -> maps2:convertToJson()}"
data-environment="{environment -> maps2:convertToJson()}"
data-pois="{poiCollection -> maps2:convertToJson()}"></div>
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"providesPackages": {}
},
"extension-key": "maps2",
"version": "13.0.1",
"version": "13.0.2",
"web-dir": ".Build/public"
}
}
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
$EM_CONF[$_EXTKEY] = [
'title' => 'Maps2',
'description' => 'Create maps with Marker, Area, Routes or Radius based on Google Maps or OpenStreetMap',
'version' => '13.0.1',
'version' => '13.0.2',
'category' => 'plugin',
'state' => 'stable',
'author' => 'Stefan Froemken',
Expand Down
Loading