diff --git a/README.md b/README.md index 1131b92b17..dc20c1a859 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ **WC requires at least:** 8.0.0 **WC tested up to:** 8.8.3 **Requires PHP:** 7.4 -**Stable tag:** 3.11.0 +**Stable tag:** 3.11.1 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html @@ -69,7 +69,7 @@ Here is how you can build your multivendor marketplace with Dokan. ๐Ÿ‘ โ€œBest investment we made last year.โ€ -๐Ÿ‘ [โ€œExcellent product. Ease of use. Saved hundreds of work hours with lots of additional benefits.โ€] (https://www.capterra.com/p/168004/Dokan-Multivendor-Marketplace/reviews/543139/) +๐Ÿ‘ โ€œ[Excellent product. Ease of use. Saved hundreds of work hours with lots of additional benefits] (https://www.capterra.com/p/168004/Dokan-Multivendor-Marketplace/reviews/543139/)โ€ ### SUCCESS STORIES WE ARE PROUD TO BE A PART OF ### @@ -347,6 +347,11 @@ A. Just install and activate the PRO version without deleting the free plugin. A ## Changelog ## +### v3.11.1 ( May 16, 2024 ) ### + +- **new:** Action hook `dokan_dashboard_sidebar_start` added. +- **new:** Action hook `dokan_dashboard_sidebar_end` added. + ### v3.11.0 ( May 10, 2024 ) ### - **fix:** The status of sub-orders does not update to completed if it contains only virtual products. diff --git a/dokan.php b/dokan.php index c5b447369a..b6af94480f 100755 --- a/dokan.php +++ b/dokan.php @@ -3,7 +3,7 @@ * Plugin Name: Dokan * Plugin URI: https://dokan.co/wordpress/ * Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs. - * Version: 3.11.0 + * Version: 3.11.1 * Author: weDevs * Author URI: https://dokan.co/ * Text Domain: dokan-lite @@ -66,7 +66,7 @@ final class WeDevs_Dokan { * * @var string */ - public $version = '3.11.0'; + public $version = '3.11.1'; /** * Instance of self diff --git a/languages/dokan-lite.pot b/languages/dokan-lite.pot index 08176006f0..c04b3ab5b6 100644 --- a/languages/dokan-lite.pot +++ b/languages/dokan-lite.pot @@ -1,14 +1,14 @@ # Copyright (c) 2024 weDevs Pte. Ltd. All Rights Reserved. msgid "" msgstr "" -"Project-Id-Version: Dokan 3.11.0\n" +"Project-Id-Version: Dokan 3.11.1\n" "Report-Msgid-Bugs-To: https://dokan.co/contact/\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-05-10T03:34:27+00:00\n" +"POT-Creation-Date: 2024-05-16T07:51:11+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.9.0\n" "X-Domain: dokan-lite\n" diff --git a/package-lock.json b/package-lock.json index 8d92b6b0ad..18b77788c9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "dokan", - "version": "3.11.0", + "version": "3.11.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "dokan", - "version": "3.11.0", + "version": "3.11.1", "license": "GPL", "devDependencies": { "@wordpress/scripts": "^26.18.0", diff --git a/package.json b/package.json index 4d96dcf6fb..80820dc7bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dokan", - "version": "3.11.0", + "version": "3.11.1", "description": "A WordPress marketplace plugin", "author": "weDevs", "license": "GPL", diff --git a/readme.txt b/readme.txt index 2dabb24361..8b5f2a9288 100644 --- a/readme.txt +++ b/readme.txt @@ -7,7 +7,7 @@ Tested up to: 6.5.3 WC requires at least: 8.0.0 WC tested up to: 8.8.3 Requires PHP: 7.4 -Stable tag: 3.11.0 +Stable tag: 3.11.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -69,7 +69,7 @@ Here is how you can build your multivendor marketplace with Dokan. ๐Ÿ‘ โ€œBest investment we made last year.โ€ -๐Ÿ‘ [โ€œExcellent product. Ease of use. Saved hundreds of work hours with lots of additional benefits.โ€] (https://www.capterra.com/p/168004/Dokan-Multivendor-Marketplace/reviews/543139/) +๐Ÿ‘ โ€œ[Excellent product. Ease of use. Saved hundreds of work hours with lots of additional benefits] (https://www.capterra.com/p/168004/Dokan-Multivendor-Marketplace/reviews/543139/)โ€ = SUCCESS STORIES WE ARE PROUD TO BE A PART OF = @@ -347,6 +347,11 @@ A. Just install and activate the PRO version without deleting the free plugin. A == Changelog == += v3.11.1 ( May 16, 2024 ) = + +- **new:** Action hook `dokan_dashboard_sidebar_start` added. +- **new:** Action hook `dokan_dashboard_sidebar_end` added. + = v3.11.0 ( May 10, 2024 ) = - **fix:** The status of sub-orders does not update to completed if it contains only virtual products. diff --git a/templates/global/dashboard-nav.php b/templates/global/dashboard-nav.php index e4562c0f80..393160b763 100755 --- a/templates/global/dashboard-nav.php +++ b/templates/global/dashboard-nav.php @@ -6,6 +6,7 @@
diff --git a/templates/whats-new.php b/templates/whats-new.php index d87497d633..18eb3dd7c7 100644 --- a/templates/whats-new.php +++ b/templates/whats-new.php @@ -3,6 +3,22 @@ * When you are adding new version please follow this sequence for changes: New Feature, New, Improvement, Fix... */ $changelog = [ + [ + 'version' => 'Version 3.11.1', + 'released' => '2024-05-16', + 'changes' => [ + 'New' => [ + [ + 'title' => 'Action hook `dokan_dashboard_sidebar_start` added.', + 'description' => '', + ], + [ + 'title' => 'Action hook `dokan_dashboard_sidebar_end` added.', + 'description' => '', + ], + ], + ], + ], [ 'version' => 'Version 3.11.0', 'released' => '2024-05-10',