Changeset 1873579
- Timestamp:
- 05/13/2018 07:28:19 PM (8 years ago)
- Location:
- lf-hiker/trunk
- Files:
-
- 9 added
- 7 deleted
- 7 edited
-
dist/helper-min.1.8.0.js (deleted)
-
dist/helper-min.1.8.1.js (added)
-
dist/helper.1.8.0.css (deleted)
-
dist/helper.1.8.1.css (added)
-
dist/lfh-front-min.1.8.0.js (deleted)
-
dist/lfh-front-min.1.8.1.js (added)
-
dist/lfh-post-editor-min.1.8.0.js (deleted)
-
dist/lfh-post-editor-min.1.8.1.js (added)
-
dist/lfh-post-editor.1.8.0.css (deleted)
-
dist/lfh-post-editor.1.8.1.css (added)
-
dist/lfh-style-min.1.8.0.css (deleted)
-
dist/lfh-style-min.1.8.1.css (added)
-
dist/tinymce-lfh-plugin-min.1.8.0.js (deleted)
-
dist/tinymce-lfh-plugin-min.1.8.1.js (added)
-
gulpfile.js (modified) (1 diff)
-
images/icons/pin-icon-wpt.png (added)
-
images/icons/pin-shadow.png (added)
-
js/leaflet-gpx.js (modified) (1 diff)
-
js/lfh-plugin.js (modified) (3 diffs)
-
lf-hiker.php (modified) (2 diffs)
-
lib/leaflet-gpx.js (modified) (2 diffs)
-
package.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lf-hiker/trunk/gulpfile.js
r1846582 r1873579 2 2 //there are in files readme others version numbers: for releases, tested browsers, and the most important wordpress 3 3 4 var old_version = '1. 7.0';5 var version = '1.8. 0';4 var old_version = '1.8.0'; 5 var version = '1.8.1'; 6 6 var gulp = require('gulp'); 7 7 var less = require('gulp-less'); -
lf-hiker/trunk/js/leaflet-gpx.js
r1652140 r1873579 36 36 * rendered on the Leaflet map. 37 37 */ 38 38 console.log( lfh.ICON_URL); 39 39 var L = L || require('leaflet'); 40 40 -
lf-hiker/trunk/js/lfh-plugin.js
r1846582 r1873579 80 80 81 81 lfh.ICON_MOVE = L.icon({ 82 iconUrl: lfh.ICON_URL +' /markers/move.png',82 iconUrl: lfh.ICON_URL +'markers/move.png', 83 83 iconSize: [15, 15], 84 84 shadowSize: [0, 0], … … 89 89 }); 90 90 lfh.POINT_ICON = L.icon({ 91 iconUrl: lfh.ICON_URL + ' /markers/pointS000063.png',91 iconUrl: lfh.ICON_URL + 'markers/pointS000063.png', 92 92 iconSize: [10, 10], 93 93 shadowSize: [0, 0], … … 97 97 }); 98 98 lfh.MINI_POINT_ICON = L.icon({ 99 iconUrl: lfh.ICON_URL + ' /markers/pointS6.png',99 iconUrl: lfh.ICON_URL + 'markers/pointS6.png', 100 100 iconSize: [6, 6], 101 101 shadowSize: [0, 0], -
lf-hiker/trunk/lf-hiker.php
r1846582 r1873579 6 6 Author: epointal 7 7 Author URI: http://elisabeth.pointal.org/ 8 Version: 1.8. 08 Version: 1.8.1 9 9 License: GPL2 10 10 Text domain: lfh … … 51 51 class Lf_Hiker_Plugin 52 52 { 53 const VERSION = '1.8. 0';53 const VERSION = '1.8.1'; 54 54 55 55 private static $_controller; -
lf-hiker/trunk/lib/leaflet-gpx.js
r1652140 r1873579 48 48 startIconUrl: 'pin-icon-start.png', 49 49 endIconUrl: 'pin-icon-end.png', 50 shadowUrl: 'pin-shadow.png',50 shadowUrl: lfh.ICON_URL + 'icons/pin-shadow.png', 51 51 wptIconUrls : { 52 '': 'pin-icon-wpt.png',53 }, 54 iconSize: [ 33, 50],55 shadowSize: [ 50, 50],56 iconAnchor: [1 6, 45],57 shadowAnchor: [1 6, 47],52 '': lfh.ICON_URL + 'icons/pin-icon-wpt.png', 53 }, 54 iconSize: [26, 41], 55 shadowSize: [41, 41], 56 iconAnchor: [13, 41], 57 shadowAnchor: [10, 41], 58 58 clickable: false 59 59 }; … … 204 204 return this._markers; 205 205 }, 206 206 207 // Private methods 207 208 _merge_objs: function(a, b) { -
lf-hiker/trunk/package.json
r1846582 r1873579 1 1 { 2 2 "name": "lf-hiker", 3 "version": "1.8. 0",3 "version": "1.8.1", 4 4 "description": "plugin for wordpress for display track with profil elevation", 5 5 "main": "index.js", -
lf-hiker/trunk/readme.txt
r1846582 r1873579 7 7 Tested up to: 4.9 8 8 Stable tag: 1.0 9 Version: 1.8. 09 Version: 1.8.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 135 135 136 136 == Changelog == 137 = 1.8.1 = 138 * Fixed: no icon for way point 139 137 140 = 1.8.0 = 138 141 * Evolution: Add black in color path
Note: See TracChangeset
for help on using the changeset viewer.