Plugin Directory

Changeset 3343937


Ignore:
Timestamp:
08/13/2025 06:13:20 AM (6 months ago)
Author:
sendsmaily
Message:

Release 1.2.3, see readme.txt for the changelog.

Location:
smaily-connect
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smaily-connect/tags/1.2.3/includes/smaily-lifecycle.class.php

    r3280976 r3343937  
    3333        register_deactivation_hook( SMAILY_CONNECT_PLUGIN_FILE, array( $this, 'deactivate' ) );
    3434        register_uninstall_hook( SMAILY_CONNECT_PLUGIN_FILE, array( __CLASS__, 'uninstall' ) );
    35         add_action( 'plugins_loaded', array( $this, 'set_locale' ) );
     35        add_action( 'init', array( $this, 'set_locale' ) );
    3636        add_action( 'plugins_loaded', array( $this, 'update' ) );
    3737        add_action( 'upgrader_process_complete', array( $this, 'check_for_update' ), 10, 2 );
  • smaily-connect/tags/1.2.3/readme.txt

    r3340411 r3343937  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: GPLv3 or later
    1010
     
    6161== Changelog ==
    6262
     63## 1.2.3
     64
     65- Load the plugin text domain in the `init` action. This complies with the WordPress 6.7+ plugin development standards and ensures that the plugin translations are loaded correctly.
     66
    6367= 1.2.2 =
    6468
  • smaily-connect/tags/1.2.3/smaily-connect.php

    r3340411 r3343937  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.2.2
     14 * Version:           1.2.3
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2.2' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2.3' );
    2626
    2727/**
  • smaily-connect/trunk/includes/smaily-lifecycle.class.php

    r3280976 r3343937  
    3333        register_deactivation_hook( SMAILY_CONNECT_PLUGIN_FILE, array( $this, 'deactivate' ) );
    3434        register_uninstall_hook( SMAILY_CONNECT_PLUGIN_FILE, array( __CLASS__, 'uninstall' ) );
    35         add_action( 'plugins_loaded', array( $this, 'set_locale' ) );
     35        add_action( 'init', array( $this, 'set_locale' ) );
    3636        add_action( 'plugins_loaded', array( $this, 'update' ) );
    3737        add_action( 'upgrader_process_complete', array( $this, 'check_for_update' ), 10, 2 );
  • smaily-connect/trunk/readme.txt

    r3340411 r3343937  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: GPLv3 or later
    1010
     
    6161== Changelog ==
    6262
     63## 1.2.3
     64
     65- Load the plugin text domain in the `init` action. This complies with the WordPress 6.7+ plugin development standards and ensures that the plugin translations are loaded correctly.
     66
    6367= 1.2.2 =
    6468
  • smaily-connect/trunk/smaily-connect.php

    r3340411 r3343937  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.2.2
     14 * Version:           1.2.3
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2.2' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2.3' );
    2626
    2727/**
Note: See TracChangeset for help on using the changeset viewer.