Changeset 3495711
- Timestamp:
- 03/31/2026 02:41:26 PM (39 hours ago)
- Location:
- nonprofit-manager
- Files:
-
- 6 edited
- 1 copied
-
tags/2.0.1 (copied) (copied from nonprofit-manager/trunk)
-
tags/2.0.1/includes/npmp-version.php (modified) (1 diff)
-
tags/2.0.1/nonprofit-manager.php (modified) (1 diff)
-
tags/2.0.1/readme.txt (modified) (2 diffs)
-
trunk/includes/npmp-version.php (modified) (1 diff)
-
trunk/nonprofit-manager.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nonprofit-manager/tags/2.0.1/includes/npmp-version.php
r3495680 r3495711 13 13 */ 14 14 function npmp_is_pro() { 15 if ( ! defined( 'NPMP_PRO_VERSION' ) ) { 16 return false; 17 } 18 // When the license client is loaded, verify the license is valid. 19 if ( class_exists( 'NPMP_License_Client' ) ) { 20 return NPMP_License_Client::get_instance()->is_valid(); 21 } 22 return false; 15 return defined( 'NPMP_PRO_VERSION' ); 23 16 } 24 17 -
nonprofit-manager/tags/2.0.1/nonprofit-manager.php
r3495680 r3495711 3 3 * Plugin Name: Nonprofit Manager 4 4 * Description: Manage memberships, donations, newsletters and events from one plugin. 5 * Version: 2.0. 05 * Version: 2.0.1 6 6 * Author: Eric Rosenberg 7 7 * License: GPL-2.0-or-later -
nonprofit-manager/tags/2.0.1/readme.txt
r3495680 r3495711 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8.3 6 Stable tag: 2.0. 06 Stable tag: 2.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 117 117 == Changelog == 118 118 119 = 2.0.1 = 120 * Changed: Pro features now work when Pro plugin is installed (license required for updates only) 121 * Fixed: Class declaration conflict when upgrading Pro plugin 122 119 123 = 2.0.0 = 120 124 * Added: Stripe payment gateway for free users (one-time donations) -
nonprofit-manager/trunk/includes/npmp-version.php
r3495680 r3495711 13 13 */ 14 14 function npmp_is_pro() { 15 if ( ! defined( 'NPMP_PRO_VERSION' ) ) { 16 return false; 17 } 18 // When the license client is loaded, verify the license is valid. 19 if ( class_exists( 'NPMP_License_Client' ) ) { 20 return NPMP_License_Client::get_instance()->is_valid(); 21 } 22 return false; 15 return defined( 'NPMP_PRO_VERSION' ); 23 16 } 24 17 -
nonprofit-manager/trunk/nonprofit-manager.php
r3495680 r3495711 3 3 * Plugin Name: Nonprofit Manager 4 4 * Description: Manage memberships, donations, newsletters and events from one plugin. 5 * Version: 2.0. 05 * Version: 2.0.1 6 6 * Author: Eric Rosenberg 7 7 * License: GPL-2.0-or-later -
nonprofit-manager/trunk/readme.txt
r3495680 r3495711 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8.3 6 Stable tag: 2.0. 06 Stable tag: 2.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 117 117 == Changelog == 118 118 119 = 2.0.1 = 120 * Changed: Pro features now work when Pro plugin is installed (license required for updates only) 121 * Fixed: Class declaration conflict when upgrading Pro plugin 122 119 123 = 2.0.0 = 120 124 * Added: Stripe payment gateway for free users (one-time donations)
Note: See TracChangeset
for help on using the changeset viewer.