Skip to content

Commit

Permalink
🚀 RELEASE: v3.0 (for real this time)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Dec 5, 2020
1 parent 9f7ab5e commit e589a83
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
* Added customer note to order details in driver dashboard in `admin/ddwc-dashboard-shortcode.php`
* Added additional div wrappers to driver display on customer order in `admin/ddwc-woocommerce-driver-ratings.php`
* Added orders table for admins to see orders for specific drivers on the driver dashboard in `admin/ddwc-dashboard-shortcode.php`
* Added order statuses to bulk edit on Orders screen in `admin/class-ddwc-admin.php`
* Bugfix driver availability issue where the checkbox toggle wasn't saving in `admin/class-ddwc-admin.php`, `public/class-ddwc-public.php` and `public/js/ddwc-public.js`
* Bugfix bulk update conflicts on the admin Orders screen in `admin/class-ddwc-admin.php`
* Updated driver details to hide license plate if bicycle is the selected transportation type in `admin/ddwc-woocommerce-driver-ratings.php`
* Updated assigned orders table to be filterable in `admin/ddwc-dashboard-shortcode.php`
* Updated button styles for driver contact buttons in `public/css/ddwc-public.css`
* Updated driver contact button and out for delivery input styles in `public/css/ddwc-public.css`
* Updated driver transportation type select box width on Edit User screen in `public/css/ddwc-public.css`
* General code cleanup throughout multiple files in the plugin

## 2.9
Expand Down
9 changes: 6 additions & 3 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: deviodigital
Donate link: https://www.deviodigital.com
Tags: delivery, ecommerce, woocommerce, courier, delivery-drivers, marijuana, dispensary, cannabis, weed
Requires at least: 3.0.1
Tested up to: 5.5
Tested up to: 5.5.3
Stable tag: 3.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -96,14 +96,17 @@ Learn more at [Delivery Fees for WooCommerce](https://www.wordpress.org/plugins/
== Changelog ==

= 3.0 =
* Added orders table for admins to see orders for specific drivers on the driver dashboard in `admin/ddwc-dashboard-shortcode.php`
* Added customer note to order details in driver dashboard in `admin/ddwc-dashboard-shortcode.php`
* Added additional div wrappers to driver display on customer order in `admin/ddwc-woocommerce-driver-ratings.php`
* Added orders table for admins to see orders for specific drivers on the driver dashboard in `admin/ddwc-dashboard-shortcode.php`
* Added order statuses to bulk edit on Orders screen in `admin/class-ddwc-admin.php`
* Bugfix driver availability issue where the checkbox toggle wasn't saving in `admin/class-ddwc-admin.php`, `public/class-ddwc-public.php` and `public/js/ddwc-public.js`
* Bugfix bulk update conflicts on the admin Orders screen in `admin/class-ddwc-admin.php`
* Updated driver details to hide license plate if bicycle is the selected transportation type in `admin/ddwc-woocommerce-driver-ratings.php`
* Updated assigned orders table to be filterable in `admin/ddwc-dashboard-shortcode.php`
* Updated button styles for driver contact buttons in `public/css/ddwc-public.css`
* Updated driver contact button and out for delivery input styles in `public/css/ddwc-public.css`
* Updated text strings for localization in `languages/ddwc.pot`
* Updated driver transportation type select box width on Edit User screen in `public/css/ddwc-public.css`
* General code cleanup throughout multiple files in the plugin

= 2.9 =
Expand Down
2 changes: 1 addition & 1 deletion delivery-drivers-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function ddwc_check_pro_version() {
* @since 2.9
*/
function ddwc_update_ddwc_pro_notice() {
$ddwc_orders = '<a href="https://www.deviodigital.com/my-account/orders/" target="_blank">Orders</a>';
$ddwc_orders = '<a href="https://www.deviodigital.com/my-account/orders/" target="_blank">' . __( 'Orders', 'ddwc' ) . '</a>';
$error = sprintf( esc_html__( 'There is a new version of DDWC Pro available. Download your copy from the %1$s page on Devio Digital.', 'ddwc' ), $ddwc_orders );
echo '<div class="notice notice-info"><p>' . $error . '</p></div>';
}

0 comments on commit e589a83

Please sign in to comment.