Skip to content

Commit

Permalink
Merge pull request #11 from vbiweb/dev
Browse files Browse the repository at this point in the history
Issue #10 fixed calling of updater function
  • Loading branch information
kgkrishnavbi authored Nov 6, 2019
2 parents 9ba6432 + c1d286f commit 0365397
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
25 changes: 14 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
=== WC Order View ===

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

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

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

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

= 1.1.0 =
* Fix - Fixed cancelled orders not visible #5
Expand All @@ -37,7 +37,10 @@ This plugin gives a strict view only access to woocommerce orders. All you need
= 1.2.0 =
* Feature - One click update option added in the plugins page
* Fix - Cancelled order status color doesn't match WooCommerce #8
* Fix - Invoice date for all orders showing same date in All orders list #9
* Fix - Invoice date for all orders showing same date in All orders list #7

= 1.2.1 =
* Fix - Added function call to updated in the main plugin file #10

== Features ==

Expand Down
6 changes: 4 additions & 2 deletions woocommerce-order-view.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Plugin Name: Woocommerce Order View
* Plugin URI: https://kgopalkrishna.com/wc-order-view/
* Description: This plugin gives a strict View-Only access to Woocommerce orders for specified user roles.
* Version: 1.2.0
* Version: 1.2.1
* Author: K Gopal Krishna
* Author URI: https://kgopalkrishna.com
* License: GPL-3.0+
Expand All @@ -35,7 +35,7 @@
* Start at version 1.0.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'WC_ORDER_VIEW_VERSION', '1.2.0' );
define( 'WC_ORDER_VIEW_VERSION', '1.2.1' );

/**
* The code that runs during plugin activation.
Expand Down Expand Up @@ -92,3 +92,5 @@ function run_wc_order_view() {

}
run_wc_order_view();

update_wc_order_view();

0 comments on commit 0365397

Please sign in to comment.