Plugin Directory

Changeset 3329952


Ignore:
Timestamp:
07/17/2025 10:39:59 PM (7 months ago)
Author:
uikitbase
Message:

Adding new trunk - 1.0.6

Location:
uikit-editor-blocks/trunk
Files:
22 added
22 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • uikit-editor-blocks/trunk/readme.txt

    r3296217 r3329952  
    22Tags: uikit, block-editor, blocks
    33Requires at least: 6.0
    4 Tested up to: 6.8.1
     4Tested up to: 6.8.2
    55Requires PHP: 7.4
    6 Stable tag: 1.0.5
     6Stable tag: 1.0.6
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    104104== Changelog ==
    105105
     106= 1.0.6 =
     107* Updated: UIkit framework to version 3.23.11.
     108* Improved: Switched to minified versions of UIkit CSS and JS for better performance.
     109* Updated: Settings menu label.
     110
    106111= 1.0.5 =
    107112* Updated: UIkit framework to version 3.23.7.
  • uikit-editor-blocks/trunk/src/class-uikit-editor-blocks.php

    r3296217 r3329952  
    5959     * @var string
    6060     */
    61     public static $version = '1.0.5';
     61    public static $version = '1.0.6';
    6262
    6363    /**
     
    236236        wp_enqueue_style(
    237237            'uikit-editor', // Handle
    238             UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/css/uikit' . ( is_rtl() ? '-rtl' : '' ) . '.css',
     238            UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/css/uikit' . ( is_rtl() ? '-rtl' : '' ) . '.min.css',
    239239            array(), // Dependencies
    240240            self::$version
     
    243243        wp_enqueue_script(
    244244            'uikit-editor', // Handle
    245             UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit.js',
     245            UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit.min.js',
    246246            array(), // Dependencies
    247247            self::$version
     
    250250        wp_enqueue_script(
    251251            'uikit-icons-editor', // Handle
    252             UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit-icons.js',
     252            UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit-icons.min.js',
    253253            array(), // Dependencies
    254254            self::$version
     
    420420        }
    421421
    422         wp_enqueue_style( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/css/' . ( $uikit_theme ? $uikit_theme : 'uikit' ) . ( is_rtl() ? '-rtl' : '' ) . '.css', array(), self::$version );
     422        wp_enqueue_style( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/css/' . ( $uikit_theme ? $uikit_theme : 'uikit' ) . ( is_rtl() ? '-rtl' : '' ) . '.min.css', array(), self::$version );
    423423
    424424        if( ! Settings::is_exclude_load_uikit_icons_enabled() ) {
    425             wp_enqueue_script( 'uikit-icons', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit-icons.js', array( 'uikit' ), self::$version, false );
     425            wp_enqueue_script( 'uikit-icons', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit-icons.min.js', array( 'uikit' ), self::$version, false );
    426426        }
    427427
    428428        if( ! Settings::is_exclude_load_uikit_components_enabled() ) {
    429             wp_enqueue_script( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit.js', array(), self::$version, false );
     429            wp_enqueue_script( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit.min.js', array(), self::$version, false );
    430430        } else {
    431             wp_enqueue_script( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit-core.js', array(), self::$version, false );
     431            wp_enqueue_script( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/js/uikit-core.min.js', array(), self::$version, false );
    432432
    433433            $components = array(
     
    449449            foreach( $components as $component ) {
    450450                if( ! in_array( $component, $exclude_load_uikit_components ) ) {
    451                     wp_enqueue_script( "uikit-$component", UIKIT_EDITOR_BLOCKS_PLUGIN_URL . "assets/js/components/$component.js", array( 'uikit' ), self::$version, false );
     451                    wp_enqueue_script( "uikit-$component", UIKIT_EDITOR_BLOCKS_PLUGIN_URL . "assets/js/components/$component.min.js", array( 'uikit' ), self::$version, false );
    452452                }
    453453            }
  • uikit-editor-blocks/trunk/src/settings/class-settings.php

    r3296217 r3329952  
    148148         */
    149149        public static function add_menu_item() {
    150             add_options_page( __( 'UIkit Blocks Settings', 'uikit-editor-blocks' ), __( 'UIkit Blocks', 'uikit-editor-blocks' ), 'manage_options', self::MENU_SLUG, array( __CLASS__, 'settings_page' ) );
     150            add_options_page( __( 'UIkit Editor Blocks Settings', 'uikit-editor-blocks' ), __( 'UIkit Editor Blocks', 'uikit-editor-blocks' ), 'manage_options', self::MENU_SLUG, array( __CLASS__, 'settings_page' ) );
    151151        }
    152152
  • uikit-editor-blocks/trunk/uikit-editor-blocks.php

    r3296217 r3329952  
    66 * Author: UIkitBase
    77 * Author URI: https://uikitbase.com/
    8  * Version: 1.0.5
     8 * Version: 1.0.6
    99 * License: GPL2+
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
Note: See TracChangeset for help on using the changeset viewer.