Plugin Directory

Changeset 3343998


Ignore:
Timestamp:
08/13/2025 08:08:52 AM (8 months ago)
Author:
holdbar
Message:

Update to version 1.4.2 from GitHub

Location:
understory
Files:
8 edited
1 copied

Legend:

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

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

    r3343976 r3343998  
    2929    {
    3030        $options = get_option(UNDERSTORY_OPTION_KEY);
     31
     32        if (empty($options['company']['storefronts'])) {
     33            CompanyDataUpdater::update($options['company']['id']);
     34            $options = get_option(UNDERSTORY_OPTION_KEY);
     35        }
     36
    3137        return $options['company']['storefronts'] ?? [];
    3238    }
  • understory/tags/1.4.2/readme.txt

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

    r3343980 r3343998  
    33Plugin Name: Understory
    44Description: Connect your WordPress site with Understory, to easily add your booking widget to posts and pages.
    5 Version: 1.4.1
     5Version: 1.4.2
    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.1');
     20define('UNDERSTORY_PLUGIN_VERSION', '1.4.2');
    2121define('UNDERSTORY_OPTION_KEY', 'understory_options');
    2222define('UNDERSTORY_NONCE_KEY', 'understory_nonce');
  • understory/trunk/CLAUDE.md

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

    r3343976 r3343998  
    2929    {
    3030        $options = get_option(UNDERSTORY_OPTION_KEY);
     31
     32        if (empty($options['company']['storefronts'])) {
     33            CompanyDataUpdater::update($options['company']['id']);
     34            $options = get_option(UNDERSTORY_OPTION_KEY);
     35        }
     36
    3137        return $options['company']['storefronts'] ?? [];
    3238    }
  • understory/trunk/readme.txt

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

    r3343980 r3343998  
    33Plugin Name: Understory
    44Description: Connect your WordPress site with Understory, to easily add your booking widget to posts and pages.
    5 Version: 1.4.1
     5Version: 1.4.2
    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.1');
     20define('UNDERSTORY_PLUGIN_VERSION', '1.4.2');
    2121define('UNDERSTORY_OPTION_KEY', 'understory_options');
    2222define('UNDERSTORY_NONCE_KEY', 'understory_nonce');
Note: See TracChangeset for help on using the changeset viewer.