Skip to content

Commit 0365397

Browse files
authored
Merge pull request #11 from vbiweb/dev
Issue #10 fixed calling of updater function
2 parents 9ba6432 + c1d286f commit 0365397

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed

README.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
=== WC Order View ===
22

3-
Contributors: kggopal12
4-
Donate link: https://kgopalkrishna.com
5-
Tags: woocommerce, order, view
6-
Requires at least: 5.0.0
7-
Tested up to: 5.2.3
8-
Stable tag: 1.2.0
9-
License: GPLv3 or later
10-
License URI: http://www.gnu.org/licenses/gpl-3.0.html
3+
Contributors: kggopal12 <br>
4+
Donate link: https://kgopalkrishna.com <br>
5+
Tags: woocommerce, order, view <br>
6+
Requires at least: 5.0.0 <br>
7+
Tested up to: 5.2.3 <br>
8+
Stable tag: 1.2.1 <br>
9+
License: GPLv3 or later <br>
10+
License URI: http://www.gnu.org/licenses/gpl-3.0.html <br>
1111

1212
This plugin gives a strict View-Only access to Woocommerce orders for specified user roles.
1313

@@ -26,8 +26,8 @@ This plugin gives a strict view only access to woocommerce orders. All you need
2626
* Initial release.
2727

2828
= 1.0.1 =
29-
* Issue #2 - Fixed Date created value displayed for each order
30-
* Issue #3 - Fixed the total orders count shown in all orders page
29+
* Fix - Fixed Date created value displayed for each order #2
30+
* Fix - Fixed the total orders count shown in all orders page #3
3131

3232
= 1.1.0 =
3333
* Fix - Fixed cancelled orders not visible #5
@@ -37,7 +37,10 @@ This plugin gives a strict view only access to woocommerce orders. All you need
3737
= 1.2.0 =
3838
* Feature - One click update option added in the plugins page
3939
* Fix - Cancelled order status color doesn't match WooCommerce #8
40-
* Fix - Invoice date for all orders showing same date in All orders list #9
40+
* Fix - Invoice date for all orders showing same date in All orders list #7
41+
42+
= 1.2.1 =
43+
* Fix - Added function call to updated in the main plugin file #10
4144

4245
== Features ==
4346

woocommerce-order-view.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Plugin Name: Woocommerce Order View
1717
* Plugin URI: https://kgopalkrishna.com/wc-order-view/
1818
* Description: This plugin gives a strict View-Only access to Woocommerce orders for specified user roles.
19-
* Version: 1.2.0
19+
* Version: 1.2.1
2020
* Author: K Gopal Krishna
2121
* Author URI: https://kgopalkrishna.com
2222
* License: GPL-3.0+
@@ -35,7 +35,7 @@
3535
* Start at version 1.0.0 and use SemVer - https://semver.org
3636
* Rename this for your plugin and update it as you release new versions.
3737
*/
38-
define( 'WC_ORDER_VIEW_VERSION', '1.2.0' );
38+
define( 'WC_ORDER_VIEW_VERSION', '1.2.1' );
3939

4040
/**
4141
* The code that runs during plugin activation.
@@ -92,3 +92,5 @@ function run_wc_order_view() {
9292

9393
}
9494
run_wc_order_view();
95+
96+
update_wc_order_view();

0 commit comments

Comments
 (0)