This commit is contained in:
bastianonm 2012-05-11 18:47:32 +00:00
parent f33362dae4
commit fdf99d89c7
2 changed files with 7 additions and 5 deletions

View File

@ -4,10 +4,10 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tags: maps, gpx, gps, graph, chart, google maps, highcharts, track, garmin, image, nextgen-gallery, nextgen, exif, OpenStreetMap, OpenCycleMap, Hike&Bike, heart rate, heartrate, cadence
Requires at least: 2.0.0
Tested up to: 3.3
Stable tag: 1.1.18
Stable tag: 1.1.19
License: GPLv2 or later
Draws a gpx track with altitude graph
Draws a gpx track with altitude graph. You can also display your nextgen gallery images in the map.
== Description ==
@ -123,6 +123,8 @@ Yes!
2. Altitude & Speed & Hearth rate
== Changelog ==
= 1.1.19 =
* include jQuery if needed
= 1.1.17 =
* Remove zero values from cadence and heart rate charts
* nextgen gallery improvement

View File

@ -3,7 +3,7 @@
Plugin Name: WP-GPX-Maps
Plugin URI: http://www.darwinner.it/
Description: Draws a gpx track with altitude graph
Version: 1.1.18
Version: 1.1.19
Author: Bastianon Massimo
Author URI: http://www.pedemontanadelgrappa.it/
License: GPL
@ -42,10 +42,10 @@ function WP_GPX_Maps_action_links($links, $file) {
function enqueue_WP_GPX_Maps_scripts()
{
wp_deregister_script( 'WP-GPX-Maps' );
wp_register_script( 'WP-GPX-Maps', plugins_url('/WP-GPX-Maps.js', __FILE__), null, "1.1.15");
wp_register_script( 'WP-GPX-Maps', plugins_url('/WP-GPX-Maps.js', __FILE__), array('jquery'), "1.1.15");
wp_enqueue_script( 'WP-GPX-Maps' );
wp_deregister_script( 'highcharts' );
wp_register_script( 'highcharts', plugins_url('/highcharts.js', __FILE__), null, "2.2.1", true);
wp_register_script( 'highcharts', plugins_url('/highcharts.js', __FILE__), array('jquery'), "2.2.1", true);
wp_enqueue_script( 'highcharts' );
}