Version Description
Download this release
Release Info
Developer | SkyVerge |
Plugin | WooCommerce Sequential Order Numbers |
Version | 1.9.4 |
Comparing to | |
See all releases |
Code changes from version 1.9.3 to 1.9.4
i18n/languages/woocommerce-sequential-order-numbers.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the GNU General Public License v3.0.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WooCommerce Sequential Order Numbers 1.9.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://woocommerce.com/my-account/marketplace-ticket-form/\n"
|
8 |
-
"POT-Creation-Date: 2020-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the GNU General Public License v3.0.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Sequential Order Numbers 1.9.4\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://woocommerce.com/my-account/marketplace-ticket-form/\n"
|
8 |
+
"POT-Creation-Date: 2020-03-10 22:01:07+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SkyVerge, maxrice, tamarazuk, chasewiseman, nekojira, beka.rice
|
|
3 |
Tags: woocommerce, order number, sequential order number, woocommerce orders
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.3.2
|
6 |
-
Stable tag: 1.9.
|
7 |
|
8 |
This plugin extends WooCommerce by setting sequential order numbers for new orders.
|
9 |
|
@@ -101,6 +101,9 @@ $order_number = $order->get_order_number();
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
104 |
= 2020.02.05 - version 1.9.3 =
|
105 |
* Misc - Add support for WooCommerce 3.9
|
106 |
|
3 |
Tags: woocommerce, order number, sequential order number, woocommerce orders
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.3.2
|
6 |
+
Stable tag: 1.9.4
|
7 |
|
8 |
This plugin extends WooCommerce by setting sequential order numbers for new orders.
|
9 |
|
101 |
|
102 |
== Changelog ==
|
103 |
|
104 |
+
= 2020.03.10 - version 1.9.4 =
|
105 |
+
* Misc - Add support for WooCommerce 4.0
|
106 |
+
|
107 |
= 2020.02.05 - version 1.9.3 =
|
108 |
* Misc - Add support for WooCommerce 3.9
|
109 |
|
woocommerce-sequential-order-numbers.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Provides sequential order numbers for WooCommerce orders
|
6 |
* Author: SkyVerge
|
7 |
* Author URI: http://www.skyverge.com
|
8 |
-
* Version: 1.9.
|
9 |
* Text Domain: woocommerce-sequential-order-numbers
|
10 |
* Domain Path: /i18n/languages/
|
11 |
*
|
@@ -19,7 +19,7 @@
|
|
19 |
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0
|
20 |
*
|
21 |
* WC requires at least: 3.0.9
|
22 |
-
* WC tested up to:
|
23 |
*/
|
24 |
|
25 |
defined( 'ABSPATH' ) or exit;
|
@@ -33,7 +33,7 @@ class WC_Seq_Order_Number {
|
|
33 |
|
34 |
|
35 |
/** version number */
|
36 |
-
const VERSION = '1.9.
|
37 |
|
38 |
/** minimum required wc version */
|
39 |
const MINIMUM_WC_VERSION = '3.0.9';
|
5 |
* Description: Provides sequential order numbers for WooCommerce orders
|
6 |
* Author: SkyVerge
|
7 |
* Author URI: http://www.skyverge.com
|
8 |
+
* Version: 1.9.4
|
9 |
* Text Domain: woocommerce-sequential-order-numbers
|
10 |
* Domain Path: /i18n/languages/
|
11 |
*
|
19 |
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0
|
20 |
*
|
21 |
* WC requires at least: 3.0.9
|
22 |
+
* WC tested up to: 4.0.0
|
23 |
*/
|
24 |
|
25 |
defined( 'ABSPATH' ) or exit;
|
33 |
|
34 |
|
35 |
/** version number */
|
36 |
+
const VERSION = '1.9.4';
|
37 |
|
38 |
/** minimum required wc version */
|
39 |
const MINIMUM_WC_VERSION = '3.0.9';
|