Changeset 1031076
- Timestamp:
- 11/23/2014 07:53:55 AM (11 years ago)
- Location:
- gps-tracker/trunk
- Files:
-
- 7 edited
-
gpstracker.php (modified) (2 diffs)
-
includes/class-gpstracker-template-loader.php (modified) (2 diffs)
-
public/assets/css/light.css (modified) (5 diffs)
-
public/assets/js/gpstracker-map.js (modified) (3 diffs)
-
public/class-gpstracker.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
templates/shortcode-gpstracker-map.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gps-tracker/trunk/gpstracker.php
r1028509 r1031076 13 13 * Plugin URI: https://www.websmithing.com/gps-tracker 14 14 * Description: Track your Android cell phone in real time and store routes for later viewing. 15 * Version: 1.0. 115 * Version: 1.0.2 16 16 * Author: Nick Fox 17 17 * Author URI: https://www.websmithing.com/hire-me … … 28 28 // Plugin version 29 29 if ( ! defined( 'GPSTRACKER_VERSION' ) ) { 30 define( 'GPSTRACKER_VERSION', '1.0. 1' );30 define( 'GPSTRACKER_VERSION', '1.0.2' ); 31 31 } 32 32 -
gps-tracker/trunk/includes/class-gpstracker-template-loader.php
r1026546 r1031076 1 1 <?php 2 2 /** 3 * Handles loading locating and loading template files, extends G amajo_Template_Loader class3 * Handles loading locating and loading template files, extends GpsTracker_Gamajo_Template_Loader class 4 4 * 5 5 * @package Gps_Tracker … … 19 19 * @since 1.0.0 20 20 */ 21 class GpsTracker_Template_Loader extends G amajo_Template_Loader {21 class GpsTracker_Template_Loader extends GpsTracker_Gamajo_Template_Loader { 22 22 23 23 /** -
gps-tracker/trunk/public/assets/css/light.css
r1028795 r1031076 1 1 2 .container {2 .container-fluid { 3 3 background-color: #66ff99; 4 4 border: 1px solid #000; … … 72 72 margin-top:5px; 73 73 width: 100%; 74 height: 37px; 74 75 color: #000; 75 76 border: 1px solid #000; … … 81 82 margin-top:5px; 82 83 width: 100%; 84 height: 37px; 83 85 color: #000; 84 86 border: 1px solid #000; … … 89 91 margin-top:5px; 90 92 width: 100%; 93 height: 37px; 91 94 color: #000; 92 95 border: 1px solid #000; … … 97 100 margin-top:5px; 98 101 width: 100%; 102 height: 37px; 99 103 color: #000; 100 104 border: 1px solid #000; -
gps-tracker/trunk/public/assets/js/gpstracker-map.js
r1028509 r1031076 2 2 var pluginUrl = map_js_vars.plugin_url; 3 3 var selectRoute = document.getElementById('selectRoute'); 4 var map = document.getElementById('map-canvas'); 5 //var gpstrackerMap; 4 var map = document.getElementById('map-canvas'); 6 5 var intervalID = 0; 7 6 var zoom = 12; … … 399 398 function turnOffAutoRefresh() { 400 399 showMessage('Auto Refresh Off'); 401 $('#autorefresh').val('Auto Refresh -Off');400 $('#autorefresh').val('Auto Refresh Off'); 402 401 403 402 autoRefresh = false; … … 407 406 function turnOnAutoRefresh() { 408 407 showMessage('Auto Refresh On (1 min)'); 409 $('#autorefresh').val('Auto Refresh -On');408 $('#autorefresh').val('Auto Refresh On'); 410 409 autoRefresh = true; 411 410 -
gps-tracker/trunk/public/class-gpstracker.php
r1026546 r1031076 29 29 * @var string 30 30 */ 31 const VERSION = '1.0. 0';31 const VERSION = '1.0.2'; 32 32 33 33 /** … … 149 149 */ 150 150 private function includes() { 151 require_once GPSTRACKER_PLUGIN_DIR . 'includes/class-g amajo-template-loader.php';151 require_once GPSTRACKER_PLUGIN_DIR . 'includes/class-gpstracker-gamajo-template-loader.php'; 152 152 require_once GPSTRACKER_PLUGIN_DIR . 'includes/class-gpstracker-template-loader.php'; 153 153 require_once GPSTRACKER_PLUGIN_DIR . 'public/includes/class-gpstracker-ajax.php'; … … 198 198 199 199 wp_enqueue_style( $this->plugin_slug . '-leaflet-styles', plugins_url( 'assets/js/leaflet-0.7.3/leaflet.css', __FILE__ ), array(), self::VERSION ); 200 wp_enqueue_style('gpstracker-bootstrap', '//maxcdn.bootstrapcdn.com/bootswatch/3. 2.0/superhero/bootstrap.min.css', false, '3.2.0', 'all');200 wp_enqueue_style('gpstracker-bootstrap', '//maxcdn.bootstrapcdn.com/bootswatch/3.3.0/superhero/bootstrap.min.css', false, '3.3.0', 'all'); 201 201 wp_enqueue_style( $this->plugin_slug . '-light-styles', plugins_url( 'assets/css/light.css', __FILE__ ), array(), self::VERSION ); 202 202 } -
gps-tracker/trunk/readme.txt
r1028509 r1031076 7 7 Requires at least: 4.0 8 8 Tested up to: 4.0 9 Stable tag: 1.0. 19 Stable tag: 1.0.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 == Changelog == 68 68 69 = 1.0.2, November 22, 2014 = 70 71 * renamed Gamajo_Template_Loader to GpsTracker_Gamajo_Template_Loader to avoid namespace clashes with other plugins 72 * changed from bootstrap container to container-fluid 73 * added height to buttons 74 69 75 = 1.0.1, November 10, 2014 = 70 76 … … 78 84 == Upgrade Notice == 79 85 86 = 1.0.2, November 22, 2014 = 87 88 * renamed Gamajo_Template_Loader to GpsTracker_Gamajo_Template_Loader to avoid namespace clashes with other plugins 89 * changed from bootstrap container to container-fluid 90 * added height to buttons 91 80 92 = 1.0.1, November 10, 2014 = 81 93 -
gps-tracker/trunk/templates/shortcode-gpstracker-map.php
r1026546 r1031076 1 <div class="container ">1 <div class="container-fluid"> 2 2 <div class="row"> 3 3 <div class="col-sm-4" id="toplogo"> … … 21 21 </div> 22 22 <div class="col-sm-3 autorefreshdiv"> 23 <input type="button" id="autorefresh" value="Auto Refresh -Off" class=" btn-custom" tabindex="3">23 <input type="button" id="autorefresh" value="Auto Refresh Off" class=" btn-custom" tabindex="3"> 24 24 </div> 25 25 <div class="col-sm-3 refreshdiv">
Note: See TracChangeset
for help on using the changeset viewer.