Skip to content

Commit

Permalink
🚀 RELEASE: v3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Mar 13, 2021
1 parent a5a4178 commit cab6321
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 6 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
# Changelog

## 3.1
## 3.2
* Added `ddwc_driver_dashboard_completed_orders_order_details_url` filter in `admin/ddwc-dashboard-shortcode.php`
* Added `FontAwesome` and enqueued the stylesheet in `public/class-ddwc-public.php`
* Added new German translation in `languages/delivery-drivers-for-woocommerce-de_DE.pot`
* Added new Arabic translation in `languages/delivery-drivers-for-woocommerce-ar_AR.pot`
* Added thank you message when driver star rating is clicked on customer's order screen in `admin/ddwc-woocommerce-driver-ratings.php`
* Added `view profile` link to driver details metabox on Edit Order screen in `admin/ddwc-metaboxes.php`
* Updated driver vehicle details display requirements on order details page in `admin/ddwc-woocommerce-driver-ratings.php`
* Updated delivery rating in metabox to display stars instead of numbers in `admin/ddwc-metaboxes.php`
* Updated driver rating to use stars in admin view of the driver dashboard in `admin/ddwc-functions.php`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce.pot`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce-es_ES.pot`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce-fr_FR.pot`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce-it_IT.pot`
* Updated textdomain from `ddwc` to full plugin slug throughout multiple files in the plugin
* General code cleanup throughout multiple files in the plugin

## 3.1
* Added new Spanish translation in `languages/ddwc-es_ES.pot`
* Added new French translation in `languages/ddwc-fr_FR.pot`
* Added new Italian translation in `languages/ddwc-it_IT.pot`
Expand Down
21 changes: 19 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ 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.6
Stable tag: 3.1
Tested up to: 5.7
Stable tag: 3.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -95,6 +95,23 @@ Learn more at [Delivery Fees for WooCommerce](https://www.wordpress.org/plugins/

== Changelog ==

= 3.2 =
* Added `ddwc_driver_dashboard_completed_orders_order_details_url` filter in `admin/ddwc-dashboard-shortcode.php`
* Added `FontAwesome` and enqueued the stylesheet in `public/class-ddwc-public.php`
* Added new German translation in `languages/delivery-drivers-for-woocommerce-de_DE.pot`
* Added new Arabic translation in `languages/delivery-drivers-for-woocommerce-ar_AR.pot`
* Added thank you message when driver star rating is clicked on customer's order screen in `admin/ddwc-woocommerce-driver-ratings.php`
* Added `view profile` link to driver details metabox on Edit Order screen in `admin/ddwc-metaboxes.php`
* Updated driver vehicle details display requirements on order details page in `admin/ddwc-woocommerce-driver-ratings.php`
* Updated delivery rating in metabox to display stars instead of numbers in `admin/ddwc-metaboxes.php`
* Updated driver rating to use stars in admin view of the driver dashboard in `admin/ddwc-functions.php`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce.pot`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce-es_ES.pot`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce-fr_FR.pot`
* Updated text strings for localization in `languages/delivery-drivers-for-woocommerce-it_IT.pot`
* Updated textdomain from `ddwc` to full plugin slug throughout multiple files in the plugin
* General code cleanup throughout multiple files in the plugin

= 3.1 =
* Added new Spanish translation in `languages/ddwc-es_ES.pot`
* Added new French translation in `languages/ddwc-fr_FR.pot`
Expand Down
4 changes: 2 additions & 2 deletions delivery-drivers-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Delivery Drivers for WooCommerce
* Plugin URI: https://www.deviodigital.com
* Description: Streamline your mobile workforce and increase your bottom line.
* Version: 3.1
* Version: 3.2
* Author: Devio Digital
* Author URI: https://www.deviodigital.com
* License: GPL-2.0+
Expand All @@ -30,7 +30,7 @@
/**
* Current plugin version.
*/
define( 'DDWC_VERSION', '3.1' );
define( 'DDWC_VERSION', '3.2' );

/**
* The code that runs during plugin activation.
Expand Down
2 changes: 1 addition & 1 deletion includes/class-ddwc.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DDWC {
*/
public function __construct() {
$this->plugin_name = 'delivery-drivers-for-woocommerce';
$this->version = '3.1';
$this->version = '3.2';

if ( defined( 'DDWC_VERSION' ) ) {
$this->version = DDWC_VERSION;
Expand Down

0 comments on commit cab6321

Please sign in to comment.