Plugin Directory

Changeset 3404168


Ignore:
Timestamp:
11/27/2025 02:15:15 PM (2 weeks ago)
Author:
wpdevteam
Message:

Update to version 4.2.6 from GitHub

Location:
betterdocs
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • betterdocs/tags/4.2.6/README.txt

    r3404159 r3404168  
    66Tested up to: 6.8
    77Requires PHP: 7.0
    8 Stable tag: 4.2.5
     8Stable tag: 4.2.6
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    215215
    216216== Changelog ==
     217
     218= 4.2.6 - 27/11/2025 =
     219
     220- Few minor bug fixes and improvements
    217221
    218222= 4.2.5 - 27/11/2025 =
  • betterdocs/tags/4.2.6/betterdocs.php

    r3404159 r3404168  
    55 * Plugin URI:        https://betterdocs.co/
    66 * Description:       Create stunning Knowledge base & FAQs for your WordPress website and reduce support pressure with the help of BetterDocs. Get access to amazing templates and create fully customizable KB with AI Write.
    7  * Version:           4.2.5
     7 * Version:           4.2.6
    88 * Author:            WPDeveloper
    99 * Author URI:        https://wpdeveloper.com
  • betterdocs/tags/4.2.6/includes/Admin/NoticePointers.php

    r3404159 r3404168  
    4949
    5050        // Check basic conditions
    51         if ( ! self::is_user_allowed() || self::is_dismissed() || ! self::is_campaign_time() ) {
     51        if ( ! self::is_user_allowed() || self::is_dismissed() || ! self::is_campaign_time() || self::has_pro() ) {
    5252            return;
    5353        }
     
    191191        update_user_meta( $user_id, self::USER_META_KEY, $introduction_meta );
    192192    }
     193
     194    private static function has_pro(): bool {
     195        return is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' );
     196    }
    193197}
    194198
  • betterdocs/tags/4.2.6/includes/Plugin.php

    r3404159 r3404168  
    124124     * @var string
    125125     */
    126     public $version = '4.2.5';
     126    public $version = '4.2.6';
    127127
    128128    /**
  • betterdocs/trunk/README.txt

    r3404159 r3404168  
    66Tested up to: 6.8
    77Requires PHP: 7.0
    8 Stable tag: 4.2.5
     8Stable tag: 4.2.6
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    215215
    216216== Changelog ==
     217
     218= 4.2.6 - 27/11/2025 =
     219
     220- Few minor bug fixes and improvements
    217221
    218222= 4.2.5 - 27/11/2025 =
  • betterdocs/trunk/betterdocs.php

    r3404159 r3404168  
    55 * Plugin URI:        https://betterdocs.co/
    66 * Description:       Create stunning Knowledge base & FAQs for your WordPress website and reduce support pressure with the help of BetterDocs. Get access to amazing templates and create fully customizable KB with AI Write.
    7  * Version:           4.2.5
     7 * Version:           4.2.6
    88 * Author:            WPDeveloper
    99 * Author URI:        https://wpdeveloper.com
  • betterdocs/trunk/includes/Admin/NoticePointers.php

    r3404159 r3404168  
    4949
    5050        // Check basic conditions
    51         if ( ! self::is_user_allowed() || self::is_dismissed() || ! self::is_campaign_time() ) {
     51        if ( ! self::is_user_allowed() || self::is_dismissed() || ! self::is_campaign_time() || self::has_pro() ) {
    5252            return;
    5353        }
     
    191191        update_user_meta( $user_id, self::USER_META_KEY, $introduction_meta );
    192192    }
     193
     194    private static function has_pro(): bool {
     195        return is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' );
     196    }
    193197}
    194198
  • betterdocs/trunk/includes/Plugin.php

    r3404159 r3404168  
    124124     * @var string
    125125     */
    126     public $version = '4.2.5';
     126    public $version = '4.2.6';
    127127
    128128    /**
Note: See TracChangeset for help on using the changeset viewer.