Flexible Shipping for WooCommerce - Version 3.9.5

Version Description

  • 2020-01-03 =
  • Added support for WooCommerce 3.9
Download this release

Release Info

Developer wpdesk
Plugin Icon 128x128 Flexible Shipping for WooCommerce
Version 3.9.5
Comparing to
See all releases

Code changes from version 3.9.4 to 3.9.5

flexible-shipping.php CHANGED
@@ -3,15 +3,15 @@
3
  * Plugin Name: Flexible Shipping
4
  * Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  * Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
- * Version: 3.9.4
7
  * Author: WP Desk
8
  * Author URI: https://www.wpdesk.net/
9
  * Text Domain: flexible-shipping
10
  * Domain Path: /lang/
11
  * Requires at least: 4.5
12
- * Tested up to: 5.3
13
  * WC requires at least: 3.1.0
14
- * WC tested up to: 3.8.1
15
  * Requires PHP: 5.6
16
  *
17
  * Copyright 2017 WP Desk Ltd.
@@ -37,8 +37,8 @@ if ( ! defined( 'ABSPATH' ) ) {
37
  } // Exit if accessed directly
38
 
39
  /* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
40
- $plugin_version = '3.9.4';
41
- $plugin_release_timestamp = '2019-12-11 11:56';
42
 
43
  $plugin_name = 'Flexible Shipping';
44
  $product_id = 'Flexible Shipping';
3
  * Plugin Name: Flexible Shipping
4
  * Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  * Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
+ * Version: 3.9.5
7
  * Author: WP Desk
8
  * Author URI: https://www.wpdesk.net/
9
  * Text Domain: flexible-shipping
10
  * Domain Path: /lang/
11
  * Requires at least: 4.5
12
+ * Tested up to: 5.3.2
13
  * WC requires at least: 3.1.0
14
+ * WC tested up to: 3.9
15
  * Requires PHP: 5.6
16
  *
17
  * Copyright 2017 WP Desk Ltd.
37
  } // Exit if accessed directly
38
 
39
  /* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
40
+ $plugin_version = '3.9.5';
41
+ $plugin_release_timestamp = '2020-01-03 11:16';
42
 
43
  $plugin_name = 'Flexible Shipping';
44
  $product_id = 'Flexible Shipping';
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: wpdesk,dyszczo,grola,potreb
3
  Donate link: https://flexibleshipping.com/table-rate/
4
  Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
5
  Requires at least: 4.5
6
- Tested up to: 5.3
7
- Stable tag: 3.9.4
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -175,6 +175,9 @@ If you are upgrading from the old Flexible Shipping version (1.3.2, woo-flexible
175
 
176
  == Changelog ==
177
 
 
 
 
178
  = 3.9.4 - 2019-12-11 =
179
  * Fixed WPML string translations compatibility
180
 
3
  Donate link: https://flexibleshipping.com/table-rate/
4
  Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
5
  Requires at least: 4.5
6
+ Tested up to: 5.3.2
7
+ Stable tag: 3.9.5
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
175
 
176
  == Changelog ==
177
 
178
+ = 3.9.5 - 2020-01-03 =
179
+ * Added support for WooCommerce 3.9
180
+
181
  = 3.9.4 - 2019-12-11 =
182
  * Fixed WPML string translations compatibility
183
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit1a09ecba3f89686934396722a633b876::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit1a09ecba3f89686934396722a633b876
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit1a09ecba3f89686934396722a633b876', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit1a09ecba3f89686934396722a633b876', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit1a09ecba3f89686934396722a633b876::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'P' =>
@@ -349,9 +349,9 @@ class ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929
349
  public static function getInitializer(ClassLoader $loader)
350
  {
351
  return \Closure::bind(function () use ($loader) {
352
- $loader->prefixLengthsPsr4 = ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::$prefixLengthsPsr4;
353
- $loader->prefixDirsPsr4 = ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::$prefixDirsPsr4;
354
- $loader->classMap = ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::$classMap;
355
 
356
  }, null, ClassLoader::class);
357
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit1a09ecba3f89686934396722a633b876
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'P' =>
349
  public static function getInitializer(ClassLoader $loader)
350
  {
351
  return \Closure::bind(function () use ($loader) {
352
+ $loader->prefixLengthsPsr4 = ComposerStaticInit1a09ecba3f89686934396722a633b876::$prefixLengthsPsr4;
353
+ $loader->prefixDirsPsr4 = ComposerStaticInit1a09ecba3f89686934396722a633b876::$prefixDirsPsr4;
354
+ $loader->classMap = ComposerStaticInit1a09ecba3f89686934396722a633b876::$classMap;
355
 
356
  }, null, ClassLoader::class);
357
  }