Version Description
Download this release
Release Info
Developer | philipmjackson |
Plugin | Full Site Editing |
Version | 3.2454 |
Comparing to | |
See all releases |
Code changes from version 3.2409 to 3.2454
- full-site-editing-plugin.php +5 -10
- readme.txt +1 -1
full-site-editing-plugin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: WordPress.com Editing Toolkit
|
4 |
* Description: Enhances your page creation workflow within the Block Editor.
|
5 |
-
* Version: 3.
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com/wordpress-plugins/
|
8 |
* License: GPLv2 or later
|
@@ -42,11 +42,14 @@ namespace A8C\FSE;
|
|
42 |
*
|
43 |
* @var string
|
44 |
*/
|
45 |
-
define( 'A8C_ETK_PLUGIN_VERSION', '3.
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
49 |
|
|
|
|
|
|
|
50 |
/**
|
51 |
* Load dotcom-FSE.
|
52 |
*/
|
@@ -139,14 +142,6 @@ function load_timeline_block() {
|
|
139 |
}
|
140 |
add_action( 'plugins_loaded', __NAMESPACE__ . '\load_timeline_block' );
|
141 |
|
142 |
-
/**
|
143 |
-
* Load common module.
|
144 |
-
*/
|
145 |
-
function load_common_module() {
|
146 |
-
require_once __DIR__ . '/common/index.php';
|
147 |
-
}
|
148 |
-
add_action( 'plugins_loaded', __NAMESPACE__ . '\load_common_module' );
|
149 |
-
|
150 |
/**
|
151 |
* Load Editor Site Launch.
|
152 |
*/
|
2 |
/**
|
3 |
* Plugin Name: WordPress.com Editing Toolkit
|
4 |
* Description: Enhances your page creation workflow within the Block Editor.
|
5 |
+
* Version: 3.2454
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com/wordpress-plugins/
|
8 |
* License: GPLv2 or later
|
42 |
*
|
43 |
* @var string
|
44 |
*/
|
45 |
+
define( 'A8C_ETK_PLUGIN_VERSION', '3.2454' );
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
49 |
|
50 |
+
// Enqueues the shared JS data stores and defines shared helper functions.
|
51 |
+
require_once __DIR__ . '/common/index.php';
|
52 |
+
|
53 |
/**
|
54 |
* Load dotcom-FSE.
|
55 |
*/
|
142 |
}
|
143 |
add_action( 'plugins_loaded', __NAMESPACE__ . '\load_timeline_block' );
|
144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
/**
|
146 |
* Load Editor Site Launch.
|
147 |
*/
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic
|
|
3 |
Tags: block, blocks, editor, gutenberg, page
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.6
|
6 |
-
Stable tag: 3.
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
3 |
Tags: block, blocks, editor, gutenberg, page
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.6
|
6 |
+
Stable tag: 3.2454
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|