Changeset 1846582
- Timestamp:
- 03/25/2018 06:07:04 PM (8 years ago)
- Location:
- lf-hiker/trunk
- Files:
-
- 8 added
- 7 deleted
- 6 edited
-
Model/Map.php (modified) (2 diffs)
-
dist/helper-min.1.7.0.js (deleted)
-
dist/helper-min.1.8.0.js (added)
-
dist/helper.1.7.0.css (deleted)
-
dist/helper.1.8.0.css (added)
-
dist/lfh-front-min.1.7.0.js (deleted)
-
dist/lfh-front-min.1.8.0.js (added)
-
dist/lfh-post-editor-min.1.7.0.js (deleted)
-
dist/lfh-post-editor-min.1.8.0.js (added)
-
dist/lfh-post-editor.1.7.0.css (deleted)
-
dist/lfh-post-editor.1.8.0.css (added)
-
dist/lfh-style-min.1.7.0.css (deleted)
-
dist/lfh-style-min.1.8.0.css (added)
-
dist/tinymce-lfh-plugin-min.1.7.0.js (deleted)
-
dist/tinymce-lfh-plugin-min.1.8.0.js (added)
-
gulpfile.js (modified) (1 diff)
-
images/markers/pointS6.png (added)
-
js/lfh-plugin.js (modified) (2 diffs)
-
lf-hiker.php (modified) (2 diffs)
-
package.json (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lf-hiker/trunk/Model/Map.php
r1839607 r1846582 17 17 'home', 'wheelchair', 'school', 'child', 'female', 'male', 'bank', 'industry'); 18 18 19 public static $colors_path = array('red', 'blue', 'purple', 'orange', 'darkred', 'darkblue', 'darkgreen' );19 public static $colors_path = array('red', 'blue', 'purple', 'orange', 'darkred', 'darkblue', 'darkgreen', 'black'); 20 20 21 21 public static $distance_units = array( 'km', 'miles'); … … 344 344 public static function is_path_color($var) 345 345 { 346 if(in_array(strtolower($var), self::$colors_path)){ 346 if(in_array(strtolower($var), self::$colors_path) 347 || preg_match('/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/', $var)){ 347 348 return strtolower($var); 348 349 }else{ -
lf-hiker/trunk/gulpfile.js
r1839607 r1846582 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. 6.0';5 var version = '1. 7.0';4 var old_version = '1.7.0'; 5 var version = '1.8.0'; 6 6 var gulp = require('gulp'); 7 7 var less = require('gulp-less'); -
lf-hiker/trunk/js/lfh-plugin.js
r1833277 r1846582 96 96 popupAnchor: [5, 5] 97 97 }); 98 98 lfh.MINI_POINT_ICON = L.icon({ 99 iconUrl: lfh.ICON_URL + '/markers/pointS6.png', 100 iconSize: [6, 6], 101 shadowSize: [0, 0], 102 iconAnchor: [3, 3], 103 shadowAnchor: [3, 3], 104 popupAnchor: [3, 3] 105 }); 99 106 lfh.WIDTH_LIMIT = 620; 100 107 … … 830 837 elem_id: track_id, 831 838 marker_options: { 832 startIcon: lfh.POINT_ICON,833 endIcon: lfh.POINT_ICON,839 startIcon: _data.gpx[j].width> 2 ? lfh.POINT_ICON:lfh.MINI_POINT_ICON, 840 endIcon: _data.gpx[j].width> 2 ? lfh.POINT_ICON:lfh.MINI_POINT_ICON, 834 841 //shadowUrl: 'images/pin-shadow.png' 835 842 } -
lf-hiker/trunk/lf-hiker.php
r1839607 r1846582 6 6 Author: epointal 7 7 Author URI: http://elisabeth.pointal.org/ 8 Version: 1. 7.08 Version: 1.8.0 9 9 License: GPL2 10 10 Text domain: lfh … … 51 51 class Lf_Hiker_Plugin 52 52 { 53 const VERSION = '1. 7.0';53 const VERSION = '1.8.0'; 54 54 55 55 private static $_controller; -
lf-hiker/trunk/package.json
r1839607 r1846582 1 1 { 2 2 "name": "lf-hiker", 3 "version": "1. 7.0",3 "version": "1.8.0", 4 4 "description": "plugin for wordpress for display track with profil elevation", 5 5 "main": "index.js", -
lf-hiker/trunk/readme.txt
r1840945 r1846582 7 7 Tested up to: 4.9 8 8 Stable tag: 1.0 9 Version: 1. 7.09 Version: 1.8.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 97 97 * Français (fr_FR) 98 98 * English (en_US) 99 * Deutsch (de_DE) by [Kristof Kling](https://lg-buggingen.de/bugginger-feierabendlauf/strecke/)99 * Deutsch (de_DE) by [Kristof Kling](https://lg-buggingen.de/bugginger-feierabendlauf/strecke/) 100 100 101 101 If you need language of **Lf Hiker** which is not included. You can easily translate with poedit from the file : … … 135 135 136 136 == Changelog == 137 = 1.8.0 = 138 * Evolution: Add black in color path 139 * Evolution: Enable all hexadecimal color for path 140 * Evolution: Little dots at ends for path with width less than 3px 141 * Fixed: german translation 142 137 143 = 1.7.0 = 138 144 * Fixed: no path displayed with mesmerize theme
Note: See TracChangeset
for help on using the changeset viewer.