Changeset 3236715
- Timestamp:
- 02/07/2025 04:40:19 PM (13 months ago)
- Location:
- uikit-editor-blocks/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
src/class-uikit-editor-blocks.php (modified) (2 diffs)
-
uikit-editor-blocks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uikit-editor-blocks/trunk/readme.txt
r3235906 r3236715 4 4 Tested up to: 6.7 5 5 Requires PHP: 7.4 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 89 89 90 90 = 1.0.0 = 91 * Initial release. 91 92 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 56 56 * @var string 57 57 */ 58 public static $version = '1.0. 0';58 public static $version = '1.0.1'; 59 59 60 60 /** … … 390 390 } 391 391 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 ); 393 393 394 394 if( ! Settings::is_exclude_load_uikit_icons_enabled() ) { -
uikit-editor-blocks/trunk/uikit-editor-blocks.php
r3235906 r3236715 6 6 * Author: UIkitBase 7 7 * Author URI: https://uikitbase.com/ 8 * Version: 1.0. 08 * Version: 1.0.1 9 9 * License: GPL2+ 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
Note: See TracChangeset
for help on using the changeset viewer.