Plugin Directory

Changeset 1873579


Ignore:
Timestamp:
05/13/2018 07:28:19 PM (8 years ago)
Author:
epointal
Message:

fixed missing icon way point

Location:
lf-hiker/trunk
Files:
9 added
7 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • lf-hiker/trunk/gulpfile.js

    r1846582 r1873579  
    22//there are in files readme others version numbers: for releases, tested browsers, and the most important wordpress
    33
    4 var old_version = '1.7.0';
    5 var version = '1.8.0';
     4var old_version = '1.8.0';
     5var version = '1.8.1';
    66var gulp = require('gulp');
    77var less = require('gulp-less');
  • lf-hiker/trunk/js/leaflet-gpx.js

    r1652140 r1873579  
    3636 * rendered on the Leaflet map.
    3737 */
    38 
     38console.log( lfh.ICON_URL);
    3939var L = L || require('leaflet');
    4040
  • lf-hiker/trunk/js/lfh-plugin.js

    r1846582 r1873579  
    8080
    8181lfh.ICON_MOVE = L.icon({
    82         iconUrl: lfh.ICON_URL +'/markers/move.png',
     82        iconUrl: lfh.ICON_URL +'markers/move.png',
    8383        iconSize:     [15, 15],
    8484        shadowSize:   [0, 0],
     
    8989    });
    9090lfh.POINT_ICON = L.icon({
    91         iconUrl: lfh.ICON_URL + '/markers/pointS000063.png',
     91        iconUrl: lfh.ICON_URL + 'markers/pointS000063.png',
    9292        iconSize:     [10, 10],
    9393        shadowSize:   [0, 0],
     
    9797    });
    9898lfh.MINI_POINT_ICON = L.icon({
    99     iconUrl: lfh.ICON_URL + '/markers/pointS6.png',
     99    iconUrl: lfh.ICON_URL + 'markers/pointS6.png',
    100100    iconSize:     [6, 6],
    101101    shadowSize:   [0, 0],
  • lf-hiker/trunk/lf-hiker.php

    r1846582 r1873579  
    66    Author: epointal
    77    Author URI: http://elisabeth.pointal.org/
    8     Version: 1.8.0
     8    Version: 1.8.1
    99    License: GPL2
    1010    Text domain: lfh
     
    5151class Lf_Hiker_Plugin
    5252{
    53     const VERSION = '1.8.0';
     53    const VERSION = '1.8.1';
    5454   
    5555    private static $_controller;
  • lf-hiker/trunk/lib/leaflet-gpx.js

    r1652140 r1873579  
    4848  startIconUrl: 'pin-icon-start.png',
    4949  endIconUrl: 'pin-icon-end.png',
    50   shadowUrl: 'pin-shadow.png',
     50  shadowUrl: lfh.ICON_URL + 'icons/pin-shadow.png',
    5151  wptIconUrls : {
    52     '': 'pin-icon-wpt.png',
    53   },
    54   iconSize: [33, 50],
    55   shadowSize: [50, 50],
    56   iconAnchor: [16, 45],
    57   shadowAnchor: [16, 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],
    5858  clickable: false
    5959};
     
    204204     return this._markers;
    205205 },
     206
    206207  // Private methods
    207208  _merge_objs: function(a, b) {
  • lf-hiker/trunk/package.json

    r1846582 r1873579  
    11{
    22  "name": "lf-hiker",
    3   "version": "1.8.0",
     3  "version": "1.8.1",
    44  "description": "plugin for wordpress for display track with profil elevation",
    55  "main": "index.js",
  • lf-hiker/trunk/readme.txt

    r1846582 r1873579  
    77Tested up to: 4.9 
    88Stable tag: 1.0 
    9 Version: 1.8.0
     9Version: 1.8.1
    1010License: GPLv2 or later 
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html 
     
    135135
    136136== Changelog ==
     137= 1.8.1 =
     138 * Fixed: no icon for way point
     139 
    137140= 1.8.0 =
    138141 * Evolution: Add black in color path
Note: See TracChangeset for help on using the changeset viewer.