Plugin Directory

Changeset 3342051


Ignore:
Timestamp:
08/09/2025 03:25:09 PM (7 months ago)
Author:
CodeBard
Message:

2.2.4

  • Removed unused updater code
Location:
patron-button-and-widgets-by-codebard/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • patron-button-and-widgets-by-codebard/trunk/index.php

    r3047500 r3342051  
    44    Plugin URI: https://wordpress.org/plugins/patron-button-and-widgets-by-codebard/
    55    Description: Patreon Patron Buttons, Widgets and Patreon Functions
    6     Version: 2.2.1
     6    Version: 2.2.4
    77    Author: CodeBard
    88    Author URI: https://codebard.com
     
    516516       
    517517        add_action( 'wp_ajax_'.$this->internal['prefix'].'dismiss_admin_notice', array( &$this, 'dismiss_admin_notice' ),10,1 );
    518        
    519         add_filter( 'pre_set_site_transient_update_plugins', array(&$this, 'check_for_update' ) );
    520    
    521         add_filter( 'plugins_api', array( &$this, 'injectInfo' ), 90, 3 );
    522 
     518           
    523519        if($this->internal['requested_action']!='')
    524520        {
  • patron-button-and-widgets-by-codebard/trunk/plugin/includes/default_internal_vars.php

    r3047500 r3342051  
    1111        'plugin_id' => 'patron-button-and-widgets-by-codebard',
    1212        'prefix' => 'cb_p6_',
    13         'version' => '2.2.1',
     13        'version' => '2.2.4',
    1414        'plugin_name' => 'CodeBard\'s Patron Button and Widgets for Patreon',
    1515       
  • patron-button-and-widgets-by-codebard/trunk/plugin/plugin.php

    r3047500 r3342051  
    3232       
    3333        add_menu_page( $this->lang['admin_menu_label'], $this->lang['admin_menu_label'], 'administrator', 'settings_'.$this->internal['id'], array(&$this,'do_settings_pages'), $this->internal['plugin_url'].'images/admin_menu_icon.png', 86 );
    34         add_submenu_page( null, 'Patreon Button, Widgets and Plugin Admin Message', 'Admin message', 'manage_options', $this->internal['id'] . 'admin_message', array( &$this, 'admin_message_page' ) );
    35         add_submenu_page( null, 'Installing Patreon WordPress', 'Installing Patreon WordPress', 'manage_options', $this->internal['id'] . '_install_pw', array( &$this, 'install_pw' ) );
     34        add_submenu_page( '', 'Patreon Button, Widgets and Plugin Admin Message', 'Admin message', 'manage_options', $this->internal['id'] . 'admin_message', array( &$this, 'admin_message_page' ) );
     35        add_submenu_page( '', 'Installing Patreon WordPress', 'Installing Patreon WordPress', 'manage_options', $this->internal['id'] . '_install_pw', array( &$this, 'install_pw' ) );
    3636       
    3737    }
    3838    public function admin_init_p() {
    39        
    40         // Updates are important - Add update nag if update exist
    41         add_filter( 'pre_set_site_transient_update_plugins', array(&$this, 'check_for_update' ),99 );
    42         add_filter( 'pre_set_site_transient_update_plugins', array(&$this, 'check_for_update' ),99 );
     39
     40        add_action( 'admin_enqueue_scripts', array(&$this, 'enqueue_admin_scripts'));
     41       
    4342        add_action( 'admin_enqueue_scripts',  array(&$this, 'load_pointers' ) );
    4443        add_filter( $this->internal['prefix'].'admin_pointers-dashboard', array( &$this, 'widgets_pointer' ) );
     
    14961495        }
    14971496       
    1498         if ( $this->opt['setup_is_being_done'] ) {
     1497        if ( isset( $this->opt['setup_is_being_done'] ) AND $this->opt['setup_is_being_done'] ) {
    14991498            return;
    15001499        }
  • patron-button-and-widgets-by-codebard/trunk/readme.txt

    r3051227 r3342051  
    77License: GPL
    88Requires at least: 4.0
    9 Tested up to: 6.4.3
    10 Stable Tag: 2.2.1
     9Tested up to: 6.8.2
     10Stable Tag: 2.2.4
    1111
    1212Add Patreon buttons to your content and sidebars. Upgrade to Patron Plugin Pro for patron-only posts and powerful features.
     
    6363== Upgrade Notice ==
    6464
     65= 2.2.4 =
     66
     67* Removed unused updater code
     68
     69= 2.2.3 =
     70
     71* Fixed a PHP deprecation warning
     72
     73= 2.2.2 =
     74
     75* Fixed a PHP warning
     76
    6577= 2.2.1 =
    6678
     
    209221== Changelog ==
    210222
     223= 2.2.4 =
     224
     225* Removed unused updater code
     226
     227= 2.2.3 =
     228
     229* Fixed a PHP deprecation warning
     230
     231= 2.2.2 =
     232
     233* Fixed a PHP warning
     234
    211235= 2.2.1 =
    212236
Note: See TracChangeset for help on using the changeset viewer.