Printful Integration for WooCommerce - Version 1.1.2

Version Description

Removed check for Curl extension

Download this release

Release Info

Developer printful
Plugin Icon 128x128 Printful Integration for WooCommerce
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

includes/class-printful-client.php CHANGED
@@ -23,9 +23,6 @@ class Printful_Client {
23
  if(!function_exists('json_decode') || !function_exists('json_encode')){
24
  throw new PrintfulException('PHP JSON extension is required for the Printful API library to work!');
25
  }
26
- if(!function_exists('curl_init') ){
27
- throw new PrintfulException('PHP CURL extension is required for the Printful API library to work!');
28
- }
29
  if(strlen($key) < 32){
30
  throw new PrintfulException('Missing or invalid Printful store key!');
31
  }
23
  if(!function_exists('json_decode') || !function_exists('json_encode')){
24
  throw new PrintfulException('PHP JSON extension is required for the Printful API library to work!');
25
  }
 
 
 
26
  if(strlen($key) < 32){
27
  throw new PrintfulException('Missing or invalid Printful store key!');
28
  }
printful-shipping.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Printful Integration for WooCommerce
4
  Plugin URI: https://wordpress.org/plugins/printful-shipping-for-woocommerce/
5
  Description: Calculate correct shipping and tax rates for your Printful-Woocommerce integration.
6
- Version: 1.1.1
7
  Author: Printful
8
  Author URI: http://www.theprintful.com
9
  License: GPL2 http://www.gnu.org/licenses/gpl-2.0.html
@@ -16,7 +16,7 @@ new Printful_Base();
16
 
17
  class Printful_Base {
18
 
19
- const VERSION = '1.1';
20
 
21
  /**
22
  * Construct the plugin.
3
  Plugin Name: Printful Integration for WooCommerce
4
  Plugin URI: https://wordpress.org/plugins/printful-shipping-for-woocommerce/
5
  Description: Calculate correct shipping and tax rates for your Printful-Woocommerce integration.
6
+ Version: 1.1.2
7
  Author: Printful
8
  Author URI: http://www.theprintful.com
9
  License: GPL2 http://www.gnu.org/licenses/gpl-2.0.html
16
 
17
  class Printful_Base {
18
 
19
+ const VERSION = '1.1.2';
20
 
21
  /**
22
  * Construct the plugin.
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: girts_u
3
  Tags: woocommerce, printful, drop shipping, shipping, shipping rates, fulfillment, printing, fedex, carriers, checkout, t-shirts
4
  Requires at least: 3.8
5
- Tested up to: 4.1
6
- Stable tag: 1.1.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -42,6 +42,9 @@ Go to https://www.theprintful.com/dashboard/store , select your WooCommerce stor
42
 
43
  == Upgrade Notice ==
44
 
 
 
 
45
  = 1.1.1 =
46
  Ignore virtual and downloadable products when calculating shipping rates
47
 
@@ -59,6 +62,9 @@ First release
59
 
60
  == Changelog ==
61
 
 
 
 
62
  = 1.1.1 =
63
  * Ignore virtual and downloadable products when calculating shipping rates
64
 
2
  Contributors: girts_u
3
  Tags: woocommerce, printful, drop shipping, shipping, shipping rates, fulfillment, printing, fedex, carriers, checkout, t-shirts
4
  Requires at least: 3.8
5
+ Tested up to: 4.3
6
+ Stable tag: 1.1.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
42
 
43
  == Upgrade Notice ==
44
 
45
+ = 1.1.2 =
46
+ Removed check for Curl extension
47
+
48
  = 1.1.1 =
49
  Ignore virtual and downloadable products when calculating shipping rates
50
 
62
 
63
  == Changelog ==
64
 
65
+ = 1.1.2 =
66
+ * Removed check for Curl extension (since we already used wp_remote_get and it is no longer necessary)
67
+
68
  = 1.1.1 =
69
  * Ignore virtual and downloadable products when calculating shipping rates
70