Plugin Directory

Changeset 3302183


Ignore:
Timestamp:
05/28/2025 11:46:53 AM (10 months ago)
Author:
daext
Message:

Committing and tagging 1.21

Location:
league-table-lite
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • league-table-lite/tags/1.21/admin/class-daextletal-admin.php

    r3294646 r3302183  
    614614    public static function ac_initialize_options() {
    615615
    616         if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 2 ) {
     616        if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 3 ) {
    617617
    618618            // Assign an instance of Daextletal_Shared.
     
    624624
    625625            // Update options version.
    626             update_option( 'daextletal_options_version', '2' );
     626            update_option( 'daextletal_options_version', '3' );
    627627
    628628        }
  • league-table-lite/tags/1.21/init.php

    r3302012 r3302183  
    33 * Plugin Name: League Table
    44 * Description: Generates tables in your WordPress blog. (Lite version)
    5  * Version: 1.20
     5 * Version: 1.21
    66 * Author: DAEXT
    77 * Author URI: https://daext.com
  • league-table-lite/tags/1.21/readme.txt

    r3302012 r3302183  
    66Tested up to: 6.8.1
    77Requires PHP: 7.2
    8 Stable tag: 1.20
     8Stable tag: 1.21
    99License: GPLv3
    1010
     
    158158== Changelog ==
    159159
     160= 1.21 =
     161
     162*May 28, 2025*
     163
     164* Updated the internal version of the plugin options to support recent changes.
     165
    160166= 1.20 =
    161167
  • league-table-lite/tags/1.21/shared/class-daextletal-shared.php

    r3302012 r3302183  
    7575
    7676        $this->data['slug'] = 'daextletal';
    77         $this->data['ver']  = '1.20';
     77        $this->data['ver']  = '1.21';
    7878        $this->data['dir']  = substr( plugin_dir_path( __FILE__ ), 0, -7 );
    7979        $this->data['url']  = substr( plugin_dir_url( __FILE__ ), 0, -7 );
     
    8686
    8787            // Options Version ----------------------------------------------------------------------------------------.
    88             $this->get( 'slug' ) . '_options_version'    => '2',
     88            $this->get( 'slug' ) . '_options_version'    => '3',
    8989
    9090            // General ------------------------------------------------------------------------------------------------.
  • league-table-lite/trunk/admin/class-daextletal-admin.php

    r3294646 r3302183  
    614614    public static function ac_initialize_options() {
    615615
    616         if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 2 ) {
     616        if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 3 ) {
    617617
    618618            // Assign an instance of Daextletal_Shared.
     
    624624
    625625            // Update options version.
    626             update_option( 'daextletal_options_version', '2' );
     626            update_option( 'daextletal_options_version', '3' );
    627627
    628628        }
  • league-table-lite/trunk/init.php

    r3302012 r3302183  
    33 * Plugin Name: League Table
    44 * Description: Generates tables in your WordPress blog. (Lite version)
    5  * Version: 1.20
     5 * Version: 1.21
    66 * Author: DAEXT
    77 * Author URI: https://daext.com
  • league-table-lite/trunk/readme.txt

    r3302012 r3302183  
    66Tested up to: 6.8.1
    77Requires PHP: 7.2
    8 Stable tag: 1.20
     8Stable tag: 1.21
    99License: GPLv3
    1010
     
    158158== Changelog ==
    159159
     160= 1.21 =
     161
     162*May 28, 2025*
     163
     164* Updated the internal version of the plugin options to support recent changes.
     165
    160166= 1.20 =
    161167
  • league-table-lite/trunk/shared/class-daextletal-shared.php

    r3302012 r3302183  
    7575
    7676        $this->data['slug'] = 'daextletal';
    77         $this->data['ver']  = '1.20';
     77        $this->data['ver']  = '1.21';
    7878        $this->data['dir']  = substr( plugin_dir_path( __FILE__ ), 0, -7 );
    7979        $this->data['url']  = substr( plugin_dir_url( __FILE__ ), 0, -7 );
     
    8686
    8787            // Options Version ----------------------------------------------------------------------------------------.
    88             $this->get( 'slug' ) . '_options_version'    => '2',
     88            $this->get( 'slug' ) . '_options_version'    => '3',
    8989
    9090            // General ------------------------------------------------------------------------------------------------.
Note: See TracChangeset for help on using the changeset viewer.