Changeset 3272589
- Timestamp:
- 04/14/2025 03:19:44 PM (11 months ago)
- Location:
- analogwp-library
- Files:
-
- 10 edited
- 1 copied
-
tags/1.2.0 (copied) (copied from analogwp-library/trunk)
-
tags/1.2.0/analogwp-library.php (modified) (3 diffs)
-
tags/1.2.0/inc/class-utils.php (modified) (1 diff)
-
tags/1.2.0/languages/analogwp-library.pot (modified) (2 diffs)
-
tags/1.2.0/vendor/autoload.php (modified) (1 diff)
-
tags/1.2.0/vendor/composer/InstalledVersions.php (modified) (3 diffs)
-
trunk/analogwp-library.php (modified) (3 diffs)
-
trunk/inc/class-utils.php (modified) (1 diff)
-
trunk/languages/analogwp-library.pot (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
analogwp-library/tags/1.2.0/analogwp-library.php
r3257810 r3272589 11 11 * Plugin URI: https://analogwp.com/custom-library-for-elementor 12 12 * Description: Custom Library for Elementor creates the foundation for a design framework that will help you create better, more consistent websites with Elementor. 13 * Version: 1. 1.013 * Version: 1.2.0 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.28. 023 * Elementor Pro tested up to: 3.28. 022 * Elementor tested up to: 3.28.3 23 * Elementor Pro tested up to: 3.28.2 24 24 */ 25 25 … … 29 29 define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' ); 30 30 define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' ); 31 define( 'AGWP_LIBRARY_VERSION', '1. 1.0' );31 define( 'AGWP_LIBRARY_VERSION', '1.2.0' ); 32 32 define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ ); 33 33 define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) ); -
analogwp-library/tags/1.2.0/inc/class-utils.php
r3226872 r3272589 168 168 169 169 $css .= ".elementor-add-template-button { 170 display: {$hide_elementor_library} ;170 display: {$hide_elementor_library} !important; 171 171 }"; 172 172 -
analogwp-library/tags/1.2.0/languages/analogwp-library.pot
r3257810 r3272589 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: analogwp-library 1. 1.0\n"6 "Project-Id-Version: analogwp-library 1.2.0\n" 7 7 "Report-Msgid-Bugs-To: AnalogWP <EMAIL>\n" 8 8 "MIME-Version: 1.0\n" … … 10 10 "Content-Type: text/plain; charset=iso-8859-1\n" 11 11 "Plural-Forms: nplurals=2; plural=(n!=1);\n" 12 "POT-Creation-Date: 2025-0 3-18T12:34:27.869Z\n"12 "POT-Creation-Date: 2025-04-14T15:19:29.870Z\n" 13 13 "PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n" 14 14 "Last-Translator: AnalogWP <EMAIL>\n" -
analogwp-library/tags/1.2.0/vendor/autoload.php
r3226883 r3272589 15 15 } 16 16 } 17 trigger_error( 18 $err, 19 E_USER_ERROR 20 ); 17 throw new RuntimeException($err); 21 18 } 22 19 -
analogwp-library/tags/1.2.0/vendor/composer/InstalledVersions.php
r3226883 r3272589 27 27 class InstalledVersions 28 28 { 29 /** 30 * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to 31 * @internal 32 */ 33 private static $selfDir = null; 34 29 35 /** 30 36 * @var mixed[]|null … … 324 330 325 331 /** 332 * @return string 333 */ 334 private static function getSelfDir() 335 { 336 if (self::$selfDir === null) { 337 self::$selfDir = strtr(__DIR__, '\\', '/'); 338 } 339 340 return self::$selfDir; 341 } 342 343 /** 326 344 * @return array[] 327 345 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> … … 337 355 338 356 if (self::$canGetVendors) { 339 $selfDir = s trtr(__DIR__, '\\', '/');357 $selfDir = self::getSelfDir(); 340 358 foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 341 359 $vendorDir = strtr($vendorDir, '\\', '/'); -
analogwp-library/trunk/analogwp-library.php
r3257810 r3272589 11 11 * Plugin URI: https://analogwp.com/custom-library-for-elementor 12 12 * Description: Custom Library for Elementor creates the foundation for a design framework that will help you create better, more consistent websites with Elementor. 13 * Version: 1. 1.013 * Version: 1.2.0 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.28. 023 * Elementor Pro tested up to: 3.28. 022 * Elementor tested up to: 3.28.3 23 * Elementor Pro tested up to: 3.28.2 24 24 */ 25 25 … … 29 29 define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' ); 30 30 define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' ); 31 define( 'AGWP_LIBRARY_VERSION', '1. 1.0' );31 define( 'AGWP_LIBRARY_VERSION', '1.2.0' ); 32 32 define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ ); 33 33 define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) ); -
analogwp-library/trunk/inc/class-utils.php
r3226872 r3272589 168 168 169 169 $css .= ".elementor-add-template-button { 170 display: {$hide_elementor_library} ;170 display: {$hide_elementor_library} !important; 171 171 }"; 172 172 -
analogwp-library/trunk/languages/analogwp-library.pot
r3257810 r3272589 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: analogwp-library 1. 1.0\n"6 "Project-Id-Version: analogwp-library 1.2.0\n" 7 7 "Report-Msgid-Bugs-To: AnalogWP <EMAIL>\n" 8 8 "MIME-Version: 1.0\n" … … 10 10 "Content-Type: text/plain; charset=iso-8859-1\n" 11 11 "Plural-Forms: nplurals=2; plural=(n!=1);\n" 12 "POT-Creation-Date: 2025-0 3-18T12:34:27.869Z\n"12 "POT-Creation-Date: 2025-04-14T15:19:29.870Z\n" 13 13 "PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n" 14 14 "Last-Translator: AnalogWP <EMAIL>\n" -
analogwp-library/trunk/vendor/autoload.php
r3226883 r3272589 15 15 } 16 16 } 17 trigger_error( 18 $err, 19 E_USER_ERROR 20 ); 17 throw new RuntimeException($err); 21 18 } 22 19 -
analogwp-library/trunk/vendor/composer/InstalledVersions.php
r3226883 r3272589 27 27 class InstalledVersions 28 28 { 29 /** 30 * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to 31 * @internal 32 */ 33 private static $selfDir = null; 34 29 35 /** 30 36 * @var mixed[]|null … … 324 330 325 331 /** 332 * @return string 333 */ 334 private static function getSelfDir() 335 { 336 if (self::$selfDir === null) { 337 self::$selfDir = strtr(__DIR__, '\\', '/'); 338 } 339 340 return self::$selfDir; 341 } 342 343 /** 326 344 * @return array[] 327 345 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> … … 337 355 338 356 if (self::$canGetVendors) { 339 $selfDir = s trtr(__DIR__, '\\', '/');357 $selfDir = self::getSelfDir(); 340 358 foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 341 359 $vendorDir = strtr($vendorDir, '\\', '/');
Note: See TracChangeset
for help on using the changeset viewer.