Changeset 3343937
- Timestamp:
- 08/13/2025 06:13:20 AM (6 months ago)
- Location:
- smaily-connect
- Files:
-
- 8 edited
- 1 copied
-
assets/banner-1544x500.jpg (modified) (previous)
-
assets/banner-772x250.jpg (modified) (previous)
-
tags/1.2.3 (copied) (copied from smaily-connect/trunk)
-
tags/1.2.3/includes/smaily-lifecycle.class.php (modified) (1 diff)
-
tags/1.2.3/readme.txt (modified) (2 diffs)
-
tags/1.2.3/smaily-connect.php (modified) (2 diffs)
-
trunk/includes/smaily-lifecycle.class.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smaily-connect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smaily-connect/tags/1.2.3/includes/smaily-lifecycle.class.php
r3280976 r3343937 33 33 register_deactivation_hook( SMAILY_CONNECT_PLUGIN_FILE, array( $this, 'deactivate' ) ); 34 34 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' ) ); 36 36 add_action( 'plugins_loaded', array( $this, 'update' ) ); 37 37 add_action( 'upgrader_process_complete', array( $this, 'check_for_update' ), 10, 2 ); -
smaily-connect/tags/1.2.3/readme.txt
r3340411 r3343937 6 6 Tested up to: 6.8 7 7 WC tested up to: 9.6.1 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 License: GPLv3 or later 10 10 … … 61 61 == Changelog == 62 62 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 63 67 = 1.2.2 = 64 68 -
smaily-connect/tags/1.2.3/smaily-connect.php
r3340411 r3343937 12 12 * Plugin URI: https://smaily.com/help/user-manual/smaily-connect-for-wordpress/ 13 13 * Text Domain: smaily-connect 14 * Version: 1.2. 214 * Version: 1.2.3 15 15 */ 16 16 … … 23 23 * Current plugin version. 24 24 */ 25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2. 2' );25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2.3' ); 26 26 27 27 /** -
smaily-connect/trunk/includes/smaily-lifecycle.class.php
r3280976 r3343937 33 33 register_deactivation_hook( SMAILY_CONNECT_PLUGIN_FILE, array( $this, 'deactivate' ) ); 34 34 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' ) ); 36 36 add_action( 'plugins_loaded', array( $this, 'update' ) ); 37 37 add_action( 'upgrader_process_complete', array( $this, 'check_for_update' ), 10, 2 ); -
smaily-connect/trunk/readme.txt
r3340411 r3343937 6 6 Tested up to: 6.8 7 7 WC tested up to: 9.6.1 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 License: GPLv3 or later 10 10 … … 61 61 == Changelog == 62 62 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 63 67 = 1.2.2 = 64 68 -
smaily-connect/trunk/smaily-connect.php
r3340411 r3343937 12 12 * Plugin URI: https://smaily.com/help/user-manual/smaily-connect-for-wordpress/ 13 13 * Text Domain: smaily-connect 14 * Version: 1.2. 214 * Version: 1.2.3 15 15 */ 16 16 … … 23 23 * Current plugin version. 24 24 */ 25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2. 2' );25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.2.3' ); 26 26 27 27 /**
Note: See TracChangeset
for help on using the changeset viewer.