Version Description
Download this release
Release Info
Developer | fullofcaffeine |
Plugin | Full Site Editing |
Version | 3.25013 |
Comparing to | |
See all releases |
Code changes from version 3.24687 to 3.25013
error-reporting/index.php
CHANGED
@@ -68,7 +68,7 @@ function add_crossorigin_to_script_els( $tag ) {
|
|
68 |
* @return bool
|
69 |
*/
|
70 |
function user_in_sentry_test_segment( $user_id ) {
|
71 |
-
$current_segment =
|
72 |
$user_segment = $user_id % 100;
|
73 |
|
74 |
// We get the last two digits of the user id and that will be used to decide in what
|
68 |
* @return bool
|
69 |
*/
|
70 |
function user_in_sentry_test_segment( $user_id ) {
|
71 |
+
$current_segment = 10; // segment of existing users that will get this feature in %.
|
72 |
$user_segment = $user_id % 100;
|
73 |
|
74 |
// We get the last two digits of the user id and that will be used to decide in what
|
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.25013
|
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.25013' );
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
phpunit/class-errorreporting-activation-test.php
CHANGED
@@ -50,7 +50,7 @@ class ErrorReporting_Activation_Test extends TestCase {
|
|
50 |
*
|
51 |
* @var int $current_segment
|
52 |
*/
|
53 |
-
private $current_segment =
|
54 |
/**
|
55 |
* A dummy id that represents an a11n user. It's used in the `is_automattician`
|
56 |
* stub defined above.
|
50 |
*
|
51 |
* @var int $current_segment
|
52 |
*/
|
53 |
+
private $current_segment = 10;
|
54 |
/**
|
55 |
* A dummy id that represents an a11n user. It's used in the `is_automattician`
|
56 |
* stub defined above.
|
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.25013
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|