Changeset 3389884
- Timestamp:
- 11/04/2025 06:22:52 PM (4 months ago)
- Location:
- myd-delivery
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.5 (copied) (copied from myd-delivery/trunk)
-
tags/1.3.5/README.txt (modified) (2 diffs)
-
tags/1.3.5/includes/telemetry/class-telemetry-fallback.php (modified) (1 diff)
-
tags/1.3.5/myd-delivery.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/telemetry/class-telemetry-fallback.php (modified) (1 diff)
-
trunk/myd-delivery.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
myd-delivery/tags/1.3.5/README.txt
r3389318 r3389884 5 5 Requires at least: 5.5 6 6 Tested up to: 6.8 7 Stable tag: 1.3. 47 Stable tag: 1.3.5 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0+ … … 76 76 == Changelog == 77 77 78 = 1.3.5 = 79 * Changed: code improvements. 80 78 81 = 1.3.4 = 79 82 * Changed: code improvements. -
myd-delivery/tags/1.3.5/includes/telemetry/class-telemetry-fallback.php
r3389318 r3389884 16 16 */ 17 17 public static function ensure_defaults() { 18 if ( \get_option( 'myddelivery_install_id', null ) === null ) { 18 $install_id = \get_option( 'myddelivery_install_id', null ); 19 if ( empty( $install_id ) || ! \wp_is_uuid ( $install_id ) ) { 19 20 \update_option( 'myddelivery_install_id', \wp_generate_uuid4() ); 20 21 } 21 22 22 if ( \get_option( 'myddelivery_install_started_at', null ) === null ) { 23 $install_started_at = \get_option( 'myddelivery_install_started_at', null ); 24 if ( empty( $install_started_at ) || ! is_string( $install_started_at ) ) { 23 25 \update_option( 'myddelivery_install_started_at', \gmdate( 'Y-m-d\TH:i:s\Z' ) ); 24 26 } 25 27 26 if ( \get_option( 'myddelivery_first_plugin_version', null ) === null ) { 28 $first_plugin_version = \get_option( 'myddelivery_first_plugin_version', null ); 29 if ( empty( $first_plugin_version ) || ! is_string( $first_plugin_version ) ) { 27 30 \update_option( 'myddelivery_first_plugin_version', defined( 'MYDDELIVERY_VERSION' ) ? MYDDELIVERY_VERSION : 'unknown' ); 28 31 } -
myd-delivery/tags/1.3.5/myd-delivery.php
r3389318 r3389884 6 6 * Author: EduardoVillao.me 7 7 * Author URI: https://eduardovillao.me/ 8 * Version: 1.3. 48 * Version: 1.3.5 9 9 * Requires PHP: 7.4 10 10 * Requires at least: 5.5 … … 26 26 define( 'MYDDELIVERY_BASENAME', plugin_basename( __FILE__ ) ); 27 27 define( 'MYDDELIVERY_DIRNAME', plugin_basename( __DIR__ ) ); 28 define( 'MYDDELIVERY_VERSION', '1.3. 4' );28 define( 'MYDDELIVERY_VERSION', '1.3.5' ); 29 29 define( 'MYDDELIVERY_MIN_PHP_VERSION', '7.4' ); 30 30 define( 'MYDDELIVERY_MIN_WP_VERSION', '5.5' ); -
myd-delivery/trunk/README.txt
r3389318 r3389884 5 5 Requires at least: 5.5 6 6 Tested up to: 6.8 7 Stable tag: 1.3. 47 Stable tag: 1.3.5 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0+ … … 76 76 == Changelog == 77 77 78 = 1.3.5 = 79 * Changed: code improvements. 80 78 81 = 1.3.4 = 79 82 * Changed: code improvements. -
myd-delivery/trunk/includes/telemetry/class-telemetry-fallback.php
r3389318 r3389884 16 16 */ 17 17 public static function ensure_defaults() { 18 if ( \get_option( 'myddelivery_install_id', null ) === null ) { 18 $install_id = \get_option( 'myddelivery_install_id', null ); 19 if ( empty( $install_id ) || ! \wp_is_uuid ( $install_id ) ) { 19 20 \update_option( 'myddelivery_install_id', \wp_generate_uuid4() ); 20 21 } 21 22 22 if ( \get_option( 'myddelivery_install_started_at', null ) === null ) { 23 $install_started_at = \get_option( 'myddelivery_install_started_at', null ); 24 if ( empty( $install_started_at ) || ! is_string( $install_started_at ) ) { 23 25 \update_option( 'myddelivery_install_started_at', \gmdate( 'Y-m-d\TH:i:s\Z' ) ); 24 26 } 25 27 26 if ( \get_option( 'myddelivery_first_plugin_version', null ) === null ) { 28 $first_plugin_version = \get_option( 'myddelivery_first_plugin_version', null ); 29 if ( empty( $first_plugin_version ) || ! is_string( $first_plugin_version ) ) { 27 30 \update_option( 'myddelivery_first_plugin_version', defined( 'MYDDELIVERY_VERSION' ) ? MYDDELIVERY_VERSION : 'unknown' ); 28 31 } -
myd-delivery/trunk/myd-delivery.php
r3389318 r3389884 6 6 * Author: EduardoVillao.me 7 7 * Author URI: https://eduardovillao.me/ 8 * Version: 1.3. 48 * Version: 1.3.5 9 9 * Requires PHP: 7.4 10 10 * Requires at least: 5.5 … … 26 26 define( 'MYDDELIVERY_BASENAME', plugin_basename( __FILE__ ) ); 27 27 define( 'MYDDELIVERY_DIRNAME', plugin_basename( __DIR__ ) ); 28 define( 'MYDDELIVERY_VERSION', '1.3. 4' );28 define( 'MYDDELIVERY_VERSION', '1.3.5' ); 29 29 define( 'MYDDELIVERY_MIN_PHP_VERSION', '7.4' ); 30 30 define( 'MYDDELIVERY_MIN_WP_VERSION', '5.5' );
Note: See TracChangeset
for help on using the changeset viewer.