Plugin Directory

Changeset 3495711


Ignore:
Timestamp:
03/31/2026 02:41:26 PM (39 hours ago)
Author:
eric1985
Message:

v2.0.1: Pro features work without license, license for updates only

Location:
nonprofit-manager
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • nonprofit-manager/tags/2.0.1/includes/npmp-version.php

    r3495680 r3495711  
    1313 */
    1414function 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' );
    2316}
    2417
  • nonprofit-manager/tags/2.0.1/nonprofit-manager.php

    r3495680 r3495711  
    33 * Plugin Name: Nonprofit Manager
    44 * Description: Manage memberships, donations, newsletters and events from one plugin.
    5  * Version: 2.0.0
     5 * Version: 2.0.1
    66 * Author: Eric Rosenberg
    77 * License: GPL-2.0-or-later
  • nonprofit-manager/tags/2.0.1/readme.txt

    r3495680 r3495711  
    44Requires at least: 6.0
    55Tested up to: 6.8.3
    6 Stable tag: 2.0.0
     6Stable tag: 2.0.1
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    117117== Changelog ==
    118118
     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
    119123= 2.0.0 =
    120124* Added: Stripe payment gateway for free users (one-time donations)
  • nonprofit-manager/trunk/includes/npmp-version.php

    r3495680 r3495711  
    1313 */
    1414function 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' );
    2316}
    2417
  • nonprofit-manager/trunk/nonprofit-manager.php

    r3495680 r3495711  
    33 * Plugin Name: Nonprofit Manager
    44 * Description: Manage memberships, donations, newsletters and events from one plugin.
    5  * Version: 2.0.0
     5 * Version: 2.0.1
    66 * Author: Eric Rosenberg
    77 * License: GPL-2.0-or-later
  • nonprofit-manager/trunk/readme.txt

    r3495680 r3495711  
    44Requires at least: 6.0
    55Tested up to: 6.8.3
    6 Stable tag: 2.0.0
     6Stable tag: 2.0.1
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    117117== Changelog ==
    118118
     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
    119123= 2.0.0 =
    120124* Added: Stripe payment gateway for free users (one-time donations)
Note: See TracChangeset for help on using the changeset viewer.