Version Description
Download this release
Release Info
Developer | mreishus |
Plugin | Full Site Editing |
Version | 3.8300 |
Comparing to | |
See all releases |
Code changes from version 3.8296 to 3.8300
- full-site-editing-plugin.php +2 -2
- global-styles/README.md +3 -0
- global-styles/class-global-styles.php +13 -0
- 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,7 +42,7 @@ 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';
|
2 |
/**
|
3 |
* Plugin Name: WordPress.com Editing Toolkit
|
4 |
* Description: Enhances your page creation workflow within the Block Editor.
|
5 |
+
* Version: 3.8300
|
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.8300' );
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
global-styles/README.md
CHANGED
@@ -201,10 +201,13 @@ To white-label Global Styles:
|
|
201 |
These are the fonts available via the font selector in the sidebar and for the themes to set as defaults:
|
202 |
|
203 |
- Arvo
|
|
|
204 |
- Cabin
|
205 |
- Chivo
|
|
|
206 |
- Domine
|
207 |
- Fira Sans
|
|
|
208 |
- Libre Baskerville
|
209 |
- Libre Franklin
|
210 |
- Lora
|
201 |
These are the fonts available via the font selector in the sidebar and for the themes to set as defaults:
|
202 |
|
203 |
- Arvo
|
204 |
+
- Bodoni Mona
|
205 |
- Cabin
|
206 |
- Chivo
|
207 |
+
- DM Sans
|
208 |
- Domine
|
209 |
- Fira Sans
|
210 |
+
- Inter
|
211 |
- Libre Baskerville
|
212 |
- Libre Franklin
|
213 |
- Lora
|
global-styles/class-global-styles.php
CHANGED
@@ -91,12 +91,15 @@ class Global_Styles {
|
|
91 |
'value' => self::SYSTEM_FONT,
|
92 |
),
|
93 |
'Arvo',
|
|
|
94 |
'Cabin',
|
95 |
'Chivo',
|
96 |
'Courier Prime',
|
|
|
97 |
'Domine',
|
98 |
'EB Garamond',
|
99 |
'Fira Sans',
|
|
|
100 |
'Josefin Sans',
|
101 |
'Libre Baskerville',
|
102 |
'Libre Franklin',
|
@@ -200,6 +203,16 @@ class Global_Styles {
|
|
200 |
'headings' => 'Space Mono',
|
201 |
'base' => 'Roboto',
|
202 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
),
|
204 |
),
|
205 |
)
|
91 |
'value' => self::SYSTEM_FONT,
|
92 |
),
|
93 |
'Arvo',
|
94 |
+
'Bodoni Mona',
|
95 |
'Cabin',
|
96 |
'Chivo',
|
97 |
'Courier Prime',
|
98 |
+
'DM Sans',
|
99 |
'Domine',
|
100 |
'EB Garamond',
|
101 |
'Fira Sans',
|
102 |
+
'Inter',
|
103 |
'Josefin Sans',
|
104 |
'Libre Baskerville',
|
105 |
'Libre Franklin',
|
203 |
'headings' => 'Space Mono',
|
204 |
'base' => 'Roboto',
|
205 |
),
|
206 |
+
array(
|
207 |
+
'label' => 'Bodoni Mona / Overpass',
|
208 |
+
'headings' => 'Bodoni Mona',
|
209 |
+
'base' => 'Overpass',
|
210 |
+
),
|
211 |
+
array(
|
212 |
+
'label' => 'Inter / Source Serif Pro',
|
213 |
+
'headings' => 'Inter',
|
214 |
+
'base' => 'Source Serif Pro',
|
215 |
+
),
|
216 |
),
|
217 |
),
|
218 |
)
|
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.8300
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|