Skip to content

Commit

Permalink
#9 update leaflet
Browse files Browse the repository at this point in the history
  • Loading branch information
akuechl committed Apr 30, 2019
1 parent 9b8273a commit 797eec2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Osm_akuechler.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* @package Joomla
* @copyright Copyright (C) 2011-2018 Ariel Küchler. All rights reserved.
* @copyright Copyright (C) 2011-2019 Ariel Küchler. All rights reserved.
* @license MIT License (http://opensource.org/licenses/mit-license copyright information see above) OR GPL-3.0 (http://opensource.org/licenses/gpl-3.0)
*/
defined ( '_JEXEC' ) or die ( 'Restricted access' );
Expand Down
7 changes: 6 additions & 1 deletion Osm_akuechler.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5" type="plugin" group="content" method="upgrade">
<name>OSM Plugin</name>
<creationDate>August 22nd, 2018</creationDate>
<creationDate>April 30th, 2019</creationDate>
<author>Ariel Küchler</author>
<authorUrl>https://github.com/admiralsmaster</authorUrl>
<copyright>Ariel Küchler</copyright>
Expand All @@ -14,6 +14,11 @@
<p>see <a href="https://github.com/admiralsmaster/osm_akuechler">https://github.com/admiralsmaster/osm_akuechler</a></p>
<h2>Versions</h2>
<ol>
<li>2.9.0
<ul>
<li><a href="https://github.com/admiralsmaster/osm_akuechler/issues/9">#9</a> leafletjs upgrade to <a href="https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md#140-2018-12-30">1.4.0</a></li>
</ul>
</li>
<li>2.8.0
<ul>
<li><a href="https://github.com/admiralsmaster/osm_akuechler/issues/7">#7</a> leafletjs upgrade to <a href="https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md#134-2018-08-21">1.3.4</a></li>
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ height | The height of DIV is the height of the card. Set the height via CSS,
Version
--------------

* **Version 2.9.0**: (April 30nd, 2019) update leafletjs to 1.4.0 #9
* **Version 2.8.0**: (August 22nd, 2018) update leafletjs to 1.3.4 #7
* **Version 2.7.0**: (April 10th, 2018) update leafletjs to 1.3.0 #6
* **Version 2.6.0**: (October 9th, 2017) update leafletjs to 1.2.0 #3, add update server, fixes #1 #2
Expand Down
10 changes: 5 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<project name="" default="all" basedir=".">

<property name="version" value="2.8.0" />
<property name="leaflet-version" value="1.3.4" />
<property name="version" value="2.9.0" />
<property name="leaflet-version" value="1.4.0" />
<property name="yui-version" value="2.4.8" />

<property name="pluginname" value="Osm_akuechler" />
Expand All @@ -16,7 +16,7 @@

<available file="${dwn-folder}/yuicompressor-${yui-version}.jar" property="exists.yui" />
<available file="${dwn-folder}/leaflet-${leaflet-version}.jar" property="exists.leaflet" />
<available file="${dwn-folder}/leaflet-license" property="exists.leaflet-license" />
<available file="${dwn-folder}/leaflet-license-${leaflet-version}" property="exists.leaflet-license" />

<property name="proxy.port" value="8080"/>
<property name="proxy.host" value="proxy"/>
Expand Down Expand Up @@ -45,7 +45,7 @@
</target>

<target name="dwnleafletlicense" unless="exists.leaflet-license">
<get src="${leaflet-license}" dest="${dwn-folder}/leaflet-license" />
<get src="${leaflet-license}" dest="${dwn-folder}/leaflet-license-${leaflet-version}" />
</target>

<target name="pack" depends="prepare,build">
Expand Down Expand Up @@ -76,7 +76,7 @@
</copy>
<copy todir="${build-folder}/licenses">
<fileset dir="${dwn-folder}">
<include name="leaflet-license"/>
<include name="leaflet-license-${leaflet-version}"/>
</fileset>
</copy>
<replace file="${build-folder}/${pluginname}.xml" token="@version@" value="${version}" />
Expand Down
2 changes: 1 addition & 1 deletion licenses/MIT-License
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2018 Ariel Küchler
Copyright (c) 2012-2019 Ariel Küchler

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
Expand Down

0 comments on commit 797eec2

Please sign in to comment.