Plugin Directory

Changeset 3272589


Ignore:
Timestamp:
04/14/2025 03:19:44 PM (11 months ago)
Author:
analogwp
Message:

Update to version 1.2.0 from GitHub

Location:
analogwp-library
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • analogwp-library/tags/1.2.0/analogwp-library.php

    r3257810 r3272589  
    1111 * Plugin URI:  https://analogwp.com/custom-library-for-elementor
    1212 * 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.0
     13 * Version:     1.2.0
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    2020 * Requires PHP: 7.4
    2121 *
    22  * Elementor tested up to: 3.28.0
    23  * Elementor Pro tested up to: 3.28.0
     22 * Elementor tested up to: 3.28.3
     23 * Elementor Pro tested up to: 3.28.2
    2424 */
    2525
     
    2929define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' );
    3030define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' );
    31 define( 'AGWP_LIBRARY_VERSION', '1.1.0' );
     31define( 'AGWP_LIBRARY_VERSION', '1.2.0' );
    3232define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ );
    3333define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) );
  • analogwp-library/tags/1.2.0/inc/class-utils.php

    r3226872 r3272589  
    168168
    169169        $css .= ".elementor-add-template-button {
    170                     display: {$hide_elementor_library};
     170                    display: {$hide_elementor_library} !important;
    171171                }";
    172172
  • analogwp-library/tags/1.2.0/languages/analogwp-library.pot

    r3257810 r3272589  
    44msgid ""
    55msgstr ""
    6 "Project-Id-Version: analogwp-library 1.1.0\n"
     6"Project-Id-Version: analogwp-library 1.2.0\n"
    77"Report-Msgid-Bugs-To: AnalogWP <EMAIL>\n"
    88"MIME-Version: 1.0\n"
     
    1010"Content-Type: text/plain; charset=iso-8859-1\n"
    1111"Plural-Forms: nplurals=2; plural=(n!=1);\n"
    12 "POT-Creation-Date: 2025-03-18T12:34:27.869Z\n"
     12"POT-Creation-Date: 2025-04-14T15:19:29.870Z\n"
    1313"PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n"
    1414"Last-Translator: AnalogWP <EMAIL>\n"
  • analogwp-library/tags/1.2.0/vendor/autoload.php

    r3226883 r3272589  
    1515        }
    1616    }
    17     trigger_error(
    18         $err,
    19         E_USER_ERROR
    20     );
     17    throw new RuntimeException($err);
    2118}
    2219
  • analogwp-library/tags/1.2.0/vendor/composer/InstalledVersions.php

    r3226883 r3272589  
    2727class InstalledVersions
    2828{
     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
    2935    /**
    3036     * @var mixed[]|null
     
    324330
    325331    /**
     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    /**
    326344     * @return array[]
    327345     * @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[]}>}>
     
    337355
    338356        if (self::$canGetVendors) {
    339             $selfDir = strtr(__DIR__, '\\', '/');
     357            $selfDir = self::getSelfDir();
    340358            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
    341359                $vendorDir = strtr($vendorDir, '\\', '/');
  • analogwp-library/trunk/analogwp-library.php

    r3257810 r3272589  
    1111 * Plugin URI:  https://analogwp.com/custom-library-for-elementor
    1212 * 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.0
     13 * Version:     1.2.0
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    2020 * Requires PHP: 7.4
    2121 *
    22  * Elementor tested up to: 3.28.0
    23  * Elementor Pro tested up to: 3.28.0
     22 * Elementor tested up to: 3.28.3
     23 * Elementor Pro tested up to: 3.28.2
    2424 */
    2525
     
    2929define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' );
    3030define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' );
    31 define( 'AGWP_LIBRARY_VERSION', '1.1.0' );
     31define( 'AGWP_LIBRARY_VERSION', '1.2.0' );
    3232define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ );
    3333define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) );
  • analogwp-library/trunk/inc/class-utils.php

    r3226872 r3272589  
    168168
    169169        $css .= ".elementor-add-template-button {
    170                     display: {$hide_elementor_library};
     170                    display: {$hide_elementor_library} !important;
    171171                }";
    172172
  • analogwp-library/trunk/languages/analogwp-library.pot

    r3257810 r3272589  
    44msgid ""
    55msgstr ""
    6 "Project-Id-Version: analogwp-library 1.1.0\n"
     6"Project-Id-Version: analogwp-library 1.2.0\n"
    77"Report-Msgid-Bugs-To: AnalogWP <EMAIL>\n"
    88"MIME-Version: 1.0\n"
     
    1010"Content-Type: text/plain; charset=iso-8859-1\n"
    1111"Plural-Forms: nplurals=2; plural=(n!=1);\n"
    12 "POT-Creation-Date: 2025-03-18T12:34:27.869Z\n"
     12"POT-Creation-Date: 2025-04-14T15:19:29.870Z\n"
    1313"PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n"
    1414"Last-Translator: AnalogWP <EMAIL>\n"
  • analogwp-library/trunk/vendor/autoload.php

    r3226883 r3272589  
    1515        }
    1616    }
    17     trigger_error(
    18         $err,
    19         E_USER_ERROR
    20     );
     17    throw new RuntimeException($err);
    2118}
    2219
  • analogwp-library/trunk/vendor/composer/InstalledVersions.php

    r3226883 r3272589  
    2727class InstalledVersions
    2828{
     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
    2935    /**
    3036     * @var mixed[]|null
     
    324330
    325331    /**
     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    /**
    326344     * @return array[]
    327345     * @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[]}>}>
     
    337355
    338356        if (self::$canGetVendors) {
    339             $selfDir = strtr(__DIR__, '\\', '/');
     357            $selfDir = self::getSelfDir();
    340358            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
    341359                $vendorDir = strtr($vendorDir, '\\', '/');
Note: See TracChangeset for help on using the changeset viewer.