Plugin Directory

Changeset 3344444


Ignore:
Timestamp:
08/14/2025 08:26:35 AM (8 months ago)
Author:
holdbar
Message:

Update to version 1.4.3 from GitHub

Location:
understory
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • understory/tags/1.4.3/CLAUDE.md

    r3343998 r3344444  
    180180### Version Management
    181181
    182 Current version: 1.4.2 (defined in both `package.json` and `understory.php`)
     182Current version: 1.4.3 (defined in both `package.json` and `understory.php`)
  • understory/tags/1.4.3/includes/class-understory-settings.php

    r3343998 r3344444  
    3030        $options = get_option(UNDERSTORY_OPTION_KEY);
    3131
    32         if (empty($options['company']['storefronts'])) {
     32        if (empty($options['company']['storefronts']) && !empty($options['company']['id'])) {
    3333            CompanyDataUpdater::update($options['company']['id']);
    3434            $options = get_option(UNDERSTORY_OPTION_KEY);
  • understory/tags/1.4.3/readme.txt

    r3343998 r3344444  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.4.2
     6Stable tag: 1.4.3
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    7676== Changelog ==
    7777
     78= 1.4.3 =
     79* Fix an issue where existing uses of the plugin could fail when auto-updating data from Understory.
     80
    7881= 1.4.2 =
    7982* Fix an issue where existing uses of the plugin could fail if Understory data is stale.
  • understory/tags/1.4.3/understory.php

    r3343998 r3344444  
    33Plugin Name: Understory
    44Description: Connect your WordPress site with Understory, to easily add your booking widget to posts and pages.
    5 Version: 1.4.2
     5Version: 1.4.3
    66Author: Understory
    77Text Domain: understory
     
    1818define('UNDERSTORY_PLUGIN_URL', plugin_dir_url(__FILE__));
    1919define('UNDERSTORY_PLUGIN_SLUG', 'understory');
    20 define('UNDERSTORY_PLUGIN_VERSION', '1.4.2');
     20define('UNDERSTORY_PLUGIN_VERSION', '1.4.3');
    2121define('UNDERSTORY_OPTION_KEY', 'understory_options');
    2222define('UNDERSTORY_NONCE_KEY', 'understory_nonce');
  • understory/trunk/CLAUDE.md

    r3343998 r3344444  
    180180### Version Management
    181181
    182 Current version: 1.4.2 (defined in both `package.json` and `understory.php`)
     182Current version: 1.4.3 (defined in both `package.json` and `understory.php`)
  • understory/trunk/includes/class-understory-settings.php

    r3343998 r3344444  
    3030        $options = get_option(UNDERSTORY_OPTION_KEY);
    3131
    32         if (empty($options['company']['storefronts'])) {
     32        if (empty($options['company']['storefronts']) && !empty($options['company']['id'])) {
    3333            CompanyDataUpdater::update($options['company']['id']);
    3434            $options = get_option(UNDERSTORY_OPTION_KEY);
  • understory/trunk/readme.txt

    r3343998 r3344444  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.4.2
     6Stable tag: 1.4.3
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    7676== Changelog ==
    7777
     78= 1.4.3 =
     79* Fix an issue where existing uses of the plugin could fail when auto-updating data from Understory.
     80
    7881= 1.4.2 =
    7982* Fix an issue where existing uses of the plugin could fail if Understory data is stale.
  • understory/trunk/understory.php

    r3343998 r3344444  
    33Plugin Name: Understory
    44Description: Connect your WordPress site with Understory, to easily add your booking widget to posts and pages.
    5 Version: 1.4.2
     5Version: 1.4.3
    66Author: Understory
    77Text Domain: understory
     
    1818define('UNDERSTORY_PLUGIN_URL', plugin_dir_url(__FILE__));
    1919define('UNDERSTORY_PLUGIN_SLUG', 'understory');
    20 define('UNDERSTORY_PLUGIN_VERSION', '1.4.2');
     20define('UNDERSTORY_PLUGIN_VERSION', '1.4.3');
    2121define('UNDERSTORY_OPTION_KEY', 'understory_options');
    2222define('UNDERSTORY_NONCE_KEY', 'understory_nonce');
Note: See TracChangeset for help on using the changeset viewer.