Plugin Directory

Changeset 3484102


Ignore:
Timestamp:
03/16/2026 05:12:21 PM (2 weeks ago)
Author:
orderdaemon
Message:

Release 1.3.26

Location:
order-daemon
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • order-daemon/tags/1.3.26/README.txt

    r3483206 r3484102  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.3.25
     7Stable tag: 1.3.26
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    153153== Changelog ==
    154154
    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
    162157
    163158== Upgrade Notice ==
    164159
    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 =
     161Fixes 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  
    66 * Plugin URI: https://orderdaemon.com/docs
    77 * Description: Automate WooCommerce order completion with intelligent rule-based processing. The free version includes basic triggers, conditions, and actions.
    8  * Version: 1.3.25
     8 * Version: 1.3.26
    99 * Author: Order Daemon
    1010 * Author URI: https://www.orderdaemon.com
     
    5252// Define plugin version constant, used for database versioning and asset cache-busting.
    5353if ( ! defined( 'ODCM_VERSION' ) ) {
    54     define('ODCM_VERSION', '1.3.25');
     54    define('ODCM_VERSION', '1.3.26');
    5555}
    5656define('ODCM_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • order-daemon/tags/1.3.26/src/Includes/Installer.php

    r3483206 r3484102  
    8181    {
    8282        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        }
    8389
    8490        // Check if update is safe to perform
  • order-daemon/tags/1.3.26/vendor/composer/installed.php

    r3483206 r3484102  
    22    'root' => array(
    33        'name' => 'orderdaemon/completionmanager',
    4         'pretty_version' => 'v1.3.25',
    5         'version' => '1.3.25.0',
    6         'reference' => 'a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',
     4        'pretty_version' => 'v1.3.26',
     5        'version' => '1.3.26.0',
     6        'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'orderdaemon/completionmanager' => array(
    14             'pretty_version' => 'v1.3.25',
    15             'version' => '1.3.25.0',
    16             'reference' => 'a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',
     14            'pretty_version' => 'v1.3.26',
     15            'version' => '1.3.26.0',
     16            'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • order-daemon/trunk/README.txt

    r3483206 r3484102  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.3.25
     7Stable tag: 1.3.26
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    153153== Changelog ==
    154154
    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
    162157
    163158== Upgrade Notice ==
    164159
    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 =
     161Fixes a critical error that could occur on every page load. Update recommended for all users.
  • order-daemon/trunk/order-daemon.php

    r3483206 r3484102  
    66 * Plugin URI: https://orderdaemon.com/docs
    77 * Description: Automate WooCommerce order completion with intelligent rule-based processing. The free version includes basic triggers, conditions, and actions.
    8  * Version: 1.3.25
     8 * Version: 1.3.26
    99 * Author: Order Daemon
    1010 * Author URI: https://www.orderdaemon.com
     
    5252// Define plugin version constant, used for database versioning and asset cache-busting.
    5353if ( ! defined( 'ODCM_VERSION' ) ) {
    54     define('ODCM_VERSION', '1.3.25');
     54    define('ODCM_VERSION', '1.3.26');
    5555}
    5656define('ODCM_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • order-daemon/trunk/src/Includes/Installer.php

    r3483206 r3484102  
    8181    {
    8282        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        }
    8389
    8490        // Check if update is safe to perform
  • order-daemon/trunk/vendor/composer/installed.php

    r3483206 r3484102  
    22    'root' => array(
    33        'name' => 'orderdaemon/completionmanager',
    4         'pretty_version' => 'v1.3.25',
    5         'version' => '1.3.25.0',
    6         'reference' => 'a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',
     4        'pretty_version' => 'v1.3.26',
     5        'version' => '1.3.26.0',
     6        'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'orderdaemon/completionmanager' => array(
    14             'pretty_version' => 'v1.3.25',
    15             'version' => '1.3.25.0',
    16             'reference' => 'a799c07c52b098e21f1a58cf7afe3b3e02ff3a99',
     14            'pretty_version' => 'v1.3.26',
     15            'version' => '1.3.26.0',
     16            'reference' => 'e0bb00641777baf6285f2055a20fb1c56130b469',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.