Plugin Directory

Changeset 3465991


Ignore:
Timestamp:
02/20/2026 06:35:35 PM (6 weeks ago)
Author:
Rustaurius
Message:

v1.0.4 released and tagged

Location:
affiliate-ai-lite
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • affiliate-ai-lite/tags/1.0.4/affiliate-ai-lite.php

    r3448247 r3465991  
    44 * Plugin URI: https://www.affi.ai/
    55 * Description: Amazon affiliate plugin that lets you add product boxes with your affiliate links to any page or post.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Requires at least: 6.0
    88 * Author: AFFI PLUGIN
     
    2424define( 'AFFIAI_PLUGIN_OPTION_PREFIX', 'affiai' );
    2525define( 'AFFIAI_PLUGIN_SIT', 'https://www.affi.ai/' );
    26 define( 'AFFIAI_PLUGIN_VER', '1.0.3' );
     26define( 'AFFIAI_PLUGIN_VER', '1.0.4' );
    2727define( 'AFFIAI_PLUGIN_PROD_ID', 'pid' );
    2828define( 'AFFIAI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • affiliate-ai-lite/tags/1.0.4/includes/afx-config.php

    r3331716 r3465991  
    4747
    4848        // Register settings.
    49         self::register_setting();
     49        add_action( 'init', array( __CLASS__, 'register_setting' ), 1 );
    5050
    5151        // Create database on plugin activation.
     
    331331     * @return void
    332332     */
    333     protected static function register_setting() {
     333    public static function register_setting() {
    334334       
    335335        // Array of supported merchants
     
    22112211
    22122212}
    2213 ?>
  • affiliate-ai-lite/tags/1.0.4/readme.txt

    r3448247 r3465991  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 1.0.3
     6Stable tag: 1.0.4
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    146146== Changelog ==
    147147
     148= 1.0.4 (2026-02-20) =
     149- Updates to correct/remove the load textdomain notices.
     150
    148151= 1.0.3 (2026-01-27) =
    149152- Plugin now makes use of Amazon's OffersV2 resource.
  • affiliate-ai-lite/trunk/affiliate-ai-lite.php

    r3448247 r3465991  
    44 * Plugin URI: https://www.affi.ai/
    55 * Description: Amazon affiliate plugin that lets you add product boxes with your affiliate links to any page or post.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Requires at least: 6.0
    88 * Author: AFFI PLUGIN
     
    2424define( 'AFFIAI_PLUGIN_OPTION_PREFIX', 'affiai' );
    2525define( 'AFFIAI_PLUGIN_SIT', 'https://www.affi.ai/' );
    26 define( 'AFFIAI_PLUGIN_VER', '1.0.3' );
     26define( 'AFFIAI_PLUGIN_VER', '1.0.4' );
    2727define( 'AFFIAI_PLUGIN_PROD_ID', 'pid' );
    2828define( 'AFFIAI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • affiliate-ai-lite/trunk/includes/afx-config.php

    r3331716 r3465991  
    4747
    4848        // Register settings.
    49         self::register_setting();
     49        add_action( 'init', array( __CLASS__, 'register_setting' ), 1 );
    5050
    5151        // Create database on plugin activation.
     
    331331     * @return void
    332332     */
    333     protected static function register_setting() {
     333    public static function register_setting() {
    334334       
    335335        // Array of supported merchants
     
    22112211
    22122212}
    2213 ?>
  • affiliate-ai-lite/trunk/readme.txt

    r3448247 r3465991  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 1.0.3
     6Stable tag: 1.0.4
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    146146== Changelog ==
    147147
     148= 1.0.4 (2026-02-20) =
     149- Updates to correct/remove the load textdomain notices.
     150
    148151= 1.0.3 (2026-01-27) =
    149152- Plugin now makes use of Amazon's OffersV2 resource.
Note: See TracChangeset for help on using the changeset viewer.