Plugin Directory

Changeset 3438027


Ignore:
Timestamp:
01/12/2026 05:30:59 PM (6 weeks ago)
Author:
analogwp
Message:

Update to version 1.8.0 from GitHub

Location:
analogwp-library
Files:
6 edited
1 copied

Legend:

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

    r3423181 r3438027  
    44 *
    55 * @package     AnalogWP/CustomLibrary
    6  * @copyright   2025 SmallTownDev
     6 * @copyright   2026 SmallTownDev
    77 * @link        https://analogwp.com/analogwp-library
    88 *
     
    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.7.0
     13 * Version:     1.8.0
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    1919 * Requires at least: 6.0
    2020 * Requires PHP: 7.4
    21  * Elementor tested up to: 3.33.6
    22  * Elementor Pro tested up to: 3.33.2
     21 * Elementor tested up to: 3.34.1
     22 * Elementor Pro tested up to: 3.34.0
    2323 */
    2424
     
    2828define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' );
    2929define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' );
    30 define( 'AGWP_LIBRARY_VERSION', '1.7.0' );
     30define( 'AGWP_LIBRARY_VERSION', '1.8.0' );
    3131define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ );
    3232define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) );
  • analogwp-library/tags/1.8.0/inc/class-utils.php

    r3393156 r3438027  
    163163        // Hide Elementor Library icon.
    164164        $hide_elementor_library_icon = $options->get( 'hide_elementor_template_library' );
    165         $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none' : 'inherit';
     165        $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none !important' : '';
    166166
    167167        $hide_elementor_library_popup = $options->get( 'hide_elementor_library_popup' );
    168         $hide_elementor_library_popup       = $hide_elementor_library_popup ? 'none' : 'inherit';
     168        $hide_elementor_library_popup = $hide_elementor_library_popup ? 'none !important' : '';
    169169
    170170        $library_popup_style = $options->get( 'library_popup_style' );
    171171
    172172        $css .= ".elementor-add-template-button {
    173                     display: {$hide_elementor_library_icon} !important;
     173                    display: {$hide_elementor_library_icon};
    174174                }";
    175175
    176176        $css .= " #elementor-template-library-modal.dialog-widget.elementor-templates-modal {
    177                 display: {$hide_elementor_library_popup} !important;
     177                display: {$hide_elementor_library_popup};
    178178            }";
    179179
  • analogwp-library/tags/1.8.0/languages/analogwp-library.pot

    r3423181 r3438027  
    1 # Copyright (C) 2025 analogwp-library
     1# Copyright (C) 2026 analogwp-library
    22# This file is distributed under the GPL2 license.
    33#: assets/js/app/index.js:1
    44msgid ""
    55msgstr ""
    6 "Project-Id-Version: analogwp-library 1.7.0\n"
     6"Project-Id-Version: analogwp-library 1.8.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-12-18T18:40:27.845Z\n"
    13 "PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n"
     12"POT-Creation-Date: 2026-01-12T17:30:45.335Z\n"
     13"PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n"
    1414"Last-Translator: AnalogWP <EMAIL>\n"
    1515"Language-Team: AnalogWP <EMAIL>\n"
  • analogwp-library/trunk/analogwp-library.php

    r3423181 r3438027  
    44 *
    55 * @package     AnalogWP/CustomLibrary
    6  * @copyright   2025 SmallTownDev
     6 * @copyright   2026 SmallTownDev
    77 * @link        https://analogwp.com/analogwp-library
    88 *
     
    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.7.0
     13 * Version:     1.8.0
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    1919 * Requires at least: 6.0
    2020 * Requires PHP: 7.4
    21  * Elementor tested up to: 3.33.6
    22  * Elementor Pro tested up to: 3.33.2
     21 * Elementor tested up to: 3.34.1
     22 * Elementor Pro tested up to: 3.34.0
    2323 */
    2424
     
    2828define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' );
    2929define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' );
    30 define( 'AGWP_LIBRARY_VERSION', '1.7.0' );
     30define( 'AGWP_LIBRARY_VERSION', '1.8.0' );
    3131define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ );
    3232define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) );
  • analogwp-library/trunk/inc/class-utils.php

    r3393156 r3438027  
    163163        // Hide Elementor Library icon.
    164164        $hide_elementor_library_icon = $options->get( 'hide_elementor_template_library' );
    165         $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none' : 'inherit';
     165        $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none !important' : '';
    166166
    167167        $hide_elementor_library_popup = $options->get( 'hide_elementor_library_popup' );
    168         $hide_elementor_library_popup       = $hide_elementor_library_popup ? 'none' : 'inherit';
     168        $hide_elementor_library_popup = $hide_elementor_library_popup ? 'none !important' : '';
    169169
    170170        $library_popup_style = $options->get( 'library_popup_style' );
    171171
    172172        $css .= ".elementor-add-template-button {
    173                     display: {$hide_elementor_library_icon} !important;
     173                    display: {$hide_elementor_library_icon};
    174174                }";
    175175
    176176        $css .= " #elementor-template-library-modal.dialog-widget.elementor-templates-modal {
    177                 display: {$hide_elementor_library_popup} !important;
     177                display: {$hide_elementor_library_popup};
    178178            }";
    179179
  • analogwp-library/trunk/languages/analogwp-library.pot

    r3423181 r3438027  
    1 # Copyright (C) 2025 analogwp-library
     1# Copyright (C) 2026 analogwp-library
    22# This file is distributed under the GPL2 license.
    33#: assets/js/app/index.js:1
    44msgid ""
    55msgstr ""
    6 "Project-Id-Version: analogwp-library 1.7.0\n"
     6"Project-Id-Version: analogwp-library 1.8.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-12-18T18:40:27.845Z\n"
    13 "PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n"
     12"POT-Creation-Date: 2026-01-12T17:30:45.335Z\n"
     13"PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n"
    1414"Last-Translator: AnalogWP <EMAIL>\n"
    1515"Language-Team: AnalogWP <EMAIL>\n"
Note: See TracChangeset for help on using the changeset viewer.