Skip to content

Commit

Permalink
chore: version bump, changelog update, generate pot files
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbir1991 committed Aug 23, 2019
1 parent d01e808 commit 93155c1
Show file tree
Hide file tree
Showing 7 changed files with 120 additions and 96 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 4.4
**Tested up to:** 5.2.2
**WC requires at least:** 3.0
**WC tested up to:** 3.6.5
**WC tested up to:** 3.7.0
**Requires PHP:** 5.6
**Stable tag:** trunk
**License:** GPLv2 or later
Expand Down Expand Up @@ -284,6 +284,14 @@ A. Just install and activate the PRO version without deleting the free plugin. A

## Changelog ##

v2.9.20 -> August 23, 2019
------------------------------------
- **Fix*** Geolocation map settings value is not saving
- **Fix*** Fix warning in vendor dashboard widget when seller setup wizard is not run
- **Fix*** Store banner height in vendor settings page it not honouring the saved settings
- **Fix*** Conflict with avada theme fution builder
- **Tweak*** Use WordPress backend date format while printing date in approved and cancelled withdraw request

v2.9.19 -> July 29, 2019
------------------------------------
- **Fix*** Split orders created from admin dashboard
Expand Down
4 changes: 2 additions & 2 deletions assets/js/vue-admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -2536,8 +2536,8 @@ let Gmap = dokan_get_lib('Gmap');
getGmapApiKey() {
let settings = this.allSettingsValues;

if ('dokan_general' in settings && 'gmap_api_key' in settings.dokan_general) {
return settings.dokan_general.gmap_api_key;
if ('dokan_appearance' in settings && 'gmap_api_key' in settings.dokan_appearance) {
return settings.dokan_appearance.gmap_api_key;
}
}
}
Expand Down
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v2.9.20 -> August 23, 2019
------------------------------------
- **Fix*** Geolocation map settings value is not saving
- **Fix*** Fix warning in vendor dashboard widget when seller setup wizard is not run
- **Fix*** Store banner height in vendor settings page it not honouring the saved settings
- **Fix*** Conflict with avada theme fution builder
- **Tweak*** Use WordPress backend date format while printing date in approved and cancelled withdraw request

v2.9.19 -> July 29, 2019
------------------------------------
- **Fix*** Split orders created from admin dashboard
Expand Down
6 changes: 3 additions & 3 deletions dokan.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
Plugin Name: Dokan
Plugin URI: https://wordpress.org/plugins/dokan-lite/
Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs.
Version: 2.9.19
Version: 2.9.20
Author: weDevs, LLC
Author URI: https://wedevs.com/
Text Domain: dokan-lite
WC requires at least: 3.0
WC tested up to: 3.6.5
WC tested up to: 3.7.0
Domain Path: /languages/
License: GPL2
*/
Expand Down Expand Up @@ -78,7 +78,7 @@ final class WeDevs_Dokan {
*
* @var string
*/
public $version = '2.9.19';
public $version = '2.9.20';

/**
* Instance of self
Expand Down
Loading

0 comments on commit 93155c1

Please sign in to comment.