Version Description
- Add block dependencies to wp_enqueue_script
Download this release
Release Info
Developer | atomicblocks |
Plugin | Atomic Blocks – Gutenberg Blocks Collection |
Version | 1.4.0 |
Comparing to | |
See all releases |
Code changes from version 1.3.9 to 1.4.0
- README.txt +4 -1
- atomicblocks.php +1 -1
- dist/init.php +1 -1
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://atomicblocks.com
|
|
4 |
Tags: gutenberg, blocks, page builder, gutenberg blocks, editor, atomicblocks, builder, wordpress 5.0, options
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.9.5
|
7 |
-
Stable tag: 1.
|
8 |
Requires PHP: 5.2.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -95,6 +95,9 @@ Yes, you will need to install the [Gutenberg plugin](https://wordpress.org/plugi
|
|
95 |
|
96 |
== Changelog ==
|
97 |
|
|
|
|
|
|
|
98 |
= 1.3.9 =
|
99 |
* Fix behavior of attribute output
|
100 |
* Restrict media upload to images
|
4 |
Tags: gutenberg, blocks, page builder, gutenberg blocks, editor, atomicblocks, builder, wordpress 5.0, options
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.9.5
|
7 |
+
Stable tag: 1.4.0
|
8 |
Requires PHP: 5.2.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
95 |
|
96 |
== Changelog ==
|
97 |
|
98 |
+
= 1.4.0 =
|
99 |
+
* Add block dependencies to wp_enqueue_script
|
100 |
+
|
101 |
= 1.3.9 =
|
102 |
* Fix behavior of attribute output
|
103 |
* Restrict media upload to images
|
atomicblocks.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: A beautiful collection of handy Gutenberg blocks to help you get started with the new WordPress editor.
|
6 |
* Author: atomicblocks
|
7 |
* Author URI: http://arraythemes.com
|
8 |
-
* Version: 1.
|
9 |
* License: GPL2+
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
11 |
*
|
5 |
* Description: A beautiful collection of handy Gutenberg blocks to help you get started with the new WordPress editor.
|
6 |
* Author: atomicblocks
|
7 |
* Author URI: http://arraythemes.com
|
8 |
+
* Version: 1.4.0
|
9 |
* License: GPL2+
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
11 |
*
|
dist/init.php
CHANGED
@@ -52,7 +52,7 @@ function atomic_blocks_editor_assets() {
|
|
52 |
wp_enqueue_script(
|
53 |
'atomic-blocks-block-js',
|
54 |
plugins_url( '/dist/blocks.build.js', dirname( __FILE__ ) ),
|
55 |
-
array( 'wp-blocks', 'wp-i18n', 'wp-element' ),
|
56 |
filemtime( plugin_dir_path( __FILE__ ) . 'blocks.build.js' )
|
57 |
);
|
58 |
|
52 |
wp_enqueue_script(
|
53 |
'atomic-blocks-block-js',
|
54 |
plugins_url( '/dist/blocks.build.js', dirname( __FILE__ ) ),
|
55 |
+
array( 'wp-blocks', 'wp-i18n', 'wp-element' , 'wp-components' , 'wp-editor' ),
|
56 |
filemtime( plugin_dir_path( __FILE__ ) . 'blocks.build.js' )
|
57 |
);
|
58 |
|