Skip to content

Commit

Permalink
v1.0.1 of the plugin
Browse files Browse the repository at this point in the history
- fix activation error
- readme updates
  • Loading branch information
deckerweb committed Aug 12, 2019
1 parent 5e55f57 commit b1e559b
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,19 @@

## Changelog of the Plugin

### ⚡ 1.0.1 - 2019-08-13

* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Tweak: Enhanced, improved and corrected Readme.txt file here
* Fix: Fixed fatal error on activation (sorry!)


### 🎉 1.0.0 - 2019-08-12

* *Plugin launch. Everything's new!*
* New: 8 Free GiveWP extensions supported/ integrated
* New: 19 Premium GiveWP extensions supported/ integrated
* New: 30 Settings - Toolbar-related, unique this Add-On
* New: 30 Settings - Toolbar-related, unique for this Add-On


### ⚡ 0.9.0 - 2019-08-06
Expand Down
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 4.7
**Tested up to:** 5.2
**Requires PHP:** 5.6
**Stable tag:** 1.0.0
**Stable tag:** 1.0.1
**License:** GPL-2.0-or-later
**License URI:** https://opensource.org/licenses/GPL-2.0

Expand Down Expand Up @@ -318,11 +318,18 @@ The normal use case is a single WordPress install with Toolbar Extras, plus Give
([For the full changelog of this plugin visit its website at ToolbarExtras.com](https://toolbarextras.com/changelog/))


### ⚡ 1.0.1 - 2019-08-13
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Tweak: Enhanced, improved and corrected Readme.txt file here
* Fix: Fixed fatal error on activation (sorry!)



### 🎉 1.0.0 - 2019-08-12
* *Plugin launch. Everything's new!*
* New: 8 Free GiveWP extensions supported/ integrated
* New: 19 Premium GiveWP extensions supported/ integrated
* New: 30 Settings - Toolbar-related, unique this Add-On
* New: 30 Settings - Toolbar-related, unique for this Add-On



Expand All @@ -337,6 +344,10 @@ The normal use case is a single WordPress install with Toolbar Extras, plus Give
## Upgrade Notice


### 1.0.1
Plugin launch. Everything's new! First tweaks and improvements. - **Update highly recommended.**


### 1.0.0
Plugin launch. Everything's new!

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/tbexgive-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function ddw_tbexgive_register_settings_givewp() {
//$status_testmode = ddw_tbexgive_is_give_test_mode() ? ' plugin-give-test-mode' : $plugin_inactive;
$status_testmode = ! ddw_tbexgive_is_give_test_mode() ? ' tbex-remove-settings-field' : '';

$formfeat_status = ddw_tbex_get_option( 'givewp', 'formfeat_display' );
$formfeat_status = get_option( 'tbex-options-givewp', 'no' )[ 'formfeat_display' ]; //ddw_tbex_get_option( 'givewp', 'formfeat_display' );

/** Status for special sub settings */
$status_special_subsettings = ( 'no' === $formfeat_status ) ? $plugin_inactive : '';
Expand Down
13 changes: 11 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: toolbar, adminbar, admin bar, givewp, donations, fundraising, donate, dona
Requires at least: 4.7
Tested up to: 5.2
Requires PHP: 5.6
Stable tag: 1.0.0
Stable tag: 1.0.1
License: GPL-2.0-or-later
License URI: https://opensource.org/licenses/GPL-2.0

Expand Down Expand Up @@ -246,11 +246,17 @@ The normal use case is a single WordPress install with Toolbar Extras, plus Give

([For the full changelog of this plugin visit its website at ToolbarExtras.com](https://toolbarextras.com/changelog/))

= ⚡ 1.0.1 - 2019-08-13 =
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Tweak: Enhanced, improved and corrected Readme.txt file here
* Fix: Fixed fatal error on activation (sorry!)


= 🎉 1.0.0 - 2019-08-12 =
* *Plugin launch. Everything's new!*
* New: 8 Free GiveWP extensions supported/ integrated
* New: 19 Premium GiveWP extensions supported/ integrated
* New: 30 Settings - Toolbar-related, unique this Add-On
* New: 30 Settings - Toolbar-related, unique for this Add-On


= ⚡ 0.9.0 - 2019-08-06 =
Expand All @@ -262,6 +268,9 @@ The normal use case is a single WordPress install with Toolbar Extras, plus Give

== Upgrade Notice =

= 1.0.1 =
Plugin launch. Everything's new! First tweaks and improvements. - **Update highly recommended.**

= 1.0.0 =
Plugin launch. Everything's new!

Expand Down
4 changes: 2 additions & 2 deletions toolbar-extras-givewp.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Toolbar Extras for Give Donations
* Plugin URI: https://toolbarextras.com/addons/give-donations/
* Description: WordPress plugin to leverage the Toolbar for managing your donations and donors with the Give Donations (GiveWP) plugin. - This is an Add-On plugin for Toolbar Extras.
* Version: 1.0.0
* Version: 1.0.1
* Author: David Decker - DECKERWEB
* Author URI: https://toolbarextras.com/
* License: GPL-2.0-or-later
Expand Down Expand Up @@ -40,7 +40,7 @@
* @since 1.0.0
*/
/** Plugin version */
define( 'TBEXGIVE_PLUGIN_VERSION', '1.0.0' );
define( 'TBEXGIVE_PLUGIN_VERSION', '1.0.1' );

/** Required base plugin version */
define( 'TBEXGIVE_REQUIRED_BASE_PLUGIN_VERSION', '1.4.6' );
Expand Down

0 comments on commit b1e559b

Please sign in to comment.