Plugin Directory

Changeset 3236715


Ignore:
Timestamp:
02/07/2025 04:40:19 PM (13 months ago)
Author:
uikitbase
Message:

Adding new trunk - 1.0.1

Location:
uikit-editor-blocks/trunk
Files:
3 edited

Legend:

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

    r3235906 r3236715  
    44Tested up to: 6.7
    55Requires PHP: 7.4
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8989
    9090= 1.0.0 =
     91* Initial release.
    9192
    92 Initial release.
     93= 1.0.1 =
     94* Fix: UIkit CSS loading issue when settings are unsaved.
  • uikit-editor-blocks/trunk/src/class-uikit-editor-blocks.php

    r3235906 r3236715  
    5656     * @var string
    5757     */
    58     public static $version = '1.0.0';
     58    public static $version = '1.0.1';
    5959
    6060    /**
     
    390390        }
    391391
    392         wp_enqueue_style( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/css/' . $uikit_theme . ( is_rtl() ? '-rtl' : '' ) . '.css', array(), self::$version );
     392        wp_enqueue_style( 'uikit', UIKIT_EDITOR_BLOCKS_PLUGIN_URL . 'assets/css/' . ( $uikit_theme ? $uikit_theme : 'uikit' ) . ( is_rtl() ? '-rtl' : '' ) . '.css', array(), self::$version );
    393393
    394394        if( ! Settings::is_exclude_load_uikit_icons_enabled() ) {
  • uikit-editor-blocks/trunk/uikit-editor-blocks.php

    r3235906 r3236715  
    66 * Author: UIkitBase
    77 * Author URI: https://uikitbase.com/
    8  * Version: 1.0.0
     8 * Version: 1.0.1
    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.