Plugin Directory

Changeset 3198264


Ignore:
Timestamp:
11/27/2024 03:14:17 PM (16 months ago)
Author:
getbowtied
Message:

Update to version 4.1.8 from GitHub

Location:
shopkeeper-extender
Files:
304 added
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • shopkeeper-extender/tags/4.1.8/README.txt

    r3198197 r3198264  
    44Requires at least: 6.0
    55Tested up to: 6.7.1
    6 Stable tag: 4.1.7
     6Stable tag: 4.1.8
    77Requires PHP: 7.4.1
    88License: GPLv2 or later
     
    138138== Changelog ==
    139139
    140 = 4.1.7 =
     140= 4.1.8 =
    141141- Recheck Compatibility with WordPress 6.7.1
    142142
  • shopkeeper-extender/tags/4.1.8/dashboard/index.php

    r3198197 r3198264  
    376376
    377377            // Get the current URL
    378             $current_url = (isset($_SERVER['HTTPS']) ? "https://" : "http://") . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
     378            $current_url = (isset($_SERVER['HTTPS']) ? "https://" : "http://") . $_SERVER['HTTP_HOST'];
    379379
    380380            // Modify the user agent header
  • shopkeeper-extender/tags/4.1.8/shopkeeper-extender.php

    r3198197 r3198264  
    55 * Plugin URI:              https://shopkeeper.wp-theme.design/
    66 * Description:             Extends the functionality of Shopkeeper with theme specific features.
    7  * Version:                 4.1.7
     7 * Version:                 4.1.8
    88 * Author:                  Get Bowtied
    99 * Author URI:              https://getbowtied.com
     
    2020    exit;
    2121} // Exit if accessed directly
     22
     23require 'core/updater/plugin-update-checker.php';
     24$myUpdateChecker = Puc_v4_Factory::buildUpdateChecker(
     25    'https://raw.githubusercontent.com/getbowtied/shopkeeper-extender/master/core/updater/assets/plugin.json',
     26    __FILE__,
     27    'shopkeeper-extender'
     28);
    2229
    2330if ( ! class_exists( 'ShopkeeperExtender' ) ) :
  • shopkeeper-extender/trunk/README.txt

    r3198197 r3198264  
    44Requires at least: 6.0
    55Tested up to: 6.7.1
    6 Stable tag: 4.1.7
     6Stable tag: 4.1.8
    77Requires PHP: 7.4.1
    88License: GPLv2 or later
     
    138138== Changelog ==
    139139
    140 = 4.1.7 =
     140= 4.1.8 =
    141141- Recheck Compatibility with WordPress 6.7.1
    142142
  • shopkeeper-extender/trunk/dashboard/index.php

    r3198197 r3198264  
    376376
    377377            // Get the current URL
    378             $current_url = (isset($_SERVER['HTTPS']) ? "https://" : "http://") . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
     378            $current_url = (isset($_SERVER['HTTPS']) ? "https://" : "http://") . $_SERVER['HTTP_HOST'];
    379379
    380380            // Modify the user agent header
  • shopkeeper-extender/trunk/shopkeeper-extender.php

    r3198197 r3198264  
    55 * Plugin URI:              https://shopkeeper.wp-theme.design/
    66 * Description:             Extends the functionality of Shopkeeper with theme specific features.
    7  * Version:                 4.1.7
     7 * Version:                 4.1.8
    88 * Author:                  Get Bowtied
    99 * Author URI:              https://getbowtied.com
     
    2020    exit;
    2121} // Exit if accessed directly
     22
     23require 'core/updater/plugin-update-checker.php';
     24$myUpdateChecker = Puc_v4_Factory::buildUpdateChecker(
     25    'https://raw.githubusercontent.com/getbowtied/shopkeeper-extender/master/core/updater/assets/plugin.json',
     26    __FILE__,
     27    'shopkeeper-extender'
     28);
    2229
    2330if ( ! class_exists( 'ShopkeeperExtender' ) ) :
Note: See TracChangeset for help on using the changeset viewer.