Version Description
- 2018-09-27 =
- Update - WC tested up to version 3.5
Download this release
Release Info
Developer | bor0 |
Plugin | WooCommerce Square |
Version | 1.0.33 |
Comparing to | |
See all releases |
Code changes from version 1.0.32 to 1.0.33
- changelog.txt +3 -0
- readme.txt +4 -1
- woocommerce-square.php +3 -3
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
*** WooCommerce Square Changelog ***
|
2 |
|
|
|
|
|
|
|
3 |
= 1.0.32 - 2018-08-23 =
|
4 |
* Fix - UK/GB localed does not support Diners/Discover, so do not show these brands on checkout.
|
5 |
|
1 |
*** WooCommerce Square Changelog ***
|
2 |
|
3 |
+
= 1.0.33 - 2018-09-27 =
|
4 |
+
* Update - WC tested up to version 3.5
|
5 |
+
|
6 |
= 1.0.32 - 2018-08-23 =
|
7 |
* Fix - UK/GB localed does not support Diners/Discover, so do not show these brands on checkout.
|
8 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: credit card, square, woocommerce, inventory sync
|
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -57,6 +57,9 @@ If you get stuck, you can ask for help in the Plugin Forum.
|
|
57 |
|
58 |
== Changelog ==
|
59 |
|
|
|
|
|
|
|
60 |
= 1.0.32 - 2018-08-23 =
|
61 |
* Fix - UK/GB localed does not support Diners/Discover, so do not show these brands on checkout.
|
62 |
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 1.0.33
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
57 |
|
58 |
== Changelog ==
|
59 |
|
60 |
+
= 1.0.33 - 2018-09-27 =
|
61 |
+
* Update - WC tested up to version 3.5
|
62 |
+
|
63 |
= 1.0.32 - 2018-08-23 =
|
64 |
* Fix - UK/GB localed does not support Diners/Discover, so do not show these brands on checkout.
|
65 |
|
woocommerce-square.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: WooCommerce Square
|
4 |
-
* Version: 1.0.
|
5 |
* Plugin URI: https://woocommerce.com/products/square/
|
6 |
* Description: Adds ability to sync inventory between WooCommerce and Square POS. In addition, you can also make purchases through the Square payment gateway.
|
7 |
* Author: WooCommerce
|
@@ -9,7 +9,7 @@
|
|
9 |
* Requires at least: 4.5.0
|
10 |
* Tested up to: 4.9
|
11 |
* WC requires at least: 2.6
|
12 |
-
* WC tested up to: 3.
|
13 |
* Text Domain: woocommerce-square
|
14 |
* Domain Path: /languages
|
15 |
*
|
@@ -23,7 +23,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
23 |
|
24 |
if ( ! class_exists( 'Woocommerce_Square' ) ) :
|
25 |
|
26 |
-
define( 'WC_SQUARE_VERSION', '1.0.
|
27 |
|
28 |
/**
|
29 |
* Main class.
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: WooCommerce Square
|
4 |
+
* Version: 1.0.33
|
5 |
* Plugin URI: https://woocommerce.com/products/square/
|
6 |
* Description: Adds ability to sync inventory between WooCommerce and Square POS. In addition, you can also make purchases through the Square payment gateway.
|
7 |
* Author: WooCommerce
|
9 |
* Requires at least: 4.5.0
|
10 |
* Tested up to: 4.9
|
11 |
* WC requires at least: 2.6
|
12 |
+
* WC tested up to: 3.5
|
13 |
* Text Domain: woocommerce-square
|
14 |
* Domain Path: /languages
|
15 |
*
|
23 |
|
24 |
if ( ! class_exists( 'Woocommerce_Square' ) ) :
|
25 |
|
26 |
+
define( 'WC_SQUARE_VERSION', '1.0.33' );
|
27 |
|
28 |
/**
|
29 |
* Main class.
|