WP Google Maps - Version 9.0.12

Version Description

  • 2022-10-13 =
  • Fixed issue where minified library files were being loaded when in developer mode only
  • Fixed issue with CRUD class KSES processing
  • Updated Atlas Novus install ratio probability calculations to use a larger sample range
Download this release

Release Info

Developer DylanAuty
Plugin Icon 128x128 WP Google Maps
Version 9.0.12
Comparing to
See all releases

Code changes from version 9.0.11 to 9.0.12

includes/class.crud.php CHANGED
@@ -570,6 +570,11 @@ class Crud extends Factory implements \IteratorAggregate, \JsonSerializable
570
  if(is_string($value)){
571
  $value = wp_kses_post($value);
572
  }
 
 
 
 
 
573
  $this->fields[$key] = $value;
574
  }
575
 
570
  if(is_string($value)){
571
  $value = wp_kses_post($value);
572
  }
573
+
574
+ if($key === 'link'){
575
+ $value = html_entity_decode($value);
576
+ }
577
+
578
  $this->fields[$key] = $value;
579
  }
580
 
includes/class.internal-engine.php CHANGED
@@ -264,7 +264,7 @@ class InternalEngine {
264
  * @return string
265
  */
266
  public static function getRandomEngine(){
267
- $rFact = mt_rand(1, 100) / 100;
268
  if($rFact <= self::RAND_PROB_FACTOR){
269
  return self::getExperimentalBuildName();
270
  }
264
  * @return string
265
  */
266
  public static function getRandomEngine(){
267
+ $rFact = mt_rand(0, 10) / 10;
268
  if($rFact <= self::RAND_PROB_FACTOR){
269
  return self::getExperimentalBuildName();
270
  }
includes/class.plugin.php CHANGED
@@ -514,7 +514,7 @@ class Plugin extends Factory
514
  */
515
  public function isUsingMinifiedScripts()
516
  {
517
- return $this->isInDeveloperMode();
518
  }
519
 
520
  /**
514
  */
515
  public function isUsingMinifiedScripts()
516
  {
517
+ return !$this->isInDeveloperMode();
518
  }
519
 
520
  /**
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: google maps, maps, map, map markers, google map, google maps plugin, wp go
5
  Requires at least: 3.5
6
  Tested up to: 6.0
7
  Requires PHP: 5.3
8
- Stable tag: 9.0.11
9
  License: GPLv2
10
 
11
  The easiest to use Google maps plugin! Create a custom Google map, store locator or map widget with high quality markers containing categories, descriptions, images and links.
@@ -240,6 +240,11 @@ Please update your WP Go Maps version to 6.3.15 to ensure you are using the late
240
 
241
  == Changelog ==
242
 
 
 
 
 
 
243
  = 9.0.11 - 2022-09-20 =
244
  * Added various supports for Pro add-on settings
245
  * Fixed issue with country code module where it was using TLD instead of ISO 3166-1 alpha-2
5
  Requires at least: 3.5
6
  Tested up to: 6.0
7
  Requires PHP: 5.3
8
+ Stable tag: 9.0.12
9
  License: GPLv2
10
 
11
  The easiest to use Google maps plugin! Create a custom Google map, store locator or map widget with high quality markers containing categories, descriptions, images and links.
240
 
241
  == Changelog ==
242
 
243
+ = 9.0.12 - 2022-10-13 =
244
+ * Fixed issue where minified library files were being loaded when in developer mode only
245
+ * Fixed issue with CRUD class KSES processing
246
+ * Updated Atlas Novus install ratio probability calculations to use a larger sample range
247
+
248
  = 9.0.11 - 2022-09-20 =
249
  * Added various supports for Pro add-on settings
250
  * Fixed issue with country code module where it was using TLD instead of ISO 3166-1 alpha-2
wpGoogleMaps.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Go Maps (formerly WP Google Maps)
4
  Plugin URI: https://www.wpgmaps.com
5
  Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
6
- Version: 9.0.11
7
  Author: WP Go Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
@@ -12,6 +12,11 @@ Domain Path: /languages
12
 
13
 
14
  /*
 
 
 
 
 
15
  * 9.0.11 - 2022-09-20
16
  * Added various supports for Pro add-on settings
17
  * Fixed issue with country code module where it was using TLD instead of ISO 3166-1 alpha-2
3
  Plugin Name: WP Go Maps (formerly WP Google Maps)
4
  Plugin URI: https://www.wpgmaps.com
5
  Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
6
+ Version: 9.0.12
7
  Author: WP Go Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
12
 
13
 
14
  /*
15
+ * 9.0.12 - 2022-10-13
16
+ * Fixed issue where minified library files were being loaded when in developer mode only
17
+ * Fixed issue with CRUD class KSES processing
18
+ * Updated Atlas Novus install ratio probability calculations to use a larger sample range
19
+ *
20
  * 9.0.11 - 2022-09-20
21
  * Added various supports for Pro add-on settings
22
  * Fixed issue with country code module where it was using TLD instead of ISO 3166-1 alpha-2