Full Site Editing - Version 3.51114

Version Description

Download this release

Release Info

Developer Copons
Plugin Icon wp plugin Full Site Editing
Version 3.51114
Comparing to
See all releases

Code changes from version 3.51037 to 3.51114

build_meta.txt CHANGED
@@ -1,3 +1,3 @@
1
- commit_hash=d9456dfc610e1ea205f1763d30bd04eac059f636
2
- commit_url=https://github.com/Automattic/wp-calypso/commit/d9456dfc610e1ea205f1763d30bd04eac059f636
3
- build_number=3.51037
1
+ commit_hash=5ea279bce709213e54ba04501052d6e58e9b896c
2
+ commit_url=https://github.com/Automattic/wp-calypso/commit/5ea279bce709213e54ba04501052d6e58e9b896c
3
+ build_number=3.51114
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.51037
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.51037' );
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.51114
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.51114' );
46
 
47
  // Always include these helper files for dotcom FSE.
48
  require_once __DIR__ . '/dotcom-fse/helpers.php';
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: 6.0
6
- Stable tag: 3.51037
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: 6.0
6
+ Stable tag: 3.51114
7
  Requires PHP: 5.6.20
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
wpcom-global-styles/index.php CHANGED
@@ -24,9 +24,8 @@ function wpcom_should_limit_global_styles( $blog_id = 0 ) {
24
  }
25
  }
26
 
27
- // Do not limit Global Styles on sites created before we made it a paid feature. This cutoff
28
- // blog ID needs to be updated as part of the public launch.
29
- if ( $blog_id < 210494207 ) {
30
  return false;
31
  }
32
 
@@ -34,14 +33,7 @@ function wpcom_should_limit_global_styles( $blog_id = 0 ) {
34
  return false;
35
  }
36
 
37
- // During the development stage, we only limit Global Styles on sites that have opted in via
38
- // a blog sticker. This is a temporary check that will be removed as part of the public launch.
39
- // Note that block stickers are not exposed by default to Atomic sites, so we're not limiting
40
- // Global Styles on Atomic sites for now.
41
- if ( ! function_exists( 'has_blog_sticker' ) ) {
42
- return false;
43
- }
44
- return has_blog_sticker( 'wpcom-limit-global-styles', $blog_id );
45
  }
46
 
47
  /**
24
  }
25
  }
26
 
27
+ // Do not limit Global Styles on sites created before we made it a paid feature (2022-12-15).
28
+ if ( $blog_id < 213403000 ) {
 
29
  return false;
30
  }
31
 
33
  return false;
34
  }
35
 
36
+ return true;
 
 
 
 
 
 
 
37
  }
38
 
39
  /**