Version Description
Download this release
Release Info
Developer | gutenbergplugin |
Plugin | Gutenberg |
Version | 10.5.3 |
Comparing to | |
See all releases |
Code changes from version 10.5.2 to 10.5.3
- changelog.txt +8 -1
- gutenberg.php +3 -3
- lib/compat.php +1 -1
- readme.txt +1 -1
changelog.txt
CHANGED
@@ -1,9 +1,16 @@
|
|
1 |
== Changelog ==
|
2 |
|
3 |
-
= 10.5.
|
4 |
|
5 |
## Bug Fixes
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
- Include new API for useSelect to prevent the global editor white screen.
|
8 |
|
9 |
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 10.5.3 =
|
4 |
|
5 |
## Bug Fixes
|
6 |
|
7 |
+
- Fix the stylesheet loading order for non FSE themes.
|
8 |
+
|
9 |
+
|
10 |
+
= 10.5.2 =
|
11 |
+
|
12 |
+
## Bug Fixes
|
13 |
+
|
14 |
- Include new API for useSelect to prevent the global editor white screen.
|
15 |
|
16 |
|
gutenberg.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Printing since 1440. This is the development plugin for the new block editor in core.
|
6 |
* Requires at least: 5.6
|
7 |
* Requires PHP: 5.6
|
8 |
-
* Version: 10.5.
|
9 |
* Author: Gutenberg Team
|
10 |
* Text Domain: gutenberg
|
11 |
*
|
@@ -13,8 +13,8 @@
|
|
13 |
*/
|
14 |
|
15 |
### BEGIN AUTO-GENERATED DEFINES
|
16 |
-
define( 'GUTENBERG_VERSION', '10.5.
|
17 |
-
define( 'GUTENBERG_GIT_COMMIT', '
|
18 |
### END AUTO-GENERATED DEFINES
|
19 |
|
20 |
gutenberg_pre_init();
|
5 |
* Description: Printing since 1440. This is the development plugin for the new block editor in core.
|
6 |
* Requires at least: 5.6
|
7 |
* Requires PHP: 5.6
|
8 |
+
* Version: 10.5.3
|
9 |
* Author: Gutenberg Team
|
10 |
* Text Domain: gutenberg
|
11 |
*
|
13 |
*/
|
14 |
|
15 |
### BEGIN AUTO-GENERATED DEFINES
|
16 |
+
define( 'GUTENBERG_VERSION', '10.5.3' );
|
17 |
+
define( 'GUTENBERG_GIT_COMMIT', '4f6d84bfbb6a38e7f8f1c46e5bd2ba262813e3c0' );
|
18 |
### END AUTO-GENERATED DEFINES
|
19 |
|
20 |
gutenberg_pre_init();
|
lib/compat.php
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
* @return bool
|
15 |
*/
|
16 |
function gutenberg_should_load_separate_block_assets() {
|
17 |
-
$load_separate_styles =
|
18 |
/**
|
19 |
* Determine if separate styles will be loaded for blocks on-render or not.
|
20 |
*
|
14 |
* @return bool
|
15 |
*/
|
16 |
function gutenberg_should_load_separate_block_assets() {
|
17 |
+
$load_separate_styles = gutenberg_is_fse_theme();
|
18 |
/**
|
19 |
* Determine if separate styles will be loaded for blocks on-render or not.
|
20 |
*
|
readme.txt
CHANGED
@@ -55,4 +55,4 @@ View <a href="https://developer.wordpress.org/block-editor/principles/versions-i
|
|
55 |
|
56 |
== Changelog ==
|
57 |
|
58 |
-
To read the changelog for Gutenberg 10.5.
|
55 |
|
56 |
== Changelog ==
|
57 |
|
58 |
+
To read the changelog for Gutenberg 10.5.3, please navigate to the <a href="https://github.com/WordPress/gutenberg/releases/tag/v10.5.3">release page</a>.
|