Google Maps Widget – Ultimate Google Maps Plugin - Version 1.92

Version Description

  • 2014/11/12
  • minor bug fixes
  • preparations for admin JS rewrite
Download this release

Release Info

Developer WebFactory
Plugin Icon 128x128 Google Maps Widget – Ultimate Google Maps Plugin
Version 1.92
Comparing to
See all releases

Code changes from version 1.90 to 1.92

css/gmw-admin.css CHANGED
@@ -21,6 +21,10 @@
21
  padding: 1px 6px;
22
  }
23
 
 
 
 
 
24
  /*
25
  * jQuery UI Tabs 1.8.14
26
  *
@@ -34,8 +38,8 @@
34
  .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
35
  .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
36
  .ui-tabs .ui-tabs-nav li a { text-decoration: none; }
37
- .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; border-bottom: 1px solid #F8F8F8 !important; }
38
- .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: 0; border-bottom: 1px solid #F8F8F8 !important; }
39
  .ui-tabs .ui-tabs-nav li.ui-tabs-active a { outline: none;}
40
  .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
41
  .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
21
  padding: 1px 6px;
22
  }
23
 
24
+ .gmw-tabs select {
25
+ min-width: 200px;
26
+ }
27
+
28
  /*
29
  * jQuery UI Tabs 1.8.14
30
  *
38
  .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
39
  .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
40
  .ui-tabs .ui-tabs-nav li a { text-decoration: none; }
41
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; border-bottom: 1px solid white !important; }
42
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: 0; border-bottom: 1px solid white !important; }
43
  .ui-tabs .ui-tabs-nav li.ui-tabs-active a { outline: none;}
44
  .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
45
  .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
css/index.php ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <?php
2
+ // Silence is golden.
gmw-widget.php CHANGED
@@ -318,7 +318,7 @@ class GoogleMapsWidget extends WP_Widget {
318
  $tmp .= '<img alt="' . $alt . '" title="' . $alt . '" src="//maps.googleapis.com/maps/api/staticmap?center=' .
319
  urlencode($instance['address']) . '&amp;zoom=' . $instance['thumb_zoom'] .
320
  '&amp;size=' . $instance['thumb_width'] . 'x' . $instance['thumb_height'] . '&amp;maptype=' . $instance['thumb_type'] .
321
- '&amp;sensor=false&amp;scale=1&amp;';
322
  if ($instance['thumb_pin_type'] != 'custom') {
323
  $tmp .= 'markers=size:' . $instance['thumb_pin_size'] . '%7Ccolor:' . $instance['thumb_pin_color'];
324
  } else {
318
  $tmp .= '<img alt="' . $alt . '" title="' . $alt . '" src="//maps.googleapis.com/maps/api/staticmap?center=' .
319
  urlencode($instance['address']) . '&amp;zoom=' . $instance['thumb_zoom'] .
320
  '&amp;size=' . $instance['thumb_width'] . 'x' . $instance['thumb_height'] . '&amp;maptype=' . $instance['thumb_type'] .
321
+ '&amp;scale=1&amp;';
322
  if ($instance['thumb_pin_type'] != 'custom') {
323
  $tmp .= 'markers=size:' . $instance['thumb_pin_size'] . '%7Ccolor:' . $instance['thumb_pin_color'];
324
  } else {
google-maps-widget.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Maps Widget
4
  Plugin URI: http://www.googlemapswidget.com/
5
  Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available on click in a lightbox.
6
  Author: Web factory Ltd
7
- Version: 1.90
8
  Author URI: http://www.webfactoryltd.com/
9
  Text Domain: google-maps-widget
10
  Domain Path: lang
@@ -31,7 +31,7 @@ if (!defined('ABSPATH')) {
31
  }
32
 
33
 
34
- define('GMW_VER', '1.90');
35
  define('GMW_OPTIONS', 'gmw_options');
36
  define('GMW_CRON', 'gmw_cron');
37
 
4
  Plugin URI: http://www.googlemapswidget.com/
5
  Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available on click in a lightbox.
6
  Author: Web factory Ltd
7
+ Version: 1.92
8
  Author URI: http://www.webfactoryltd.com/
9
  Text Domain: google-maps-widget
10
  Domain Path: lang
31
  }
32
 
33
 
34
+ define('GMW_VER', '1.92');
35
  define('GMW_OPTIONS', 'gmw_options');
36
  define('GMW_CRON', 'gmw_cron');
37
 
images/index.php ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <?php
2
+ // Silence is golden.
index.php CHANGED
@@ -1,3 +1,2 @@
1
  <?php
2
- // Silence is golden.
3
- ?>
1
  <?php
2
+ // Silence is golden.
 
js/index.php ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <?php
2
+ // Silence is golden.
lang/index.php ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <?php
2
+ // Silence is golden.
readme.txt CHANGED
@@ -6,7 +6,7 @@ License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: 3.3
8
  Tested up to: 4.0
9
- Stable tag: 1.90
10
 
11
  Displays a single-image super-fast loading Google map in a widget. A larger map with all the usual features is available on click in a lightbox.
12
 
@@ -111,6 +111,11 @@ If you can figure it out open a thread in the support forums.
111
  4. Widget options - lightbox map
112
 
113
  == Changelog ==
 
 
 
 
 
114
  = 1.90 =
115
  * 2014/10/20
116
  * added Serbian translation; thanks Ogi!
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: 3.3
8
  Tested up to: 4.0
9
+ Stable tag: 1.92
10
 
11
  Displays a single-image super-fast loading Google map in a widget. A larger map with all the usual features is available on click in a lightbox.
12
 
111
  4. Widget options - lightbox map
112
 
113
  == Changelog ==
114
+ = 1.92 =
115
+ * 2014/11/12
116
+ * minor bug fixes
117
+ * preparations for admin JS rewrite
118
+
119
  = 1.90 =
120
  * 2014/10/20
121
  * added Serbian translation; thanks Ogi!