Speed improvement
This commit is contained in:
parent
9f993afafd
commit
c3d9848749
|
@ -5,7 +5,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
||||||
Tags: maps, gpx, gps, graph, chart, google maps, track, garmin, image, nextgen-gallery, nextgen, exif, OpenStreetMap, OpenCycleMap, Hike&Bike, heart rate, heartrate, cadence
|
Tags: maps, gpx, gps, graph, chart, google maps, track, garmin, image, nextgen-gallery, nextgen, exif, OpenStreetMap, OpenCycleMap, Hike&Bike, heart rate, heartrate, cadence
|
||||||
Requires at least: 2.0.0
|
Requires at least: 2.0.0
|
||||||
Tested up to: 3.8
|
Tested up to: 3.8
|
||||||
Stable tag: 1.2.5
|
Stable tag: 1.2.6
|
||||||
|
|
||||||
Draws a gpx track with altitude graph. You can also display your nextgen gallery images in the map.
|
Draws a gpx track with altitude graph. You can also display your nextgen gallery images in the map.
|
||||||
|
|
||||||
|
@ -180,6 +180,8 @@ Yes!
|
||||||
1. Altitude & Speed & Hearth rate
|
1. Altitude & Speed & Hearth rate
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
= 1.2.6 =
|
||||||
|
* Speed improvement
|
||||||
= 1.2.5 =
|
= 1.2.5 =
|
||||||
* Added Catalan translation, thanks to Edgar
|
* Added Catalan translation, thanks to Edgar
|
||||||
* Updated Spanish translation, thanks to Dani
|
* Updated Spanish translation, thanks to Dani
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Plugin Name: WP-GPX-Maps
|
Plugin Name: WP-GPX-Maps
|
||||||
Plugin URI: http://www.devfarm.it/
|
Plugin URI: http://www.devfarm.it/
|
||||||
Description: Draws a gpx track with altitude graph
|
Description: Draws a gpx track with altitude graph
|
||||||
Version: 1.2.5
|
Version: 1.2.6
|
||||||
Author: Bastianon Massimo
|
Author: Bastianon Massimo
|
||||||
Author URI: http://www.pedemontanadelgrappa.it/
|
Author URI: http://www.pedemontanadelgrappa.it/
|
||||||
*/
|
*/
|
||||||
|
@ -169,8 +169,6 @@ function handle_WP_GPX_Maps_Shortcodes($attr, $content='')
|
||||||
|
|
||||||
$gpxcache.= DIRECTORY_SEPARATOR.$cacheFileName.".tmp";
|
$gpxcache.= DIRECTORY_SEPARATOR.$cacheFileName.".tmp";
|
||||||
|
|
||||||
$skipcache=true;
|
|
||||||
|
|
||||||
// Try to load cache
|
// Try to load cache
|
||||||
if (file_exists($gpxcache) && !($skipcache == true)) {
|
if (file_exists($gpxcache) && !($skipcache == true)) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue