Changeset 3484102
- Timestamp:
- 03/16/2026 05:12:21 PM (2 weeks ago)
- Location:
- order-daemon
- Files:
-
- 8 edited
- 1 copied
-
tags/1.3.26 (copied) (copied from order-daemon/trunk)
-
tags/1.3.26/README.txt (modified) (2 diffs)
-
tags/1.3.26/order-daemon.php (modified) (2 diffs)
-
tags/1.3.26/src/Includes/Installer.php (modified) (1 diff)
-
tags/1.3.26/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/order-daemon.php (modified) (2 diffs)
-
trunk/src/Includes/Installer.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
order-daemon/tags/1.3.26/README.txt
r3483206 r3484102 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.3.2 57 Stable tag: 1.3.26 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 153 153 == Changelog == 154 154 155 = 1.3.25 = 156 * Fixed: Insight dashboard filter pane display issues 157 * Improved: Log event source attribution in the Insights dashboard 158 * Improved: Translations and i18n string coverage 159 160 = 1.3.24 = 161 * Initial release on WordPress.org 155 = 1.3.26 = 156 * Fixed critical error on page load caused by database safety check running even when no update was needed 162 157 163 158 == Upgrade Notice == 164 159 165 = 1.3.25 = 166 Bug fixes and improvements for the Insights dashboard and a translations update. 167 168 = 1.3.24 = 169 Initial release. 160 = 1.3.26 = 161 Fixes a critical error that could occur on every page load. Update recommended for all users. -
order-daemon/tags/1.3.26/order-daemon.php
r3483206 r3484102 6 6 * Plugin URI: https://orderdaemon.com/docs 7 7 * Description: Automate WooCommerce order completion with intelligent rule-based processing. The free version includes basic triggers, conditions, and actions. 8 * Version: 1.3.2 58 * Version: 1.3.26 9 9 * Author: Order Daemon 10 10 * Author URI: https://www.orderdaemon.com … … 52 52 // Define plugin version constant, used for database versioning and asset cache-busting. 53 53 if ( ! defined( 'ODCM_VERSION' ) ) { 54 define('ODCM_VERSION', '1.3.2 5');54 define('ODCM_VERSION', '1.3.26'); 55 55 } 56 56 define('ODCM_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
order-daemon/tags/1.3.26/src/Includes/Installer.php
r3483206 r3484102 81 81 { 82 82 self::initialize_db_helper(); 83 84 // Skip everything if the DB is already at the current version. 85 $stored_version = self::$db_helper->get_option(self::DB_VERSION_OPTION_KEY, '0.0'); 86 if (version_compare($stored_version, self::DB_VERSION, '>=')) { 87 return; 88 } 83 89 84 90 // Check if update is safe to perform -
order-daemon/tags/1.3.26/vendor/composer/installed.php
r3483206 r3484102 2 2 'root' => array( 3 3 'name' => 'orderdaemon/completionmanager', 4 'pretty_version' => 'v1.3.2 5',5 'version' => '1.3.2 5.0',6 'reference' => ' a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',4 'pretty_version' => 'v1.3.26', 5 'version' => '1.3.26.0', 6 'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'orderdaemon/completionmanager' => array( 14 'pretty_version' => 'v1.3.2 5',15 'version' => '1.3.2 5.0',16 'reference' => ' a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',14 'pretty_version' => 'v1.3.26', 15 'version' => '1.3.26.0', 16 'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
order-daemon/trunk/README.txt
r3483206 r3484102 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.3.2 57 Stable tag: 1.3.26 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 153 153 == Changelog == 154 154 155 = 1.3.25 = 156 * Fixed: Insight dashboard filter pane display issues 157 * Improved: Log event source attribution in the Insights dashboard 158 * Improved: Translations and i18n string coverage 159 160 = 1.3.24 = 161 * Initial release on WordPress.org 155 = 1.3.26 = 156 * Fixed critical error on page load caused by database safety check running even when no update was needed 162 157 163 158 == Upgrade Notice == 164 159 165 = 1.3.25 = 166 Bug fixes and improvements for the Insights dashboard and a translations update. 167 168 = 1.3.24 = 169 Initial release. 160 = 1.3.26 = 161 Fixes a critical error that could occur on every page load. Update recommended for all users. -
order-daemon/trunk/order-daemon.php
r3483206 r3484102 6 6 * Plugin URI: https://orderdaemon.com/docs 7 7 * Description: Automate WooCommerce order completion with intelligent rule-based processing. The free version includes basic triggers, conditions, and actions. 8 * Version: 1.3.2 58 * Version: 1.3.26 9 9 * Author: Order Daemon 10 10 * Author URI: https://www.orderdaemon.com … … 52 52 // Define plugin version constant, used for database versioning and asset cache-busting. 53 53 if ( ! defined( 'ODCM_VERSION' ) ) { 54 define('ODCM_VERSION', '1.3.2 5');54 define('ODCM_VERSION', '1.3.26'); 55 55 } 56 56 define('ODCM_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
order-daemon/trunk/src/Includes/Installer.php
r3483206 r3484102 81 81 { 82 82 self::initialize_db_helper(); 83 84 // Skip everything if the DB is already at the current version. 85 $stored_version = self::$db_helper->get_option(self::DB_VERSION_OPTION_KEY, '0.0'); 86 if (version_compare($stored_version, self::DB_VERSION, '>=')) { 87 return; 88 } 83 89 84 90 // Check if update is safe to perform -
order-daemon/trunk/vendor/composer/installed.php
r3483206 r3484102 2 2 'root' => array( 3 3 'name' => 'orderdaemon/completionmanager', 4 'pretty_version' => 'v1.3.2 5',5 'version' => '1.3.2 5.0',6 'reference' => ' a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',4 'pretty_version' => 'v1.3.26', 5 'version' => '1.3.26.0', 6 'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'orderdaemon/completionmanager' => array( 14 'pretty_version' => 'v1.3.2 5',15 'version' => '1.3.2 5.0',16 'reference' => ' a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',14 'pretty_version' => 'v1.3.26', 15 'version' => '1.3.26.0', 16 'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.