Changeset 3443056
- Timestamp:
- 01/20/2026 08:56:11 AM (4 weeks ago)
- Location:
- analogwp-templates
- Files:
-
- 14 edited
- 1 copied
-
tags/2.4.1 (copied) (copied from analogwp-templates/trunk)
-
tags/2.4.1/analogwp-templates.php (modified) (3 diffs)
-
tags/2.4.1/inc/Utils.php (modified) (1 diff)
-
tags/2.4.1/inc/elementor/kit/tabs/Theme_Style_Kits.php (modified) (1 diff)
-
tags/2.4.1/languages/ang.pot (modified) (3 diffs)
-
tags/2.4.1/third-party/vendor/autoload.php (modified) (1 diff)
-
tags/2.4.1/third-party/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/2.4.1/third-party/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/analogwp-templates.php (modified) (3 diffs)
-
trunk/inc/Utils.php (modified) (1 diff)
-
trunk/inc/elementor/kit/tabs/Theme_Style_Kits.php (modified) (1 diff)
-
trunk/languages/ang.pot (modified) (3 diffs)
-
trunk/third-party/vendor/autoload.php (modified) (1 diff)
-
trunk/third-party/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/third-party/vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
analogwp-templates/tags/2.4.1/analogwp-templates.php
r3423828 r3443056 4 4 * 5 5 * @package Analog 6 * @copyright 202 5SmallTownDev.6 * @copyright 2026 SmallTownDev. 7 7 * @link https://analogwp.com 8 8 * … … 11 11 * Plugin URI: https://analogwp.com/ 12 12 * 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. 013 * Version: 2.4.1 14 14 * Author: AnalogWP 15 15 * Author URI: https://analogwp.com/ … … 20 20 * Requires PHP: 7.4 21 21 * 22 * Elementor tested up to: 3.3 3.623 * Elementor Pro tested up to: 3.3 3.222 * Elementor tested up to: 3.34.2 23 * Elementor Pro tested up to: 3.34.0 24 24 */ 25 25 26 26 defined( 'ABSPATH' ) || exit; 27 27 28 define( 'ANG_ELEMENTOR_MINIMUM', '3. 20.0' );28 define( 'ANG_ELEMENTOR_MINIMUM', '3.30.0' ); 29 29 define( 'ANG_PHP_MINIMUM', '7.4' ); 30 30 define( 'ANG_WP_MINIMUM', '6.0' ); 31 define( 'ANG_VERSION', '2.4. 0' );31 define( 'ANG_VERSION', '2.4.1' ); 32 32 define( 'ANG_PLUGIN_FILE', __FILE__ ); 33 33 define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) ); -
analogwp-templates/tags/2.4.1/inc/Utils.php
r3423828 r3443056 509 509 if ( $global_kit && $post->ID === $global_kit && $prefix ) { 510 510 /* translators: Global Style Kit post title. */ 511 $title = sprintf( __( 'Global: %s', 'ang' ), $title );511 $title = 'Global: ' . $title; 512 512 } 513 513 -
analogwp-templates/tags/2.4.1/inc/elementor/kit/tabs/Theme_Style_Kits.php
r2859992 r3443056 82 82 } 83 83 84 new Theme_Style_Kits( Kit::class ); 84 add_action( 85 'init', 86 function () { 87 new Theme_Style_Kits( Kit::class ); 85 88 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 ); 93 98 } 94 99 ); -
analogwp-templates/tags/2.4.1/languages/ang.pot
r3423828 r3443056 1 # Copyright (C) 202 5AnalogWP1 # Copyright (C) 2026 AnalogWP 2 2 # This file is distributed under the GPL2. 3 3 msgid "" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 202 5-12-19T15:09:27+00:00\n"12 "POT-Creation-Date: 2026-01-20T08:45:14+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 1834 1834 #. translators: Global Style Kit post title. 1835 1835 #: inc/Utils.php:134 1836 #: inc/Utils.php:5111837 1836 msgid "Global: %s" 1838 1837 msgstr "" -
analogwp-templates/tags/2.4.1/third-party/vendor/autoload.php
r3423828 r3443056 20 20 require_once __DIR__ . '/composer/autoload_real.php'; 21 21 22 return ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff::getLoader();22 return ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d::getLoader(); -
analogwp-templates/tags/2.4.1/third-party/vendor/composer/autoload_real.php
r3423828 r3443056 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff5 class ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 9c2c1a0d22b5aa52162e713b319acbff::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::getInitializer($loader)); 31 31 32 32 $loader->setClassMapAuthoritative(true); -
analogwp-templates/tags/2.4.1/third-party/vendor/composer/autoload_static.php
r3423828 r3443056 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 9c2c1a0d22b5aa52162e713b319acbff7 class ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d 8 8 { 9 9 public static $classMap = array ( … … 25 25 { 26 26 return \Closure::bind(function () use ($loader) { 27 $loader->classMap = ComposerStaticInit 9c2c1a0d22b5aa52162e713b319acbff::$classMap;27 $loader->classMap = ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::$classMap; 28 28 29 29 }, null, ClassLoader::class); -
analogwp-templates/trunk/analogwp-templates.php
r3423828 r3443056 4 4 * 5 5 * @package Analog 6 * @copyright 202 5SmallTownDev.6 * @copyright 2026 SmallTownDev. 7 7 * @link https://analogwp.com 8 8 * … … 11 11 * Plugin URI: https://analogwp.com/ 12 12 * 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. 013 * Version: 2.4.1 14 14 * Author: AnalogWP 15 15 * Author URI: https://analogwp.com/ … … 20 20 * Requires PHP: 7.4 21 21 * 22 * Elementor tested up to: 3.3 3.623 * Elementor Pro tested up to: 3.3 3.222 * Elementor tested up to: 3.34.2 23 * Elementor Pro tested up to: 3.34.0 24 24 */ 25 25 26 26 defined( 'ABSPATH' ) || exit; 27 27 28 define( 'ANG_ELEMENTOR_MINIMUM', '3. 20.0' );28 define( 'ANG_ELEMENTOR_MINIMUM', '3.30.0' ); 29 29 define( 'ANG_PHP_MINIMUM', '7.4' ); 30 30 define( 'ANG_WP_MINIMUM', '6.0' ); 31 define( 'ANG_VERSION', '2.4. 0' );31 define( 'ANG_VERSION', '2.4.1' ); 32 32 define( 'ANG_PLUGIN_FILE', __FILE__ ); 33 33 define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) ); -
analogwp-templates/trunk/inc/Utils.php
r3423828 r3443056 509 509 if ( $global_kit && $post->ID === $global_kit && $prefix ) { 510 510 /* translators: Global Style Kit post title. */ 511 $title = sprintf( __( 'Global: %s', 'ang' ), $title );511 $title = 'Global: ' . $title; 512 512 } 513 513 -
analogwp-templates/trunk/inc/elementor/kit/tabs/Theme_Style_Kits.php
r2859992 r3443056 82 82 } 83 83 84 new Theme_Style_Kits( Kit::class ); 84 add_action( 85 'init', 86 function () { 87 new Theme_Style_Kits( Kit::class ); 85 88 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 ); 93 98 } 94 99 ); -
analogwp-templates/trunk/languages/ang.pot
r3423828 r3443056 1 # Copyright (C) 202 5AnalogWP1 # Copyright (C) 2026 AnalogWP 2 2 # This file is distributed under the GPL2. 3 3 msgid "" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 202 5-12-19T15:09:27+00:00\n"12 "POT-Creation-Date: 2026-01-20T08:45:14+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 1834 1834 #. translators: Global Style Kit post title. 1835 1835 #: inc/Utils.php:134 1836 #: inc/Utils.php:5111837 1836 msgid "Global: %s" 1838 1837 msgstr "" -
analogwp-templates/trunk/third-party/vendor/autoload.php
r3423828 r3443056 20 20 require_once __DIR__ . '/composer/autoload_real.php'; 21 21 22 return ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff::getLoader();22 return ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d::getLoader(); -
analogwp-templates/trunk/third-party/vendor/composer/autoload_real.php
r3423828 r3443056 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff5 class ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitced6d8bb40ec7929bd0c3e7ba62af24d', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 9c2c1a0d22b5aa52162e713b319acbff::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::getInitializer($loader)); 31 31 32 32 $loader->setClassMapAuthoritative(true); -
analogwp-templates/trunk/third-party/vendor/composer/autoload_static.php
r3423828 r3443056 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 9c2c1a0d22b5aa52162e713b319acbff7 class ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d 8 8 { 9 9 public static $classMap = array ( … … 25 25 { 26 26 return \Closure::bind(function () use ($loader) { 27 $loader->classMap = ComposerStaticInit 9c2c1a0d22b5aa52162e713b319acbff::$classMap;27 $loader->classMap = ComposerStaticInitced6d8bb40ec7929bd0c3e7ba62af24d::$classMap; 28 28 29 29 }, null, ClassLoader::class);
Note: See TracChangeset
for help on using the changeset viewer.