Version Description
- Fix: Missing responsive editor styles in Firefox
Download this release
Release Info
Developer | edge22 |
Plugin | GenerateBlocks |
Version | 1.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.4.1 to 1.4.2
- includes/class-render-blocks.php +2 -0
- plugin.php +2 -2
- readme.txt +4 -1
includes/class-render-blocks.php
CHANGED
@@ -56,6 +56,8 @@ class GenerateBlocks_Render_Block {
|
|
56 |
array(
|
57 |
'title' => esc_html__( 'Container', 'generateblocks' ),
|
58 |
'render_callback' => array( $this, 'do_container_block' ),
|
|
|
|
|
59 |
)
|
60 |
);
|
61 |
|
56 |
array(
|
57 |
'title' => esc_html__( 'Container', 'generateblocks' ),
|
58 |
'render_callback' => array( $this, 'do_container_block' ),
|
59 |
+
'editor_script' => 'generateblocks',
|
60 |
+
'editor_style' => 'generateblocks',
|
61 |
)
|
62 |
);
|
63 |
|
plugin.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: A small collection of lightweight WordPress blocks that can accomplish nearly anything.
|
6 |
* Author: Tom Usborne
|
7 |
* Author URI: https://tomusborne.com
|
8 |
-
* Version: 1.4.
|
9 |
* Requires at least: 5.4
|
10 |
* Requires PHP: 5.6
|
11 |
* License: GPL2+
|
@@ -19,7 +19,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
19 |
exit; // Exit if accessed directly.
|
20 |
}
|
21 |
|
22 |
-
define( 'GENERATEBLOCKS_VERSION', '1.4.
|
23 |
define( 'GENERATEBLOCKS_DIR', plugin_dir_path( __FILE__ ) );
|
24 |
define( 'GENERATEBLOCKS_DIR_URL', plugin_dir_url( __FILE__ ) );
|
25 |
|
5 |
* Description: A small collection of lightweight WordPress blocks that can accomplish nearly anything.
|
6 |
* Author: Tom Usborne
|
7 |
* Author URI: https://tomusborne.com
|
8 |
+
* Version: 1.4.2
|
9 |
* Requires at least: 5.4
|
10 |
* Requires PHP: 5.6
|
11 |
* License: GPL2+
|
19 |
exit; // Exit if accessed directly.
|
20 |
}
|
21 |
|
22 |
+
define( 'GENERATEBLOCKS_VERSION', '1.4.2' );
|
23 |
define( 'GENERATEBLOCKS_DIR', plugin_dir_path( __FILE__ ) );
|
24 |
define( 'GENERATEBLOCKS_DIR_URL', plugin_dir_url( __FILE__ ) );
|
25 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: blocks, gutenberg, container, headline, grid, columns, page builder, wysiw
|
|
5 |
Requires at least: 5.4
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.4.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -77,6 +77,9 @@ GenerateBlocks was built to work hand-in-hand with [GeneratePress](https://gener
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
|
|
|
|
|
|
80 |
= 1.4.1 =
|
81 |
* Fix: Color picker UI in WP 5.9
|
82 |
* Fix: PHP notice when first saving Dashboard settings
|
5 |
Requires at least: 5.4
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.4.2
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
77 |
|
78 |
== Changelog ==
|
79 |
|
80 |
+
= 1.4.2 =
|
81 |
+
* Fix: Missing responsive editor styles in Firefox
|
82 |
+
|
83 |
= 1.4.1 =
|
84 |
* Fix: Color picker UI in WP 5.9
|
85 |
* Fix: PHP notice when first saving Dashboard settings
|