Plugin Directory

Changeset 3443056


Ignore:
Timestamp:
01/20/2026 08:56:11 AM (4 weeks ago)
Author:
analogwp
Message:

Update to version 2.4.1 from GitHub

Location:
analogwp-templates
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • analogwp-templates/tags/2.4.1/analogwp-templates.php

    r3423828 r3443056  
    44 *
    55 * @package     Analog
    6  * @copyright   2025 SmallTownDev.
     6 * @copyright   2026 SmallTownDev.
    77 * @link        https://analogwp.com
    88 *
     
    1111 * Plugin URI:  https://analogwp.com/
    1212 * Description: Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.
    13  * Version:     2.4.0
     13 * Version:     2.4.1
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    2020 * Requires PHP: 7.4
    2121 *
    22  * Elementor tested up to: 3.33.6
    23  * Elementor Pro tested up to: 3.33.2
     22 * Elementor tested up to: 3.34.2
     23 * Elementor Pro tested up to: 3.34.0
    2424 */
    2525
    2626defined( 'ABSPATH' ) || exit;
    2727
    28 define( 'ANG_ELEMENTOR_MINIMUM', '3.20.0' );
     28define( 'ANG_ELEMENTOR_MINIMUM', '3.30.0' );
    2929define( 'ANG_PHP_MINIMUM', '7.4' );
    3030define( 'ANG_WP_MINIMUM', '6.0' );
    31 define( 'ANG_VERSION', '2.4.0' );
     31define( 'ANG_VERSION', '2.4.1' );
    3232define( 'ANG_PLUGIN_FILE', __FILE__ );
    3333define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) );
  • analogwp-templates/tags/2.4.1/inc/Utils.php

    r3423828 r3443056  
    509509            if ( $global_kit && $post->ID === $global_kit && $prefix ) {
    510510                /* translators: Global Style Kit post title. */
    511                 $title = sprintf( __( 'Global: %s', 'ang' ), $title );
     511                $title = 'Global: ' . $title;
    512512            }
    513513
  • analogwp-templates/tags/2.4.1/inc/elementor/kit/tabs/Theme_Style_Kits.php

    r2859992 r3443056  
    8282}
    8383
    84 new Theme_Style_Kits( Kit::class );
     84add_action(
     85    'init',
     86    function () {
     87        new Theme_Style_Kits( Kit::class );
    8588
    86 /**
    87  * Fires on tabs registering.
    88  */
    89 add_action(
    90     'elementor/kit/register_tabs',
    91     function( $kit ) {
    92         $kit->register_tab( 'theme-style-kits', Theme_Style_Kits::class );
     89        /**
     90        * Fires on tabs registering.
     91        */
     92        add_action(
     93            'elementor/kit/register_tabs',
     94            function ( $kit ) {
     95                $kit->register_tab( 'theme-style-kits', Theme_Style_Kits::class );
     96            }
     97        );
    9398    }
    9499);
  • analogwp-templates/tags/2.4.1/languages/ang.pot

    r3423828 r3443056  
    1 # Copyright (C) 2025 AnalogWP
     1# Copyright (C) 2026 AnalogWP
    22# This file is distributed under the GPL2.
    33msgid ""
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-12-19T15:09:27+00:00\n"
     12"POT-Creation-Date: 2026-01-20T08:45:14+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    18341834#. translators: Global Style Kit post title.
    18351835#: inc/Utils.php:134
    1836 #: inc/Utils.php:511
    18371836msgid "Global: %s"
    18381837msgstr ""
  • analogwp-templates/tags/2.4.1/third-party/vendor/autoload.php

    r3423828 r3443056  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff::getLoader();
     22return ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d::getLoader();
  • analogwp-templates/tags/2.4.1/third-party/vendor/composer/autoload_real.php

    r3423828 r3443056  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff
     5class ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
  • analogwp-templates/tags/2.4.1/third-party/vendor/composer/autoload_static.php

    r3423828 r3443056  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff
     7class ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d
    88{
    99    public static $classMap = array (
     
    2525    {
    2626        return \Closure::bind(function () use ($loader) {
    27             $loader->classMap = ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::$classMap;
     27            $loader->classMap = ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::$classMap;
    2828
    2929        }, null, ClassLoader::class);
  • analogwp-templates/trunk/analogwp-templates.php

    r3423828 r3443056  
    44 *
    55 * @package     Analog
    6  * @copyright   2025 SmallTownDev.
     6 * @copyright   2026 SmallTownDev.
    77 * @link        https://analogwp.com
    88 *
     
    1111 * Plugin URI:  https://analogwp.com/
    1212 * Description: Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.
    13  * Version:     2.4.0
     13 * Version:     2.4.1
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    2020 * Requires PHP: 7.4
    2121 *
    22  * Elementor tested up to: 3.33.6
    23  * Elementor Pro tested up to: 3.33.2
     22 * Elementor tested up to: 3.34.2
     23 * Elementor Pro tested up to: 3.34.0
    2424 */
    2525
    2626defined( 'ABSPATH' ) || exit;
    2727
    28 define( 'ANG_ELEMENTOR_MINIMUM', '3.20.0' );
     28define( 'ANG_ELEMENTOR_MINIMUM', '3.30.0' );
    2929define( 'ANG_PHP_MINIMUM', '7.4' );
    3030define( 'ANG_WP_MINIMUM', '6.0' );
    31 define( 'ANG_VERSION', '2.4.0' );
     31define( 'ANG_VERSION', '2.4.1' );
    3232define( 'ANG_PLUGIN_FILE', __FILE__ );
    3333define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) );
  • analogwp-templates/trunk/inc/Utils.php

    r3423828 r3443056  
    509509            if ( $global_kit && $post->ID === $global_kit && $prefix ) {
    510510                /* translators: Global Style Kit post title. */
    511                 $title = sprintf( __( 'Global: %s', 'ang' ), $title );
     511                $title = 'Global: ' . $title;
    512512            }
    513513
  • analogwp-templates/trunk/inc/elementor/kit/tabs/Theme_Style_Kits.php

    r2859992 r3443056  
    8282}
    8383
    84 new Theme_Style_Kits( Kit::class );
     84add_action(
     85    'init',
     86    function () {
     87        new Theme_Style_Kits( Kit::class );
    8588
    86 /**
    87  * Fires on tabs registering.
    88  */
    89 add_action(
    90     'elementor/kit/register_tabs',
    91     function( $kit ) {
    92         $kit->register_tab( 'theme-style-kits', Theme_Style_Kits::class );
     89        /**
     90        * Fires on tabs registering.
     91        */
     92        add_action(
     93            'elementor/kit/register_tabs',
     94            function ( $kit ) {
     95                $kit->register_tab( 'theme-style-kits', Theme_Style_Kits::class );
     96            }
     97        );
    9398    }
    9499);
  • analogwp-templates/trunk/languages/ang.pot

    r3423828 r3443056  
    1 # Copyright (C) 2025 AnalogWP
     1# Copyright (C) 2026 AnalogWP
    22# This file is distributed under the GPL2.
    33msgid ""
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-12-19T15:09:27+00:00\n"
     12"POT-Creation-Date: 2026-01-20T08:45:14+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    18341834#. translators: Global Style Kit post title.
    18351835#: inc/Utils.php:134
    1836 #: inc/Utils.php:511
    18371836msgid "Global: %s"
    18381837msgstr ""
  • analogwp-templates/trunk/third-party/vendor/autoload.php

    r3423828 r3443056  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff::getLoader();
     22return ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d::getLoader();
  • analogwp-templates/trunk/third-party/vendor/composer/autoload_real.php

    r3423828 r3443056  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff
     5class ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
  • analogwp-templates/trunk/third-party/vendor/composer/autoload_static.php

    r3423828 r3443056  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff
     7class ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d
    88{
    99    public static $classMap = array (
     
    2525    {
    2626        return \Closure::bind(function () use ($loader) {
    27             $loader->classMap = ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::$classMap;
     27            $loader->classMap = ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::$classMap;
    2828
    2929        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.