Plugins + Themes
This commit is contained in:
parent
38b98cf532
commit
5e1eef1fc4
|
|
@ -6,7 +6,7 @@
|
|||
Plugin Name: Akismet Anti-Spam
|
||||
Plugin URI: https://akismet.com/
|
||||
Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.
|
||||
Version: 4.2.2
|
||||
Version: 4.2.4
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com/wordpress-plugins/
|
||||
License: GPLv2 or later
|
||||
|
|
@ -37,7 +37,7 @@ if ( !function_exists( 'add_action' ) ) {
|
|||
exit;
|
||||
}
|
||||
|
||||
define( 'AKISMET_VERSION', '4.2.2' );
|
||||
define( 'AKISMET_VERSION', '4.2.4' );
|
||||
define( 'AKISMET__MINIMUM_WP_VERSION', '5.0' );
|
||||
define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
||||
define( 'AKISMET_DELETE_LIMIT', 10000 );
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ class Akismet_Admin {
|
|||
|
||||
if ( ! wp_verify_nonce( $_POST['nonce'], 'akismet_check_for_spam' ) ) {
|
||||
wp_send_json( array(
|
||||
'error' => __( "You don't have permission to do that."),
|
||||
'error' => __( 'You don’t have permission to do that.', 'akismet' ),
|
||||
));
|
||||
return;
|
||||
}
|
||||
|
|
@ -584,10 +584,8 @@ class Akismet_Admin {
|
|||
|
||||
if ( $history ) {
|
||||
foreach ( $history as $row ) {
|
||||
$time = date( 'D d M Y @ h:i:s a', $row['time'] ) . ' GMT';
|
||||
|
||||
$message = '';
|
||||
|
||||
|
||||
if ( ! empty( $row['message'] ) ) {
|
||||
// Old versions of Akismet stored the message as a literal string in the commentmeta.
|
||||
// New versions don't do that for two reasons:
|
||||
|
|
@ -595,96 +593,112 @@ class Akismet_Admin {
|
|||
// 2) The message can be translated into the current language of the blog, not stuck
|
||||
// in the language of the blog when the comment was made.
|
||||
$message = esc_html( $row['message'] );
|
||||
}
|
||||
|
||||
// If possible, use a current translation.
|
||||
switch ( $row['event'] ) {
|
||||
case 'recheck-spam';
|
||||
$message = esc_html( __( 'Akismet re-checked and caught this comment as spam.', 'akismet' ) );
|
||||
break;
|
||||
case 'check-spam':
|
||||
$message = esc_html( __( 'Akismet caught this comment as spam.', 'akismet' ) );
|
||||
break;
|
||||
case 'recheck-ham':
|
||||
$message = esc_html( __( 'Akismet re-checked and cleared this comment.', 'akismet' ) );
|
||||
break;
|
||||
case 'check-ham':
|
||||
$message = esc_html( __( 'Akismet cleared this comment.', 'akismet' ) );
|
||||
break;
|
||||
case 'wp-blacklisted':
|
||||
case 'wp-disallowed':
|
||||
$message = sprintf(
|
||||
/* translators: The placeholder is a WordPress PHP function name. */
|
||||
esc_html( __( 'Comment was caught by %s.', 'akismet' ) ),
|
||||
function_exists( 'wp_check_comment_disallowed_list' ) ? '<code>wp_check_comment_disallowed_list</code>' : '<code>wp_blacklist_check</code>'
|
||||
);
|
||||
break;
|
||||
case 'report-spam':
|
||||
if ( isset( $row['user'] ) ) {
|
||||
$message = esc_html( sprintf( __( '%s reported this comment as spam.', 'akismet' ), $row['user'] ) );
|
||||
}
|
||||
else if ( ! $message ) {
|
||||
$message = esc_html( __( 'This comment was reported as spam.', 'akismet' ) );
|
||||
}
|
||||
break;
|
||||
case 'report-ham':
|
||||
if ( isset( $row['user'] ) ) {
|
||||
$message = esc_html( sprintf( __( '%s reported this comment as not spam.', 'akismet' ), $row['user'] ) );
|
||||
}
|
||||
else if ( ! $message ) {
|
||||
$message = esc_html( __( 'This comment was reported as not spam.', 'akismet' ) );
|
||||
}
|
||||
break;
|
||||
case 'cron-retry-spam':
|
||||
$message = esc_html( __( 'Akismet caught this comment as spam during an automatic retry.' , 'akismet') );
|
||||
break;
|
||||
case 'cron-retry-ham':
|
||||
$message = esc_html( __( 'Akismet cleared this comment during an automatic retry.', 'akismet') );
|
||||
break;
|
||||
case 'check-error':
|
||||
if ( isset( $row['meta'], $row['meta']['response'] ) ) {
|
||||
$message = sprintf( esc_html( __( 'Akismet was unable to check this comment (response: %s) but will automatically retry later.', 'akismet') ), '<code>' . esc_html( $row['meta']['response'] ) . '</code>' );
|
||||
}
|
||||
else {
|
||||
$message = esc_html( __( 'Akismet was unable to check this comment but will automatically retry later.', 'akismet' ) );
|
||||
}
|
||||
break;
|
||||
case 'recheck-error':
|
||||
if ( isset( $row['meta'], $row['meta']['response'] ) ) {
|
||||
$message = sprintf( esc_html( __( 'Akismet was unable to recheck this comment (response: %s).', 'akismet') ), '<code>' . esc_html( $row['meta']['response'] ) . '</code>' );
|
||||
}
|
||||
else {
|
||||
$message = esc_html( __( 'Akismet was unable to recheck this comment.', 'akismet' ) );
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if ( preg_match( '/^status-changed/', $row['event'] ) ) {
|
||||
// Half of these used to be saved without the dash after 'status-changed'.
|
||||
// See https://plugins.trac.wordpress.org/changeset/1150658/akismet/trunk
|
||||
$new_status = preg_replace( '/^status-changed-?/', '', $row['event'] );
|
||||
$message = sprintf( esc_html( __( 'Comment status was changed to %s', 'akismet' ) ), '<code>' . esc_html( $new_status ) . '</code>' );
|
||||
}
|
||||
else if ( preg_match( '/^status-/', $row['event'] ) ) {
|
||||
$new_status = preg_replace( '/^status-/', '', $row['event'] );
|
||||
|
||||
} else if ( ! empty( $row['event'] ) ) {
|
||||
// If possible, use a current translation.
|
||||
switch ( $row['event'] ) {
|
||||
case 'recheck-spam':
|
||||
$message = esc_html( __( 'Akismet re-checked and caught this comment as spam.', 'akismet' ) );
|
||||
break;
|
||||
case 'check-spam':
|
||||
$message = esc_html( __( 'Akismet caught this comment as spam.', 'akismet' ) );
|
||||
break;
|
||||
case 'recheck-ham':
|
||||
$message = esc_html( __( 'Akismet re-checked and cleared this comment.', 'akismet' ) );
|
||||
break;
|
||||
case 'check-ham':
|
||||
$message = esc_html( __( 'Akismet cleared this comment.', 'akismet' ) );
|
||||
break;
|
||||
case 'wp-blacklisted':
|
||||
case 'wp-disallowed':
|
||||
$message = sprintf(
|
||||
/* translators: The placeholder is a WordPress PHP function name. */
|
||||
esc_html( __( 'Comment was caught by %s.', 'akismet' ) ),
|
||||
function_exists( 'wp_check_comment_disallowed_list' ) ? '<code>wp_check_comment_disallowed_list</code>' : '<code>wp_blacklist_check</code>'
|
||||
);
|
||||
break;
|
||||
case 'report-spam':
|
||||
if ( isset( $row['user'] ) ) {
|
||||
$message = sprintf( esc_html( __( '%1$s changed the comment status to %2$s.', 'akismet' ) ), $row['user'], '<code>' . esc_html( $new_status ) . '</code>' );
|
||||
/* translators: The placeholder is a username. */
|
||||
$message = esc_html( sprintf( __( '%s reported this comment as spam.', 'akismet' ), $row['user'] ) );
|
||||
} else if ( ! $message ) {
|
||||
$message = esc_html( __( 'This comment was reported as spam.', 'akismet' ) );
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
break;
|
||||
case 'report-ham':
|
||||
if ( isset( $row['user'] ) ) {
|
||||
/* translators: The placeholder is a username. */
|
||||
$message = esc_html( sprintf( __( '%s reported this comment as not spam.', 'akismet' ), $row['user'] ) );
|
||||
} else if ( ! $message ) {
|
||||
$message = esc_html( __( 'This comment was reported as not spam.', 'akismet' ) );
|
||||
}
|
||||
break;
|
||||
case 'cron-retry-spam':
|
||||
$message = esc_html( __( 'Akismet caught this comment as spam during an automatic retry.', 'akismet' ) );
|
||||
break;
|
||||
case 'cron-retry-ham':
|
||||
$message = esc_html( __( 'Akismet cleared this comment during an automatic retry.', 'akismet' ) );
|
||||
break;
|
||||
case 'check-error':
|
||||
if ( isset( $row['meta'], $row['meta']['response'] ) ) {
|
||||
/* translators: The placeholder is an error response returned by the API server. */
|
||||
$message = sprintf( esc_html( __( 'Akismet was unable to check this comment (response: %s) but will automatically retry later.', 'akismet' ) ), '<code>' . esc_html( $row['meta']['response'] ) . '</code>' );
|
||||
} else {
|
||||
$message = esc_html( __( 'Akismet was unable to check this comment but will automatically retry later.', 'akismet' ) );
|
||||
}
|
||||
break;
|
||||
case 'recheck-error':
|
||||
if ( isset( $row['meta'], $row['meta']['response'] ) ) {
|
||||
/* translators: The placeholder is an error response returned by the API server. */
|
||||
$message = sprintf( esc_html( __( 'Akismet was unable to recheck this comment (response: %s).', 'akismet' ) ), '<code>' . esc_html( $row['meta']['response'] ) . '</code>' );
|
||||
} else {
|
||||
$message = esc_html( __( 'Akismet was unable to recheck this comment.', 'akismet' ) );
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if ( preg_match( '/^status-changed/', $row['event'] ) ) {
|
||||
// Half of these used to be saved without the dash after 'status-changed'.
|
||||
// See https://plugins.trac.wordpress.org/changeset/1150658/akismet/trunk
|
||||
$new_status = preg_replace( '/^status-changed-?/', '', $row['event'] );
|
||||
/* translators: The placeholder is a short string (like 'spam' or 'approved') denoting the new comment status. */
|
||||
$message = sprintf( esc_html( __( 'Comment status was changed to %s', 'akismet' ) ), '<code>' . esc_html( $new_status ) . '</code>' );
|
||||
} else if ( preg_match( '/^status-/', $row['event'] ) ) {
|
||||
$new_status = preg_replace( '/^status-/', '', $row['event'] );
|
||||
|
||||
if ( isset( $row['user'] ) ) {
|
||||
/* translators: %1$s is a username; %2$s is a short string (like 'spam' or 'approved') denoting the new comment status. */
|
||||
$message = sprintf( esc_html( __( '%1$s changed the comment status to %2$s.', 'akismet' ) ), $row['user'], '<code>' . esc_html( $new_status ) . '</code>' );
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ( ! empty( $message ) ) {
|
||||
echo '<p>';
|
||||
echo '<span style="color: #999;" alt="' . $time . '" title="' . $time . '">' . sprintf( esc_html__('%s ago', 'akismet'), human_time_diff( $row['time'] ) ) . '</span>';
|
||||
echo ' - ';
|
||||
echo $message; // esc_html() is done above so that we can use HTML in some messages.
|
||||
|
||||
if ( isset( $row['time'] ) ) {
|
||||
$time = gmdate( 'D d M Y @ h:i:s a', $row['time'] ) . ' GMT';
|
||||
|
||||
/* translators: The placeholder is an amount of time, like "7 seconds" or "3 days" returned by the function human_time_diff(). */
|
||||
$time_html = '<span style="color: #999;" alt="' . esc_attr( $time ) . '" title="' . esc_attr( $time ) . '">' . sprintf( esc_html__( '%s ago', 'akismet' ), human_time_diff( $row['time'] ) ) . '</span>';
|
||||
|
||||
echo sprintf(
|
||||
/* translators: %1$s is a human-readable time difference, like "3 hours ago", and %2$s is an already-translated phrase describing how a comment's status changed, like "This comment was reported as spam." */
|
||||
esc_html( __( '%1$s - %2$s', 'akismet' ) ),
|
||||
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
$time_html,
|
||||
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
$message
|
||||
); // esc_html() is done above so that we can use HTML in $message.
|
||||
} else {
|
||||
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
echo $message; // esc_html() is done above so that we can use HTML in $message.
|
||||
}
|
||||
|
||||
echo '</p>';
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
echo '<p>';
|
||||
echo esc_html( __( 'No comment history.', 'akismet' ) );
|
||||
echo '</p>';
|
||||
|
|
|
|||
|
|
@ -68,6 +68,10 @@ class Akismet {
|
|||
add_filter( 'frm_filter_final_form', array( 'Akismet', 'inject_custom_form_fields' ) );
|
||||
add_filter( 'frm_akismet_values', array( 'Akismet', 'prepare_custom_form_values' ) );
|
||||
|
||||
// Fluent Forms
|
||||
add_filter( 'fluentform_form_element_start', array( 'Akismet', 'output_custom_form_fields' ) );
|
||||
add_filter( 'fluentform_akismet_fields', array( 'Akismet', 'prepare_custom_form_values' ), 10, 2 );
|
||||
|
||||
add_action( 'update_option_wordpress_api_key', array( 'Akismet', 'updated_option' ), 10, 2 );
|
||||
add_action( 'add_option_wordpress_api_key', array( 'Akismet', 'added_option' ), 10, 2 );
|
||||
|
||||
|
|
@ -1399,9 +1403,16 @@ class Akismet {
|
|||
* Ensure that any Akismet-added form fields are included in the comment-check call.
|
||||
*
|
||||
* @param array $form
|
||||
* @param array $data Some plugins will supply the POST data via the filter, since they don't
|
||||
* read it directly from $_POST.
|
||||
* @return array $form
|
||||
*/
|
||||
public static function prepare_custom_form_values( $form ) {
|
||||
public static function prepare_custom_form_values( $form, $data = null ) {
|
||||
if ( is_null( $data ) ) {
|
||||
// phpcs:ignore WordPress.Security.NonceVerification.Missing
|
||||
$data = $_POST;
|
||||
}
|
||||
|
||||
$prefix = 'ak_';
|
||||
|
||||
// Contact Form 7 uses _wpcf7 as a prefix to know which fields to exclude from comment_content.
|
||||
|
|
@ -1409,8 +1420,7 @@ class Akismet {
|
|||
$prefix = '_wpcf7_ak_';
|
||||
}
|
||||
|
||||
// phpcs:ignore WordPress.Security.NonceVerification.Missing
|
||||
foreach ( $_POST as $key => $val ) {
|
||||
foreach ( $data as $key => $val ) {
|
||||
if ( 0 === strpos( $key, $prefix ) ) {
|
||||
$form[ 'POST_ak_' . substr( $key, strlen( $prefix ) ) ] = $val;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eoigal, cfinke, automattic, jgs, procifer, stephdau
|
||||
Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
|
||||
Requires at least: 5.0
|
||||
Tested up to: 5.9
|
||||
Stable tag: 4.2.2
|
||||
Tested up to: 6.0
|
||||
Stable tag: 4.2.4
|
||||
License: GPLv2 or later
|
||||
|
||||
The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.
|
||||
|
|
@ -30,13 +30,27 @@ Upload the Akismet plugin to your blog, activate it, and then enter your Akismet
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 4.2.4 =
|
||||
*Release Date - 20 May 2022*
|
||||
|
||||
* Improved translator instructions for comment history.
|
||||
* Bumped the "Tested up to" tag to WP 6.0.
|
||||
|
||||
= 4.2.3 =
|
||||
*Release Date - 25 April 2022*
|
||||
|
||||
* Improved compatibility with Fluent Forms
|
||||
* Fixed missing translation domains
|
||||
* Updated stats URL.
|
||||
* Improved accessibility of elements on the config page.
|
||||
|
||||
= 4.2.2 =
|
||||
*Release Date - 24 January 2022*
|
||||
|
||||
* Improved compatibility with Formidable Forms
|
||||
* Fixed a bug that could cause issues when multiple contact forms appear on one page.
|
||||
* Updated delete_comment and deleted_comment actions to pass two arguments to match WordPress core since 4.9.0.
|
||||
* Add a filter that allows comment types to be excluded when counting users' approved comments.
|
||||
* Added a filter that allows comment types to be excluded when counting users' approved comments.
|
||||
|
||||
= 4.2.1 =
|
||||
*Release Date - 1 October 2021*
|
||||
|
|
@ -93,6 +107,6 @@ Upload the Akismet plugin to your blog, activate it, and then enter your Akismet
|
|||
*Release Date - 4 June 2020*
|
||||
|
||||
* Disable "Check for Spam" button until the page is loaded to avoid errors with clicking through to queue recheck endpoint directly.
|
||||
* Add filter "akismet_enable_mshots" to allow disabling screenshot popups on the edit comments admin page.
|
||||
* Added filter "akismet_enable_mshots" to allow disabling screenshot popups on the edit comments admin page.
|
||||
|
||||
For older changelog entries, please see the [additional changelog.txt file](https://plugins.svn.wordpress.org/akismet/trunk/changelog.txt) delivered with the plugin.
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
</div>
|
||||
|
||||
<div class="akismet-new-snapshot">
|
||||
<iframe allowtransparency="true" scrolling="no" frameborder="0" style="width: 100%; height: 220px; overflow: hidden;" src="<?php printf( '//akismet.com/web/1.0/snapshot.php?blog=%s&api_key=%s&height=200&locale=%s', urlencode( get_option( 'home' ) ), Akismet::get_api_key(), get_locale() );?>"></iframe>
|
||||
<iframe allowtransparency="true" scrolling="no" frameborder="0" style="width: 100%; height: 220px; overflow: hidden;" src="<?php echo esc_url( sprintf( 'https://tools.akismet.com/1.0/snapshot.php?blog=%s&api_key=%s&height=200&locale=%s', urlencode( get_option( 'home' ) ), Akismet::get_api_key(), get_locale() ) ); ?>"></iframe>
|
||||
<ul>
|
||||
<li>
|
||||
<h3><?php esc_html_e( 'Past six months' , 'akismet');?></h3>
|
||||
|
|
@ -73,7 +73,9 @@
|
|||
<tbody>
|
||||
<?php if ( ! Akismet::predefined_api_key() ) { ?>
|
||||
<tr>
|
||||
<th class="akismet-api-key" width="10%" align="left" scope="row"><?php esc_html_e('API Key', 'akismet');?></th>
|
||||
<th class="akismet-api-key" width="10%" align="left" scope="row">
|
||||
<label for="key"><?php esc_html_e( 'API Key', 'akismet' ); ?></label>
|
||||
</th>
|
||||
<td width="5%"/>
|
||||
<td align="left">
|
||||
<span class="api-key"><input id="key" name="key" type="text" size="15" value="<?php echo esc_attr( get_option('wordpress_api_key') ); ?>" class="<?php echo esc_attr( 'regular-text code ' . $akismet_user->status ); ?>"></span>
|
||||
|
|
|
|||
|
|
@ -62,8 +62,8 @@
|
|||
<?php Akismet::view( 'setup' );?>
|
||||
</div>
|
||||
<div class="centered akismet-toggles">
|
||||
<a href="#" class="toggle-jp-connect"><?php esc_html_e( 'Connect with Jetpack' ); ?></a>
|
||||
<a href="#" class="toggle-ak-connect"><?php esc_html_e( 'Set up a different account' ); ?></a>
|
||||
<a href="#" class="toggle-jp-connect"><?php esc_html_e( 'Connect with Jetpack', 'akismet' ); ?></a>
|
||||
<a href="#" class="toggle-ak-connect"><?php esc_html_e( 'Set up a different account', 'akismet' ); ?></a>
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
|
|
|
|||
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
//phpcs:disable VariableAnalysis
|
||||
// There are "undefined" variables here because they're defined in the code that includes this file as a template.
|
||||
|
||||
?>
|
||||
|
||||
<form name="akismet_activate" action="https://akismet.com/get/" method="POST" target="_blank">
|
||||
<input type="hidden" name="passback_url" value="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>"/>
|
||||
<input type="hidden" name="blog" value="<?php echo esc_url( get_option( 'home' ) ); ?>"/>
|
||||
<input type="hidden" name="redirect" value="<?php echo isset( $redirect ) ? $redirect : 'plugin-signup'; ?>"/>
|
||||
<input type="submit" class="<?php echo isset( $classes ) && count( $classes ) > 0 ? implode( ' ', $classes ) : 'akismet-button';?>" value="<?php echo esc_attr( $text ); ?>"/>
|
||||
</form>
|
||||
<button type="submit" class="<?php echo isset( $classes ) && count( $classes ) > 0 ? esc_attr( implode( ' ', $classes ) ) : 'akismet-button'; ?>" value="<?php echo esc_attr( $text ); ?>"><?php echo esc_attr( $text ) . '<span class="screen-reader-text">' . esc_html__( '(opens in a new tab)', 'akismet' ) . '</span>'; ?></button>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -7,5 +7,5 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<iframe src="<?php echo esc_url( sprintf( '//akismet.com/web/1.0/user-stats.php?blog=%s&api_key=%s&locale=%s', urlencode( get_option( 'home' ) ), Akismet::get_api_key(), get_locale() ) ); ?>" width="100%" height="2500px" frameborder="0"></iframe>
|
||||
<iframe src="<?php echo esc_url( sprintf( 'https://tools.akismet.com/1.0/user-stats.php?blog=%s&api_key=%s&locale=%s', urlencode( get_option( 'home' ) ), esc_attr( Akismet::get_api_key() ), esc_attr( get_locale() ) ) ); ?>" width="100%" height="2500px" frameborder="0"></iframe>
|
||||
</div>
|
||||
|
|
@ -39,7 +39,7 @@ class Domain_Mapping {
|
|||
* @return Domain_Mapping|null
|
||||
*/
|
||||
public static function init() {
|
||||
if ( is_null( self::$instance ) ) {
|
||||
if ( self::$instance === null ) {
|
||||
self::$instance = new Domain_Mapping();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class Jetpack_Modules_Overrides {
|
|||
* @return array The array of module overrides.
|
||||
*/
|
||||
public function get_overrides( $use_cache = true ) {
|
||||
if ( $use_cache && ! is_null( $this->overrides ) ) {
|
||||
if ( $use_cache && $this->overrides !== null ) {
|
||||
return $this->overrides;
|
||||
}
|
||||
|
||||
|
|
@ -131,7 +131,7 @@ class Jetpack_Modules_Overrides {
|
|||
* @return Jetpack_Modules_Overrides
|
||||
*/
|
||||
public static function instance() {
|
||||
if ( is_null( self::$instance ) ) {
|
||||
if ( self::$instance === null ) {
|
||||
self::$instance = new Jetpack_Modules_Overrides();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -438,7 +438,8 @@ class Jetpack_AMP_Support {
|
|||
*/
|
||||
public static function amp_enqueue_sharing_css() {
|
||||
if (
|
||||
self::is_amp_request()
|
||||
Jetpack::is_module_active( 'sharedaddy' )
|
||||
&& self::is_amp_request()
|
||||
&& ! self::is_amp_legacy()
|
||||
) {
|
||||
wp_enqueue_style( 'sharedaddy-amp', plugin_dir_url( __DIR__ ) . 'modules/sharedaddy/amp-sharing.css', array( 'social-logos' ), JETPACK__VERSION );
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ function activate() {
|
|||
$result = activate_plugin( PLUGIN_FILE );
|
||||
|
||||
// Activate_plugin() returns null on success.
|
||||
return is_null( $result );
|
||||
return $result === null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class Jetpack_Search_Debug_Bar extends Debug_Bar_Panel {
|
|||
* @return Jetpack_Search_Debug_Bar
|
||||
*/
|
||||
public static function instance() {
|
||||
if ( is_null( self::$instance ) ) {
|
||||
if ( self::$instance === null ) {
|
||||
self::$instance = new Jetpack_Search_Debug_Bar();
|
||||
}
|
||||
return self::$instance;
|
||||
|
|
@ -116,7 +116,7 @@ class Jetpack_Search_Debug_Bar extends Debug_Bar_Panel {
|
|||
unset( $last_query_info['response'] );
|
||||
unset( $last_query_info['response_code'] );
|
||||
|
||||
if ( is_null( $last_query_info['es_time'] ) ) {
|
||||
if ( $last_query_info['es_time'] === null ) {
|
||||
$last_query_info['es_time'] = esc_html_x(
|
||||
'cache hit',
|
||||
'displayed in search results when results are cached',
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ function activate() {
|
|||
$result = activate_plugin( PLUGIN_FILE );
|
||||
|
||||
// Activate_plugin() returns null on success.
|
||||
return is_null( $result );
|
||||
return $result === null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ function activate() {
|
|||
$result = activate_plugin( PLUGIN_FILE );
|
||||
|
||||
// Activate_plugin() returns null on success.
|
||||
return is_null( $result );
|
||||
return $result === null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class WC_Services_Installer {
|
|||
* @return object The WC_Services_Installer object.
|
||||
*/
|
||||
public static function init() {
|
||||
if ( is_null( self::$instance ) ) {
|
||||
if ( self::$instance === null ) {
|
||||
self::$instance = new WC_Services_Installer();
|
||||
}
|
||||
return self::$instance;
|
||||
|
|
@ -146,7 +146,7 @@ class WC_Services_Installer {
|
|||
$result = activate_plugin( 'woocommerce-services/woocommerce-services.php' );
|
||||
|
||||
// Activate_plugin() returns null on success.
|
||||
return is_null( $result );
|
||||
return $result === null;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,482 @@
|
|||
|
||||
### This is a list detailing changes for all Jetpack releases.
|
||||
|
||||
## 10.7 - 2022-02-28
|
||||
## 11.0 - 2022-06-07
|
||||
### Enhancements
|
||||
- Publicize: load Publicize only if the Publicize module is active. [#24557]
|
||||
- Sharing: update the email sharing button to use mailto links instead of server submissions. [#24040]
|
||||
|
||||
### Bug fixes
|
||||
- Comments: update UI to reflect that Google accounts are no longer a sign-in option. [#24528]
|
||||
- VideoPress: remove strict comparison to fix average color parameter. [#24606]
|
||||
- Stats: ensure the Stats column can always be displayed, even when the post type does not support comments. [#24482]
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Added TS check to build process [#24329]
|
||||
- Add Jetpack Backup 1GB to several lists/components of supported products [#24541]
|
||||
- Admin: update products icons. [#24559]
|
||||
- Changed logic to initialize Publicize classes. [#24451]
|
||||
- Custom CSS: Add WoA check to prevent duplicate menu item on plan-less sites. [#24631]
|
||||
- E2E tests: fix broken Mailchimp test [#24534]
|
||||
- Fix changelog and readme [#24488]
|
||||
- Infinite scroll: update support for Google Analytics feature to track infinite scroll. [#24533]
|
||||
- Init 11.0-a.12 [#24487]
|
||||
- Jetpack: correct prices in product descriptions [#24461]
|
||||
- Nonce fix for some phpcs likes cleanup [#24490]
|
||||
- Number format the number of subscribers in the subscribers panel when publishing a post [#24544]
|
||||
- phpcs changes for likes [#24368]
|
||||
- Publicize Components: Move the remaining components and hooks required for Jetpack Social [#24464]
|
||||
- Refactor to use hasActiveSiteFeature to centralize the source of truth to WPCOM_Features. [#24152]
|
||||
- Related Posts: avoid fatal errors when calling related posts with multiple exclusions. [#24629]
|
||||
- Sync: Add '_jetpack_blogging_prompt_key' to rest api public metadata via the rest_api_allowed_public_metadata filter [#24515]
|
||||
- Updated package dependencies. [#24432]
|
||||
- Use correct `COOKIEPATH` constant. [#24516]
|
||||
- VideoPress: make sure "false" will be casted as false for useaveragecolor [#24615]
|
||||
|
||||
## 11.0-a.11 - 2022-05-24
|
||||
### Bug fixes
|
||||
- Assistant: fix unclickable banner dismiss button. [#24459]
|
||||
- Widget Visibility: avoid PHP warnings when loading widgets in some scenarios. [#24460]
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Blocks: remove PocketCasts embed block variation. [#24463]
|
||||
- General: improve consistency of available modules. [#24454]
|
||||
- Moved some of the Publicize editor plugin components to the publicize-components package. [#24408]
|
||||
- PHPCS: cleanup SAL files. [#23787] [#24388]
|
||||
- Publicize: add the post field to the Publicize package. [#24324]
|
||||
- Sharing: fix all PHPCS errors. [#24412]
|
||||
- Sync callables whitelist: remove 'active_modules' since Sync adds them anyway. [#24453]
|
||||
- Unit Tests: fix all PHPCS errors. [#24416]
|
||||
- Updated package dependencies. [#24396] [#24449] [#24453] [#24468]
|
||||
|
||||
## 11.0-a.9 - 2022-05-19
|
||||
### Improved compatibility
|
||||
- Stats: remove unnecessary type attribute from style element. [#24427]
|
||||
|
||||
### Bug fixes
|
||||
- VideoPress: fix validation errors for core video block usage. [#24422]
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Disable whitespace optimization as it can cause invalidation errors with Gutenberg blocks that use inline CSS. [#24069]
|
||||
- Update changelog and readme files [#24414] [#24395] [#24419] [#24399]
|
||||
|
||||
## 11.0-a.7 - 2022-05-18
|
||||
### Enhancements
|
||||
- Email subscriptions: update the default body of the "Confirmation request" email. [#24389]
|
||||
- Payments Blocks: refactor the product memberships store to reduce complexity and improve speed. [#24333]
|
||||
- VideoPress: add support for automatic seekbar color. [#24330]
|
||||
|
||||
### Improved compatibility
|
||||
- General: improve the connection sharing between Jetpack and standalone plugins. [#24309]
|
||||
|
||||
### Bug fixes
|
||||
- WAF: add activation/deactivation hooks for WAF feature. [#24153]
|
||||
- Publicize: add logic to allow sharing via ajax requests. [#24387]
|
||||
- Payment Block: ensure payment block can only auto-select an existing product. [#24407]
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Moved SocialServiceIcon component from Jetpack Icons.js file to js-package/components. Updated it's ref in the Jetpack plugin directory [#23795]
|
||||
- Added jetpack v4 publicize end-point. [#24293]
|
||||
- Admin Menu: Refactor upsell nudge to be async [#24304]
|
||||
- Dashboard: adapt support message wording based on the platform where it is displayed. [#24332]
|
||||
- Updated Jetpack Scan feature list. [#23863]
|
||||
- Fix new PHPCS sniffs. [#24366]
|
||||
- JSON API: update the theme endpoint with information concerning pending updates. [#24392]
|
||||
- PHPCS: cleanup VideoPress module files, fixes for infinite scroll and tiled gallery. [#24351] [#24342] [#24352]
|
||||
- Remove unused JS client components. [#24319]
|
||||
- Remove search widget CTA on uneligible themes [#24386]
|
||||
- Updated package dependencies.
|
||||
|
||||
## 11.0-a.5 - 2022-05-10
|
||||
### Other changes
|
||||
- Publicize: Fix namespacing. [#24317]
|
||||
|
||||
## 11.0-a.3 - 2022-05-10
|
||||
### Enhancements
|
||||
- Custom CSS: add support for CSS properties: accent-color, aspect-ratio, gap, text-underline-offset. [#24057]
|
||||
- Latest Instagram Posts Block: improve performance of the block by adding lazy load for the images. [#24279]
|
||||
- Payment Blocks: reset form data to default values after creating a subscription. [#24175]
|
||||
- VideoPress: improve Extensibility of Privacy Setting filter by adding the embedded post id. [#23949]
|
||||
- VideoPress: improve help message of VideoPress Privacy Setting at the block level. [#24184]
|
||||
|
||||
### Improved compatibility
|
||||
- General: improve connection sharing between Jetpack and Jetpack standalone plugins. [#24272]
|
||||
|
||||
### Bug fixes
|
||||
- Custom CSS: ensure the Additional CSS sub-menu link displays correctly. [#23670]
|
||||
- Subscriptions: fix typo in confirmation message. [#24291]
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Custom Content Types: fix PHPCS errors with Nova restaurant menu management. [#24212]
|
||||
- Fix the changelog and readme [#24246]
|
||||
- Init for 11.0-a.1 [#24245]
|
||||
- PHPCS: fix linting errors in the Comic CPT file. [#24186]
|
||||
- Publicize filter comment edited to move the relevant @since tag to the top [#24242]
|
||||
- Remove use of `node-polyfill-webpack-plugin`. [#24233]
|
||||
- Replace Akismet plan check with feature check [#24211]
|
||||
- Updated package dependencies. [#24167]
|
||||
- Use browser URL API instead of polyfills. [#24234]
|
||||
- Added unit tests for membership product store [#23873]
|
||||
- Assistant: Update illustrations [#24061]
|
||||
- Updates entrypoints in to My Jetpack licensing activation [#24189]
|
||||
- Removed keepPlaceholderOnFocus property from donations form and dialogue blocks since the property was removed from Gutenberg. [#24269]
|
||||
|
||||
## 11.0-a.1 - 2022-05-04
|
||||
### Enhancements
|
||||
- WAF: add settings UI for Jetpack Firewall [#23769]
|
||||
- Google Fonts: add additional fonts to the list of available fonts. [#24098]
|
||||
- Payment Block: refactors the donation block by unifying Stripe Nudge component. [#24177]
|
||||
|
||||
### Improved compatibility
|
||||
- Contact Form: ensure the option to export forms to a csv file works with the upcoming version of WordPress, 6.0. [#24173]
|
||||
- General: Jetpack is now fully compatible with the upcoming version of WordPress, 6.0. [#24083]
|
||||
- General: Jetpack now requires a more recent version of WordPress (5.9), since a new version of WordPress (6.0) will be available soon. [#24083]
|
||||
- General: remove backwards compatibility code now that Jetpack requires WordPress 5.9. [#24086]
|
||||
|
||||
### Bug fixes
|
||||
- Custom CSS: avoid PHP notice when using the Sass preprocessor on PHP 7.4+. [#24135]
|
||||
- VaultPress: fixes a bug that caused certain cards in the Dashboard to flicker in some circumstances when VaultPress is active. [#24194]
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Activity: Removed commented-out code [#24126]
|
||||
- Add missing JavaScript dependencies. [#24096]
|
||||
- Client: Removed unused planClass props [#24195]
|
||||
- Custom Content Types: bring changes from WordPress.com to Jetpack to keep the files in sync. [#24150]
|
||||
- Custom Content Types: fix PHPCS linting errors in CPT module files, part 2 [#24154]
|
||||
- Custom Content Types: solve PHPCS errors for Portfolios. [#23848]
|
||||
- Init 11.0-a.0 [#24087]
|
||||
- Moved the Options class to Connection package. [#24095]
|
||||
- My Plan: Use feature check for search card [#24166]
|
||||
- One Click Restores: Uses feature checks to determine backup type [#24131]
|
||||
- Performance-Search: Converts plan checks to feature checks [#24162]
|
||||
- PHPCS: changes for endpoints, root functions [#24029]
|
||||
- Recommendations: Use feature check for one-click restores [#24165]
|
||||
- Remove use of `pnpx` in preparation for pnpm 7.0. [#24210]
|
||||
- Renaming class file to comply with class naming rules in phpcs. [#24136]
|
||||
- Replace uses of `create-react-class` with modern syntax. [#24055]
|
||||
- Rewind: Remove unused sitePlan information [#24128]
|
||||
- Search: Converted At a Glance search box to using feature checks. [#24127]
|
||||
- Security Settings: Use feature checks for backup and scan [#24163]
|
||||
- Settings: Display upsells using feature checks [#24180]
|
||||
- Updated package dependencies. [#24095]
|
||||
- Updating 10.9 beta changelog and readme [#24091]
|
||||
- Updating to-test.md [#24088]
|
||||
- Updated Backups box in At a Glance to use feature checks [#24121]
|
||||
- We now lock the execution of get products in a non blocking way for the execution thread. [#24140]
|
||||
|
||||
## 10.9.1 - 2022-05-19
|
||||
### Improved compatibility
|
||||
- Contact Form: ensure the option to export forms to a CSV file works with the upcoming version of WordPress, 6.0. [#24173]
|
||||
- General: Jetpack is now fully compatible with the upcoming version of WordPress, 6.0. [#24083]
|
||||
- General: Jetpack now requires a more recent version of WordPress (5.9). [#24083]
|
||||
- General: remove backwards compatibility code now that Jetpack requires WordPress 5.9. [#24086]
|
||||
|
||||
### Bug fixes
|
||||
- Publicize: ensure that Publicize works when publishing posts via AJAX requests, like when using the Elementor plugin. [#24387]
|
||||
- Secure Sign On: add the secure and httponly attribute to cookie used to log in. [#24418]
|
||||
|
||||
## [10.9] - 2022-05-03
|
||||
### Enhancements
|
||||
- Dashboard: update the recommendation flow to include recommendations for VideoPress as well as discounts.
|
||||
- Google Fonts: update the Google Fonts module to be compatible with the most recent version of the WP_Webfonts API.
|
||||
- Payments Block: add additional features to the payment management control block (ability to mark as donation, and enabling customers to pick own amount).
|
||||
- Payments Block: add new property that establishes if the membership is editable by the site editor.
|
||||
- VideoPress: improve upload spreed, by increasing chunk size to 10Mb for resumable uploads.
|
||||
|
||||
### Bug fixes
|
||||
- Assistant: style and CTA changes plus introductory offer fixes.
|
||||
- Payments Block: change the sidebar display when clicking 'add new subscription', as well as using an external link in the Customizer.
|
||||
- Payments Block: remove the dropdown icon from the product management control subscription selector.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Add checks to eliminate warnings in PHP log.
|
||||
- Added analytics events for enabling condtional recommendations and viewing conditional recommendations.
|
||||
- Converted BackupUpgrade and BarChart to TypeScript.
|
||||
- E2E tests: add extra checks in connection tests.
|
||||
- E2E tests: improve connection tests.
|
||||
- Fix failing tests because of an editor type mismatch caused by imported packages side-effects.
|
||||
- Init 10.9-a.8
|
||||
- Load block editor styles inline for iframed editors on WoA sites.
|
||||
- Move RecordMeterBar to js-packages.
|
||||
- My Jetpack: Updated to require licensing package when licensing UI enabled.
|
||||
- Nav-unification: Update nudge to support Pro plan.
|
||||
- Payments Block: Display the product manager on free plan sites connected to Stripe.
|
||||
- Premium Content blocks: subscription button from emails and notifications opens the checkout dialog (WordPress.com specific).
|
||||
- Remove code in native files that was causing the rnmobile build to fail.
|
||||
- Revert Jetpack not hard disconnecting on deactivation
|
||||
- Updated package dependencies.
|
||||
- Update package.json metadata.
|
||||
- Updating changelog and readme for 10.9-a.7
|
||||
- VideoPress: Fixing issue in apiFetch middleware where request bodies were assumed to always be objects with a "file" property; this is only true for requests to the media endpoint.
|
||||
|
||||
## 10.9-a.7 - 2022-04-19
|
||||
### Enhancements
|
||||
- Connection: Preventing other Jeptpack-connected plugins from disconnecting when deactivating Jetpack from the plugins screen.
|
||||
- Recommendations: Add recommendation for anti-spam.
|
||||
|
||||
### Improved compatibility
|
||||
- WordAds: Remove the suggestion to use the ad widget from the dashboard.
|
||||
- WordAds: Change Jetpack Ads wording to be WordAds.
|
||||
|
||||
### Bug fixes
|
||||
- Publicize: Ensure bulk publishing posts won’t publicize those posts.
|
||||
- Random Redirect: Fixes 'set author name' functionality on author archives.
|
||||
- VideoPress: Fixes issue adding video descriptions and metadata via the WordPress.com dashboard.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Added TypeScript support.
|
||||
- Dashboard: Update copy to reflect new WordPress.com Pro plan.
|
||||
- Jetpack Connection: Remove any remaining in-place flows.
|
||||
- Moved licensing endpoints from the Jetpack plugin to the Licensing package.
|
||||
- Moved enhanced-open-graph.php out of the Publicize module.
|
||||
- Moved gutenberg-base-styles.scss file to js-packages/base-styles and updated its imports in the Jetpack plugin directory.
|
||||
- Moved images that are used for licensing components to licensing package to minimize external dependencies.
|
||||
- Refactor Jetpack class to move some functions into Modules and File packages.
|
||||
- Security Settings: convert plan checks to be feature checks.
|
||||
- Stats: Add individual filters for JS and AMP stat footer data.
|
||||
- Updated jetpack-waf package version.
|
||||
- Updated package dependencies.
|
||||
- Updated Sync tests.
|
||||
- Various PHPCS changes.
|
||||
|
||||
## 10.9-a.5 - 2022-04-14
|
||||
### Bug fixes
|
||||
- Comments: Checking that Jetpack comments are supported before requiring nonce verification.
|
||||
|
||||
## 10.9-a.3 - 2022-04-12
|
||||
### Major Enhancements
|
||||
- VideoPress: add settings for controlling VideoPress video privacy.
|
||||
|
||||
### Enhancements
|
||||
- Dashboard: Various improvements to recommendations.
|
||||
- Payments block: Improves block selection behavior.
|
||||
- Protect: Renamed to "Brute Force Protection" in the UI.
|
||||
- VideoPress: Enable the resumable uploader.
|
||||
|
||||
### Improved compatibility
|
||||
- Custom CSS: Improve saving for legacy Custom CSS.
|
||||
- Improvements to backwards compatibility with other Jetpack plugins.
|
||||
|
||||
### Bug fixes
|
||||
- Button block: Removes default CSS that would overwrite core and theme styles.
|
||||
- Payments block: Makes the ‘one time’ subscription recurrence always available.
|
||||
- Payments block: Fixes bug regarding creation of new Payment blocks.
|
||||
- Pay with PayPal: Fixes issue with saving widget in Customizer.
|
||||
- Slideshow block: Fix grid blowout when Slideshow block is inserted inside a Layout Grid block (in editor).
|
||||
- Top Posts Widget: ensure hooks retain existing behavior when adding extra data before or after each post.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Assistant: add timed discount card.
|
||||
- Build sass files with Webpack.
|
||||
- Customizer messages: adjust messaging for new plan.
|
||||
- Fix an invalid JavaScript `typeof` check.
|
||||
- Fix e2e tests.
|
||||
- Init 10.9-a.2
|
||||
- Minifiy non-sass css with Webpack.
|
||||
- Move and update postcss config.
|
||||
- PHPCS changes for JSON endpoint.
|
||||
- Remove indirect dependency on an obselete version of the `core-js` package.
|
||||
- Remove use of `gulp` for the build.
|
||||
- Updated a composer package version.
|
||||
- Updated package dependencies.
|
||||
|
||||
## 10.9-a.1 - 2022-04-06
|
||||
### Enhancements
|
||||
- Payments Block: Re-loading the page will not cause payment form to open again.
|
||||
|
||||
### Improved compatibility
|
||||
- Dashboard: Display block settings even when the Classic Editor plugin is active.
|
||||
- Mailchimp Popup widget: Widget deprecation.
|
||||
|
||||
### Bug fixes
|
||||
- Contact Form: Ensure the form's input fields inherit a default font size.
|
||||
- Subscribe Block: Fix default styles block setting selection to "Split".
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Blocks: Add Pocket Casts dev block (for internal use only).
|
||||
- Creating and verifying a nonce for the Jetpack comments form.
|
||||
- E2E tests - bumped dependencies versions.
|
||||
- E2E tests: added custom error messages to the expect functions.
|
||||
- Janitorial: Refactor classes into shared package.
|
||||
- Re-added the jetpack-waf package to update the autoloader files in the composer.lock.
|
||||
- Removed eslint dependency which will now be loaded from root directory.
|
||||
- Updated package dependencies.
|
||||
- PHPCS updates to bring in line with WordPress standards. Files affected include SAL, lib, Custom CSS, JSON endpoints.
|
||||
- SEO Tools: Use the new feature eligibility checks for WordPress.com sites.
|
||||
- Made changes updating WordPress.com Personal plans to Pro.
|
||||
|
||||
## [10.8] - 2022-04-05
|
||||
### Enhancements
|
||||
- Blocks: make settings discoverable and toggleable, and add a card to highlight the blocks available from Jetpack on the dashboard.
|
||||
- Form Block: offer option to install/activate the Jetpack CRM plugin from the Form block settings panel.
|
||||
- Payments Block: introduce new post-publish panel to highlight the options available with Payments blocks.
|
||||
- VideoPress: added support for the `muted`, `controls` and `playsinline` properties on the 'wpvideo' and VideoPress shortcodes.
|
||||
|
||||
### Improved compatibility
|
||||
- Shortcodes: adds the Jetpack namespace to slideshow shortcode CSS class names.
|
||||
|
||||
### Bug fixes
|
||||
- Carousel: fix nonce check issue with Carousel comments
|
||||
- Form Block: do not display the CRM integration option to non-admins.
|
||||
- Subscribe Block: ensure subscription panels are not shown in the page editor, or when the site is private.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Adding language attributes to code blocks.
|
||||
- Add support for WordPress.com Pro plan.
|
||||
- Add uloggedin parameter for reporting.
|
||||
- Assistant: make call-to-actions point to checkout page.
|
||||
- Block Form: update required Jetpack CRM version.
|
||||
- Documented the `rna` prop of the Button component.
|
||||
- E2E tests: improve assertions for sync tests.
|
||||
- Fix ProductManagementControls not being able to open the block settings sidebar on site and widgets editor.
|
||||
- Fix VS Code ESLint and prettier config.
|
||||
- Google Fonts: mark the feature as Beta, and remove toggle from dashboard.
|
||||
- Jetpack CRM: adjust banner's wording.
|
||||
- Payment Blocks: Added links to manage subscriptions and fees to the Product Management controls.
|
||||
- Payments Block: use the product management controls to manage subscriptions. Migrated the Payments Block to a functional component and cleaned up code.
|
||||
- Payments Block: we now provide a way in which we can propagate the controls to the child blocks.
|
||||
- Payments Button Block: add back the upgrade nudge.
|
||||
- Removed unneeded calls to Atomic_Plan_Manager.
|
||||
- Search: Add search feature to benefits API.
|
||||
- Search: removed migrated tests.
|
||||
- Subscriptions Block: make the block messages clearer.
|
||||
- Updated package dependencies.
|
||||
- Various PHPCS updates.
|
||||
- WordPress.com Toolbar: avoid PHP notices when locale is not defined.
|
||||
- WordPress.com Toolbar: check if function exists before use.
|
||||
|
||||
## 10.8-a.11 - 2022-03-25
|
||||
|
||||
## 10.8-a.9 - 2022-03-23
|
||||
### Major Enhancements
|
||||
- QR Post: add new feature which automatically generates QR codes for published posts. When scanned, the QR code will link visitors to the post. If a site has a custom logo set, it will be shown in the generated QR code image.
|
||||
|
||||
### Enhancements
|
||||
- External Media: add Openverse as an external Media provider.
|
||||
- Payment Block: clicking on payment links from email or WordPress.com Notifications/Reader will correctly open the corresponding payment form.
|
||||
- Dashboard: show Search benefits on the Jetpack disconnection screen.
|
||||
|
||||
### Improved compatibility
|
||||
- Sharing: avoid warnings when the feature is not active on a site that uses the AMP plugin.
|
||||
|
||||
### Bug fixes
|
||||
- Calendly Block: ensure it can be displayed inline when using a block enabled theme.
|
||||
- VideoPress: fix broken styles on resumable uploader component.
|
||||
- Pay with Paypal Block: fix inconsistent currency formatting.
|
||||
- WordAds: fix defaulting to "house ad" mode for new activations.
|
||||
- Publicize: prevent newlines from being stripped from a custom Publicize message in the classic editor.
|
||||
- QR Post: improve the inner logo sizing.
|
||||
- Shortlinks: display the shortlinks interface in the block editor for all post types that support shortlinks.
|
||||
- Top Posts Widget: display a fallback list of posts to admins when there are no popular posts to display.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- AAG: add Backup storage info.
|
||||
- Added tracking for backup storage info bar chart.
|
||||
- Connection: Jetpack now relies on the Connection package webhooks for 'authorize' and 'authorize_redirect' actions.
|
||||
- E2E tests: move search tests into search plugin folder
|
||||
- PHPCS changes for the related posts module.
|
||||
- Remove use of `strptime`, which was only used in a branch for compatibility with PHP before 5.3.
|
||||
- Search: use config package to initialize the search package.
|
||||
- Licenses: show the product name if there is only one user license to be activated.
|
||||
- Unit tests: Update Sync related unit test.
|
||||
- Updated package dependencies.
|
||||
- WP API endpoints: fix PHPCS linting errors, part 1.
|
||||
- Moved plan-utils.js file from Jetpack folder to shared-extension-utils. Also moved requiresPaidPlan from register-jetpack-block to plan-utils.
|
||||
- Payments: move the Stripe Connect toolbar button into a shared component, and add event tracking on it.
|
||||
- Premium Content Block: move the product management system to a shared component.
|
||||
- WPcom: hijack feature eligibility checks on WP.com sites, since they use an independent gateway system.
|
||||
- WPcom: optimize user blog counting on admin menu for better performance.
|
||||
- WPcom: sync class.json-api-endpoints.php changes from D76475.
|
||||
- Premium Content Block: fix a Redux store middleware regression on older Gutenberg versions.
|
||||
|
||||
## 10.8-a.7 - 2022-03-15
|
||||
### Enhancements
|
||||
- Dashboard: add toggle to enable new Google Fonts feature.
|
||||
- Jetpack: add QRPost feature which generates QR codes for published posts. Currently a JETPACK_BETA_BLOCKS feature.
|
||||
- Premium Content block: use a drop down menu rather than two buttons to switch between the guest/subscriber views.
|
||||
- VideoPress: updated design of resumable uploader block.
|
||||
|
||||
### Improved compatibility
|
||||
- General: clean up use of deprecated FILTER_SANITIZE_STRING constant. Also mark WPCom_Markdown::get_post_screen_post_type as deprecated due to lack of use.
|
||||
|
||||
### Bug fixes
|
||||
- Google Analytics: fix showing an upgrade button with the latest Jetpack security plans.
|
||||
- Jetpack: fix missing "Connect User" button after restoring a connection.
|
||||
- Pay with PayPal widget: enable widget to work in block-based widget editor and full site editor.
|
||||
- SEO Tools: ensure Twitter cards get correct description when a site has a blank tagline.
|
||||
- Payments: swap JETPACK_VERSION for the correct JETPACK__VERSION.
|
||||
- Premium Content block: when a visitor subscribes, they now see the premium content without needing to reload the page.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Admin Page: use a dynamic version in cache buster on dev environment.
|
||||
- Admin Page: remove wp_kses() as it's not needed for static.html.
|
||||
- Fix Sync related flaky test.
|
||||
- Google Fonts: update the method used to preconnect Fonts source domain.
|
||||
- If the mapbox API call returns a completely invalid response, treat it as a failure rather than a success.
|
||||
- Moved with-has-warning-is-interactive-class-names folder to js-package/shared-extension-utils and updated imports.
|
||||
- PHPCS changes for the Pay with Paypal feature.
|
||||
- Search: improve Search E2E tests stability.
|
||||
- Search: moved globals to a class for sake of autoloading correctly.
|
||||
- Updated package dependencies.
|
||||
|
||||
## 10.8-a.5 - 2022-03-08
|
||||
### Bug Fixes
|
||||
- Fixes an issue preventing WooCommerce from upgrading to 6.3.0.
|
||||
|
||||
## 10.8-a.3 - 2022-03-08
|
||||
### Enhancements
|
||||
- Jetpack: assistant style updates and other improvements.
|
||||
- Jetpack: using the new Webfont API in Gutenberg, registers a selection of Google fonts for use with block and Global styles.
|
||||
- Markdown block: add default spacing controls.
|
||||
- Masterbar: make the Desktop Switcher look the same between Calypso and wp-admin.
|
||||
- Payments Block: adds a link to the support reference page on the block configuration panel.
|
||||
- Payment Button Block: make Stripe connection button visible from child block elements.
|
||||
|
||||
### Improved compatibility
|
||||
- Premium Content Block: prevent block from being nested inside itself.
|
||||
- Various Blocks: remove deprecated attributes from Button components.
|
||||
- CLI Tools: ensure WP CLI is present before extending the class.
|
||||
|
||||
### Bug fixes
|
||||
- Jetpack: remove the duplicated `jetpack_relatedposts_returned_results filter`.
|
||||
- Premium Content Block: login button now redirects to the correct post instead of to a 404 page when the URL contains characters that have been previously encoded.
|
||||
- Payment Blocks: fixes an issue with the upgrade banner being obscured from all payment blocks.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Jetpack: added jetpack_upload_handler_can_upload filter for blocking specific file uploads.
|
||||
- Admin pages: reverting code added in #23219 to fix a bug.
|
||||
- Fix newly-detected PHPCS sniffs in some tests. Also fix a test mock that was returning false rather than null like the class it's mocking would.
|
||||
- PHPCS errors and notices fixed for admin pages
|
||||
- Protect: simplify the transient clean up process preparation.
|
||||
- QR Plugin: update registration
|
||||
- Refactor ExternalLink to use core package
|
||||
- Search: Move customizer integration into search package
|
||||
- Stats: improve accessibility and performance for the admin dashboard widget.
|
||||
- Update `@size-limit/preset-app` dependency to match `size-limit`.
|
||||
- Jetpack: add post-publish-qr-post-panel block editor plugin.
|
||||
|
||||
## 10.8-a.1 - 2022-03-02
|
||||
### Enhancements
|
||||
- Payment Blocks: add a unified introduction to payment blocks to make it easier to select the correct one.
|
||||
- Payment Blocks: add more keywords to payments blocks so they're easier to find.
|
||||
- Subscribe Block: add pre/post-publish notices.
|
||||
- Subscribe Block: block setting updates including name change, display of current subscribers, and a new style option.
|
||||
- Tiled Gallery: add background color block setting.
|
||||
- Various Blocks: update Contact Info, Markdown, and Tiled Gallery blocks to include margin design tools.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- E2E: add tests for clicking link to open overlay.
|
||||
- E2E: restore plugin update test.
|
||||
- WAF: include the dependency of the WAF package in the plugin zip.
|
||||
- Moved site benefits request out of PHP to React, and guard against no connected plugins.
|
||||
- My Jetpack: do not add My Jetpack action link to plugins page.
|
||||
- Search E2E: support block themes.
|
||||
- Sync: changes added to wpcom to Jetpack.
|
||||
- Sync: integration tests optimization.
|
||||
- Updated package dependencies.
|
||||
- WoA: add missing plugins sidebar menu for Atomic site with unsupported plan.
|
||||
|
||||
## [10.7] - 2022-02-28
|
||||
### Enhancements
|
||||
- Dashboard: improve performance of plugins page.
|
||||
- Subscribe block: various changes, including a name change, how the display for current subscribers is shown, and new styling options and enhancements.
|
||||
|
|
@ -140,7 +615,7 @@
|
|||
- Reduced the data set for the Search Sync tests to speed up the process.
|
||||
- Update internal logic for rendering Dashboard sections.
|
||||
|
||||
## 10.6 - 2022-02-01
|
||||
## [10.6] - 2022-02-01
|
||||
### Enhancements
|
||||
- Contact Info and Markdown Blocks: add color, typography and spacing features.
|
||||
- Dashboard: support Beta versions of Automattic plugins in plugin cards.
|
||||
|
|
@ -216,7 +691,7 @@
|
|||
### Bug fixes
|
||||
- General: avoid Fatal Errors that may happen during the plugin update process.
|
||||
|
||||
## 10.5 - 2022-01-11
|
||||
## [10.5] - 2022-01-11
|
||||
### Enhancements
|
||||
- Print Styles: additional interactive elements are now hidden when printing posts (e.g. Likes, Recommended Posts, Share this).
|
||||
- VideoPress: add "allow download" option on videos to allow viewers to download the video.
|
||||
|
|
@ -323,7 +798,7 @@
|
|||
- Switched Jetpack plugin to always use `s0.wp.com` and `i0.wp.com` for external resources
|
||||
- Updated package dependencies.
|
||||
|
||||
## 10.4 - 2021-12-07
|
||||
## [10.4] - 2021-12-07
|
||||
### Enhancements
|
||||
- Connection: additional messaging for both connection and disconnection flows.
|
||||
- Dashboard: add option to add Jetpack product using a license key.
|
||||
|
|
@ -465,7 +940,7 @@
|
|||
- Set `convertDeprecationsToExceptions` true in PHPUnit config.
|
||||
- Updated package dependencies.
|
||||
|
||||
## 10.3 - 2021-11-02
|
||||
## [10.3] - 2021-11-02
|
||||
### Enhancements
|
||||
- Dashboard: add a new screen to provide more information about the VideoPress feature.
|
||||
- Dashboard: optimize the size of all product images displayed in the dashboard, to improve overall performance.
|
||||
|
|
@ -599,7 +1074,7 @@
|
|||
- Update Jetpack 10.2 to-test.md
|
||||
- Update Sync Unit Tests to reset settings modified during tests.
|
||||
|
||||
## 10.2 - 2021-10-05
|
||||
## [10.2] - 2021-10-05
|
||||
### Enhancements
|
||||
- Contact Form: add filter to allow customizing email headers.
|
||||
- Contact Form: add two filters to improve anti-spam functionality.
|
||||
|
|
@ -676,7 +1151,7 @@
|
|||
- WPcom: added a new "Inbox" menu item in the left side menu, just after Upgrades item. Only visible for wpcom and atomic sites.
|
||||
- WPcom: fix various shortcode rendering in notifications.
|
||||
|
||||
## 10.1 - 2021-09-07
|
||||
## [10.1] - 2021-09-07
|
||||
### Major Enhancements
|
||||
- Search: add a Gutenberg powered customization interface.
|
||||
|
||||
|
|
@ -781,7 +1256,7 @@
|
|||
- Widget Visibility: fix undefined property reference.
|
||||
- WordPress.com REST API: Add new field to comment endpoint response.
|
||||
|
||||
## 10.0 - 2021-08-03
|
||||
## [10.0] - 2021-08-03
|
||||
### Enhancements
|
||||
- Carousel: add JS-based smooth scroll behavior for the footer buttons.
|
||||
- Carousel: on image zoom, fade out controls. Fade them back in when sized back to original, or the slide is advanced.
|
||||
|
|
@ -863,7 +1338,7 @@
|
|||
- Nav Unification: stores the preferred view after a page switch using the new WP.com quick switcher
|
||||
- Symc: update Sync tests to include case for jetpack_sync_settings options.
|
||||
|
||||
## 9.9 - 2021-07-06
|
||||
## [9.9] - 2021-07-06
|
||||
### Major Enhancements
|
||||
- Carousel: improve carousel usability, performance, accessibility, mobile friendliness.
|
||||
- Carousel: improve stability, fixes multiple bugs.
|
||||
|
|
@ -982,7 +1457,7 @@
|
|||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Obtain lock before performing autoupdates.
|
||||
|
||||
## 9.8 - 2021-06-01
|
||||
## [9.8] - 2021-06-01
|
||||
### Enhancements
|
||||
- Contact Form: the "Feedback > Export CSV" submenu entry has been removed. The export functionality is still available in "Feedback > Form Responses".
|
||||
- Form block: allow replacing the "Message Sent" heading with custom phrase.
|
||||
|
|
@ -1095,7 +1570,7 @@
|
|||
- Update the required version of "connection-ui" package.
|
||||
- WordPress.com API: allow switching from locale variant to primary in Site Settings endpoint.
|
||||
|
||||
## 9.7-beta - 2021-04-27
|
||||
## [9.7] - 2021-05-04
|
||||
### Enhancements
|
||||
- Blocks: improve test coverage for better reliability of each one of Jetpack's blocks.
|
||||
- Carousel: improve general performance.
|
||||
|
|
@ -1119,53 +1594,61 @@
|
|||
- Instant Search: enable link filtering on built-in WordPress taxonomies.
|
||||
- Instant Search: fix handling of customizer controls using refresh.
|
||||
- Instant Search: fix race condition for API responses.
|
||||
- Instant Search: improve settings interface usability.
|
||||
- Instant Search: prevent excluding all post types.
|
||||
- Instant Search: set the number of returned posts using the query's `posts_per_page` value.
|
||||
- Instant Search: improve settings interface usability.
|
||||
- Markdown: fix regression that broke links with single-quoted href attributes.
|
||||
- Sharing / Publicize: properly encode URLs in Open Graph tags.
|
||||
|
||||
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
||||
- Account for Categories and Tags in nav unification
|
||||
- Adds segmentation "from" parameter to the registration request
|
||||
- Always use WP Admin for comments in Atomic sites.
|
||||
- Change copy on in-place connection title to match user-less behavior
|
||||
- Add e2e test to cover Jetpack Assistant's (Recommendations) main flow
|
||||
- Add field for zendesk meta in /me/sites API for mobile apps
|
||||
- Add REST API v2 endpoint for editing transients.
|
||||
- Adds segmentation "from" parameter to the registration request
|
||||
- Add unit tests to cover the functionality of each step of the assistant
|
||||
- Always use WP Admin for comments in Atomic sites.
|
||||
- Autoloader: Use a different suffix for each release to fix #19472.
|
||||
- Avoid PHP Notices in jetpack_blog_display_custom_excerpt() when run outside of the loop / without post context.
|
||||
- Calypso's Tool -> Export menu now honors the 'Show advanced dashboard pages' setting
|
||||
- Change copy on in-place connection title to match user-less behavior
|
||||
- Changelog: update with latest changes that were cherry-picked to 9.6 during Beta period.
|
||||
- Change the command to build Jetpack in E2E tests Github action workflow
|
||||
- Connection: moving the registration REST endpoint to the Connection package.
|
||||
- Docs: fix typos in E2E README
|
||||
- Do not display Protect card for non-admin users while in site-only connection
|
||||
- Do not load modules that require a user when in user-less state
|
||||
- Do not show multiple connection prompts in the Publicize settings card.
|
||||
- E2E tests: fixed hover action
|
||||
- E2E tests: publish Testspace results in folders
|
||||
- Fixed the Upgrades, Jetpack and Settings menu item slugs in WP-Admin
|
||||
- Fix the height of the User Authentication Dialog on the dashboard
|
||||
- Enable the Plans tab for unlinked users
|
||||
- Hide Settings page for non-admin users when in site-only connection
|
||||
- In-Place Connection: partially replace the secondary users connection flow with `InPlaceConnection` component from `@automattic/jetpack-connection` package.
|
||||
- Jetpack Assistant: Add the product slug to the events dispatched when users see and click the product being upsold
|
||||
- Licenses: show the license-aware version of the Connection banner when there is a userless connection established and there are stored licenses.
|
||||
- Licenses: hide the Recommendations banner when the Connection banner is visible.
|
||||
- Licenses: show the license-aware version of the Connection banner when there is a userless connection established and there are stored licenses.
|
||||
- Move JITM's REST API endpoints into the package
|
||||
- Nav Unification: Always show the Theme Showcase (wordpress.com/themes) to WP.com free sites.
|
||||
- Nav Unification: Remove Sharing submenu option from settings menu for wpcom sites.
|
||||
- Nav Unification: remove the box-shadow at the top of the Sidebar.
|
||||
- Nav unification: sync sidebar collapsed state with wpcom.
|
||||
- Nav unification: updated the Jetpack admin menu logo SVG for increased compatibility with colour schemes
|
||||
- Nav Unification: Always show the Theme Showcase (wordpress.com/themes) to WP.com free sites.
|
||||
- Nav Unification: remove the box-shadow at the top of the Sidebar.
|
||||
- Refactored the menu and submenu items replacement for nav unification
|
||||
- Remove broken link to Scan details on Atomic sites
|
||||
- Replaced the string "Add new site" to "Add new site" on masterbar and corrected the unit tests.
|
||||
- Reassign $submenu_file value as null for theme-install.php so correct menu item Add New Theme is highlighted in admin menu.
|
||||
- Record stat of the first time the site is registered
|
||||
- Replace fragile element selectors with a more robust version of themselves
|
||||
- REST API: Allow site-level authentication on plugins, themes, modules endpoints
|
||||
- REST API: Add list modules v1.2 endpoint.
|
||||
- Refactored the menu and submenu items replacement for nav unification
|
||||
- Remove broken link to Scan details on Atomic sites
|
||||
- Removing the password-checker package from the Jetpack plugin composer.json file.
|
||||
- Replaced the string "Add new site" to "Add new site" on masterbar and corrected the unit tests.
|
||||
- Replace fragile element selectors with a more robust version of themselves
|
||||
- REST API: Add list modules v1.2 endpoint.
|
||||
- REST API: Allow site-level authentication on plugins, themes, modules endpoints
|
||||
- Sanitize the hookname used to generate menu item IDs
|
||||
- Show current WPCOM plan in sidebar menu item "Upgrades" when nav unification is enabled.
|
||||
- Update prepare_menu_item_url in admin menu API to replace special characters in URLs with their HTML entities such as ampersand (e.g. convert & to &).
|
||||
- Standardize wording for connecting the user.
|
||||
- Updated package dependencies.
|
||||
- Update prepare_menu_item_url in admin menu API to replace special characters in URLs with their HTML entities such as ampersand (e.g. convert & to &).
|
||||
- WordAds: add translated text for use with inline and sticky slots
|
||||
- WordAds: use WPCOM hosting type for Atomic sites
|
||||
|
||||
|
|
@ -1184,7 +1667,7 @@
|
|||
- Cover block: fix paid-block-media-placeholder interference with flex positioning.
|
||||
- Remove outdated reference to SEO as a paid feature in readme.txt.
|
||||
|
||||
## 9.6 - 2021-04-06
|
||||
## [9.6] - 2021-04-06
|
||||
### Enhancements
|
||||
- Beautiful Math: remove title attribute from generated image.
|
||||
- Blocks: add width option to buttons in Subscriptions, Revue, Form, Calendly, and Payments blocks.
|
||||
|
|
@ -6187,6 +6670,20 @@ Other bugfixes and enhancements at https://github.com/Automattic/jetpack/commits
|
|||
|
||||
- Initial release
|
||||
|
||||
[10.9]: https://wp.me/p1moTy-EHd
|
||||
[10.8]: https://wp.me/p1moTy-CTQ
|
||||
[10.7]: https://wp.me/p1moTy-AMD
|
||||
[10.6]: https://wp.me/p1moTy-AES
|
||||
[10.5]: https://wp.me/p1moTy-Ax4
|
||||
[10.4]: https://wp.me/p1moTy-AmR
|
||||
[10.3]: https://wp.me/p1moTy-z9b
|
||||
[10.2]: https://wp.me/p1moTy-yvR
|
||||
[10.1]: https://wp.me/p1moTy-xYy
|
||||
[10.0]: https://wp.me/p1moTy-xFA
|
||||
[9.9]: https://wp.me/p1moTy-xc9
|
||||
[9.8]: https://wp.me/p1moTy-vGp
|
||||
[9.7]: https://wp.me/p1moTy-vpN
|
||||
[9.6]: https://wp.me/p1moTy-vdU
|
||||
[9.5]: https://wp.me/p1moTy-uSv
|
||||
[9.4]: https://wp.me/p1moTy-tOv
|
||||
[9.3]: https://wp.me/p1moTy-sgZ
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '45382f70204bee8510c3c0a9cbc455c5');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '8f36e745d927eeb2a83d');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '3ccb7777b54dffd7f67e73f287232a25');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'c3d509af36ff361194ae');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
.amp-wp-article .wp-block-jetpack-button{color:#fff}.wp-block-jetpack-button button{border:inherit}
|
||||
.amp-wp-article .wp-block-jetpack-button{color:#fff}
|
||||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
.amp-wp-article .wp-block-jetpack-button{color:#fff}.wp-block-jetpack-button button{border:inherit}
|
||||
.amp-wp-article .wp-block-jetpack-button{color:#fff}
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'b367f5981ea796d744136f71af44040d');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '19f8442b579ba4243436');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper{align-items:center;background:#000;border-radius:2px;box-shadow:inset 0 0 1px #fff;display:flex;font-size:14px;height:48px;justify-content:space-between;padding:0 20px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-title{color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__title{margin-right:10px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button{flex-shrink:0;height:28px;line-height:1;margin-left:auto}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary{background:#e34c84;color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary:hover{background:#eb6594}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary.is-busy{background-image:linear-gradient(-45deg,#e34c84 28%,#ab235a 0,#ab235a 72%,#e34c84 0);background-size:100px 100%}.jetpack-upgrade-plan-banner.block-editor-block-list__block{margin-bottom:0;margin-top:0}.jetpack-upgrade-plan-banner.wp-block[data-align=left],.jetpack-upgrade-plan-banner.wp-block[data-align=right]{height:48px}.jetpack-upgrade-plan-banner.wp-block[data-align=left] .jetpack-upgrade-plan-banner__wrapper,.jetpack-upgrade-plan-banner.wp-block[data-align=right] .jetpack-upgrade-plan-banner__wrapper{max-width:580px;width:100%}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive>*{pointer-events:auto;-webkit-user-select:auto;user-select:auto}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive:after{content:none}.block-editor-warning{border:1px solid #e0e0e0;padding:10px 14px}.block-editor-warning .block-editor-warning__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper{align-items:center;background:#000;border-radius:2px;box-shadow:inset 0 0 1px #fff;display:flex;font-size:14px;height:48px;justify-content:space-between;padding:0 20px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-title{color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__title{margin-right:10px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button{flex-shrink:0;height:28px;line-height:1;margin-left:auto}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary{background:#e34c84;color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary:hover{background:#eb6594}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary.is-busy{background-image:linear-gradient(-45deg,#e34c84 28%,#ab235a 0,#ab235a 72%,#e34c84 0);background-size:100px 100%}.jetpack-upgrade-plan-banner.block-editor-block-list__block{margin-bottom:0;margin-top:0}.jetpack-upgrade-plan-banner.wp-block[data-align=left],.jetpack-upgrade-plan-banner.wp-block[data-align=right]{height:48px}.jetpack-upgrade-plan-banner.wp-block[data-align=left] .jetpack-upgrade-plan-banner__wrapper,.jetpack-upgrade-plan-banner.wp-block[data-align=right] .jetpack-upgrade-plan-banner__wrapper{max-width:580px;width:100%}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive>*{pointer-events:auto;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive:after{content:none}.block-editor-warning{border:1px solid #e0e0e0;padding:10px 14px}.block-editor-warning .block-editor-warning__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
|
|
@ -1 +1 @@
|
|||
.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper{align-items:center;background:#000;border-radius:2px;box-shadow:inset 0 0 1px #fff;display:flex;font-size:14px;height:48px;justify-content:space-between;padding:0 20px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-title{color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__title{margin-left:10px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button{flex-shrink:0;height:28px;line-height:1;margin-right:auto}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary{background:#e34c84;color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary:hover{background:#eb6594}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary.is-busy{background-image:linear-gradient(45deg,#e34c84 28%,#ab235a 0,#ab235a 72%,#e34c84 0);background-size:100px 100%}.jetpack-upgrade-plan-banner.block-editor-block-list__block{margin-bottom:0;margin-top:0}.jetpack-upgrade-plan-banner.wp-block[data-align=left],.jetpack-upgrade-plan-banner.wp-block[data-align=right]{height:48px}.jetpack-upgrade-plan-banner.wp-block[data-align=left] .jetpack-upgrade-plan-banner__wrapper,.jetpack-upgrade-plan-banner.wp-block[data-align=right] .jetpack-upgrade-plan-banner__wrapper{max-width:580px;width:100%}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive>*{pointer-events:auto;-webkit-user-select:auto;user-select:auto}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive:after{content:none}.block-editor-warning{border:1px solid #e0e0e0;padding:10px 14px}.block-editor-warning .block-editor-warning__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper{align-items:center;background:#000;border-radius:2px;box-shadow:inset 0 0 1px #fff;display:flex;font-size:14px;height:48px;justify-content:space-between;padding:0 20px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .banner-title{color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__description,.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .jetpack-upgrade-plan-banner__title{margin-left:10px}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button{flex-shrink:0;height:28px;line-height:1;margin-right:auto}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary{background:#e34c84;color:#fff}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary:hover{background:#eb6594}.jetpack-upgrade-plan-banner .jetpack-upgrade-plan-banner__wrapper .components-button.is-primary.is-busy{background-image:linear-gradient(45deg,#e34c84 28%,#ab235a 0,#ab235a 72%,#e34c84 0);background-size:100px 100%}.jetpack-upgrade-plan-banner.block-editor-block-list__block{margin-bottom:0;margin-top:0}.jetpack-upgrade-plan-banner.wp-block[data-align=left],.jetpack-upgrade-plan-banner.wp-block[data-align=right]{height:48px}.jetpack-upgrade-plan-banner.wp-block[data-align=left] .jetpack-upgrade-plan-banner__wrapper,.jetpack-upgrade-plan-banner.wp-block[data-align=right] .jetpack-upgrade-plan-banner__wrapper{max-width:580px;width:100%}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive>*{pointer-events:auto;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-interactive:after{content:none}.block-editor-warning{border:1px solid #e0e0e0;padding:10px 14px}.block-editor-warning .block-editor-warning__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '4c7559505eb9ebf97638db1701ad18d0');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '6349062f7798f75e185e');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-data', 'wp-dom-ready', 'wp-polyfill'), 'version' => '0682650b58ae9f0e4e0a73b11b77518c');
|
||||
<?php return array('dependencies' => array('wp-data', 'wp-dom-ready', 'wp-polyfill'), 'version' => 'e06afcade5e07b738f17');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,e,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)},9818:function(t){"use strict";t.exports=window.wp.data},47701:function(t){"use strict";t.exports=window.wp.domReady}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,{a:e}),e},r.d=function(t,e){for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){var t;r.g.importScripts&&(t=r.g.location+"");var e=r.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=t+"../"}(),function(){"use strict";r(57836)}(),function(){"use strict";var t=r(47701),e=r.n(t),n=r(9818);const o="jetpack/media-source";e()((function(){var t;const e=null===(t=(0,n.select)(o))||void 0===t?void 0:t.getDefaultMediaSource();var r;e||(null===(r=document)||void 0===r||r.body.classList.add("no-media-source"));document.body.addEventListener("click",(t=>{var r,i,c,u,s;if(null==t||null===(r=t.target)||void 0===r||null===(i=r.classList)||void 0===i||!i.contains("wp-block-jetpack-dialogue__timestamp_link"))return;const a=null===(c=t.target)||void 0===c||null===(u=c.href)||void 0===u||null===(s=u.split("#"))||void 0===s?void 0:s[1];a&&e&&(t.preventDefault(),(0,n.dispatch)(o).setMediaSourceCurrentTime(e.id,a),(0,n.dispatch)(o).playMediaSource(e.id,a))}))}))}()}();
|
||||
!function(){var t={80425:function(t,e,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)},9818:function(t){"use strict";t.exports=window.wp.data},47701:function(t){"use strict";t.exports=window.wp.domReady}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,{a:e}),e},r.d=function(t,e){for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){var t;r.g.importScripts&&(t=r.g.location+"");var e=r.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=t+"../"}(),function(){"use strict";r(80425)}(),function(){"use strict";var t=r(47701),e=r.n(t),n=r(9818);const o="jetpack/media-source";e()((function(){var t;const e=null===(t=(0,n.select)(o))||void 0===t?void 0:t.getDefaultMediaSource();var r;e||(null===(r=document)||void 0===r||r.body.classList.add("no-media-source"));document.body.addEventListener("click",(t=>{var r,i,c,u,s;if(null==t||null===(r=t.target)||void 0===r||null===(i=r.classList)||void 0===i||!i.contains("wp-block-jetpack-dialogue__timestamp_link"))return;const a=null===(c=t.target)||void 0===c||null===(u=c.href)||void 0===u||null===(s=u.split("#"))||void 0===s?void 0:s[1];a&&e&&(t.preventDefault(),(0,n.dispatch)(o).setMediaSourceCurrentTime(e.id,a),(0,n.dispatch)(o).playMediaSource(e.id,a))}))}))}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'react', 'wp-compose', 'wp-dom-ready', 'wp-keycodes', 'wp-polyfill', 'wp-url'), 'version' => 'd27a06eda4201d58e251d41c1fcbf844');
|
||||
<?php return array('dependencies' => array('lodash', 'wp-dom-ready', 'wp-keycodes', 'wp-polyfill', 'wp-url'), 'version' => 'db13ce542535a0710707');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
.wp-block-jetpack-donations .donations__container{border:1px solid #ccc}.wp-block-jetpack-donations .donations__nav{border-bottom:1px solid #ccc;display:flex}.wp-block-jetpack-donations .donations__nav-item{background:#fff;border-left:1px solid #ccc;color:#1e1e1e;cursor:pointer;display:inline-block;flex:1;font-size:16px;font-weight:700;padding:12px;text-align:center}@media(min-width:600px){.wp-block-jetpack-donations .donations__nav-item{padding:16px 24px}}.wp-block-jetpack-donations .donations__nav-item:first-child{border-left:none}.wp-block-jetpack-donations .donations__nav-item.is-active{background:var(--wp-admin-theme-color);color:#fff;cursor:default}.wp-block-jetpack-donations .donations__content{padding:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content{padding:32px}}.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amounts{display:flex;flex-wrap:wrap;margin-bottom:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__amounts{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amount{background-color:#fff;border:1px solid #ccc;color:#1e1e1e;display:inline-block;font-size:16px;font-weight:600;margin-bottom:8px;margin-right:8px;padding:16px 24px;white-space:nowrap}.wp-block-jetpack-donations .donations__amount.has-error{box-shadow:0 0 0 1px #fff,0 0 0 3px #cc1818;outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{margin-left:4px;min-width:60px}.wp-block-jetpack-donations .donations__separator{margin-bottom:16px;margin-top:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__separator{margin-bottom:32px;margin-top:32px}}.wp-block-jetpack-donations .donations__donate-button,.wp-block-jetpack-donations .donations__donate-button-wrapper{margin:0}.jetpack-memberships-modal #TB_title{display:none}#TB_window.jetpack-memberships-modal{background-color:transparent;background-image:url(https://s0.wp.com/i/loading/dark-200.gif);background-position:center 150px;background-repeat:no-repeat;background-size:50px;border:none;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;height:100%}#TB_window.jetpack-memberships-modal,.jetpack-memberships-modal #TB_iframeContent{bottom:0;left:0;margin:0!important;position:absolute;right:0;top:0;width:100%!important}.jetpack-memberships-modal #TB_iframeContent{height:100%!important}BODY.modal-open{overflow:hidden}@keyframes spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.wp-block-jetpack-donations .donations__container:not(.loaded){height:200px;position:relative;width:100%}.wp-block-jetpack-donations .donations__container:not(.loaded) *{display:none}.wp-block-jetpack-donations .donations__container:not(.loaded):before{background-color:#949494;border-radius:100%;content:"";height:18px;left:50%;opacity:.7;position:absolute;top:50%;transform:translate(-50%,-50%);width:18px}.wp-block-jetpack-donations .donations__container:not(.loaded):after{animation:spinner 1s linear infinite;background-color:#fff;border-radius:100%;content:"";height:4px;left:50%;margin-left:-6px;margin-top:-6px;position:absolute;top:50%;transform-origin:6px 6px;width:4px}.wp-block-jetpack-donations .donations__tab.is-annual .donations__monthly-item,.wp-block-jetpack-donations .donations__tab.is-annual .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__monthly-item{display:none}.wp-block-jetpack-donations .donations__amount{cursor:pointer}.wp-block-jetpack-donations .donations__amount.is-selected{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount{cursor:text}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{display:inline-block;text-align:left;white-space:pre-wrap}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:empty:after{color:#ccc;content:attr(data-empty-text)}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:focus{outline:none}.wp-block-jetpack-donations .donations__donate-button.is-disabled{opacity:.2;pointer-events:none}
|
||||
.wp-block-jetpack-donations .donations__container{border:1px solid #ccc}.wp-block-jetpack-donations .donations__nav{border-bottom:1px solid #ccc;display:flex}.wp-block-jetpack-donations .donations__nav-item{background:#fff;border-left:1px solid #ccc;color:#1e1e1e;cursor:pointer;display:inline-block;flex:1;font-size:16px;font-weight:700;padding:12px;text-align:center}@media(min-width:600px){.wp-block-jetpack-donations .donations__nav-item{padding:16px 24px}}.wp-block-jetpack-donations .donations__nav-item:first-child{border-left:none}.wp-block-jetpack-donations .donations__nav-item.is-active{background:var(--wp-admin-theme-color);color:#fff;cursor:default}.wp-block-jetpack-donations .donations__content{padding:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content{padding:32px}}.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amounts{display:flex;flex-wrap:wrap;margin-bottom:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__amounts{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amount{background-color:#fff;border:1px solid #ccc;color:#1e1e1e;display:inline-block;font-size:16px;font-weight:600;margin-bottom:8px;margin-right:8px;padding:16px 24px;white-space:nowrap}.wp-block-jetpack-donations .donations__amount.has-error{box-shadow:0 0 0 1px #fff,0 0 0 3px #cc1818;outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{margin-left:4px;min-width:60px}.wp-block-jetpack-donations .donations__separator{margin-bottom:16px;margin-top:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__separator{margin-bottom:32px;margin-top:32px}}.wp-block-jetpack-donations .donations__donate-button,.wp-block-jetpack-donations .donations__donate-button-wrapper{margin:0}.jetpack-memberships-modal #TB_title{display:none}#TB_window.jetpack-memberships-modal{background-color:transparent;background-image:url(https://s0.wp.com/i/loading/dark-200.gif);background-position:center 150px;background-repeat:no-repeat;background-size:50px;border:none;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;height:100%}#TB_window.jetpack-memberships-modal,.jetpack-memberships-modal #TB_iframeContent{bottom:0;left:0;margin:0!important;position:absolute;right:0;top:0;width:100%!important}.jetpack-memberships-modal #TB_iframeContent{height:100%!important}BODY.modal-open{overflow:hidden}@keyframes spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.wp-block-jetpack-donations .donations__container:not(.loaded){height:200px;position:relative;width:100%}.wp-block-jetpack-donations .donations__container:not(.loaded) *{display:none}.wp-block-jetpack-donations .donations__container:not(.loaded):before{background-color:#949494;border-radius:100%;content:"";height:16px;left:50%;opacity:.7;position:absolute;top:50%;transform:translate(-50%,-50%);width:16px}.wp-block-jetpack-donations .donations__container:not(.loaded):after{animation:spinner 1s linear infinite;background-color:#fff;border-radius:100%;content:"";height:3.5555555556px;left:50%;margin-left:-5.3333333333px;margin-top:-5.3333333333px;position:absolute;top:50%;transform-origin:5.3333333333px 5.3333333333px;width:3.5555555556px}.wp-block-jetpack-donations .donations__tab.is-annual .donations__monthly-item,.wp-block-jetpack-donations .donations__tab.is-annual .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__monthly-item{display:none}.wp-block-jetpack-donations .donations__amount{cursor:pointer}.wp-block-jetpack-donations .donations__amount.is-selected{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount{cursor:text}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{display:inline-block;text-align:left;white-space:pre-wrap}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:empty:after{color:#ccc;content:attr(data-empty-text)}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:focus{outline:none}.wp-block-jetpack-donations .donations__donate-button.is-disabled{opacity:.2;pointer-events:none}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -5,18 +5,3 @@
|
|||
* @license See CREDITS.md
|
||||
* @see https://github.com/kvz/phpjs/blob/ffe1356af23a6f2512c84c954dd4e828e92579fa/functions/strings/number_format.js
|
||||
*/
|
||||
|
||||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/** @license React vundefined
|
||||
* use-subscription.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
.wp-block-jetpack-donations .donations__container{border:1px solid #ccc}.wp-block-jetpack-donations .donations__nav{border-bottom:1px solid #ccc;display:flex}.wp-block-jetpack-donations .donations__nav-item{background:#fff;border-right:1px solid #ccc;color:#1e1e1e;cursor:pointer;display:inline-block;flex:1;font-size:16px;font-weight:700;padding:12px;text-align:center}@media(min-width:600px){.wp-block-jetpack-donations .donations__nav-item{padding:16px 24px}}.wp-block-jetpack-donations .donations__nav-item:first-child{border-right:none}.wp-block-jetpack-donations .donations__nav-item.is-active{background:var(--wp-admin-theme-color);color:#fff;cursor:default}.wp-block-jetpack-donations .donations__content{padding:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content{padding:32px}}.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amounts{display:flex;flex-wrap:wrap;margin-bottom:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__amounts{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amount{background-color:#fff;border:1px solid #ccc;color:#1e1e1e;display:inline-block;font-size:16px;font-weight:600;margin-bottom:8px;margin-left:8px;padding:16px 24px;white-space:nowrap}.wp-block-jetpack-donations .donations__amount.has-error{box-shadow:0 0 0 1px #fff,0 0 0 3px #cc1818;outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{margin-right:4px;min-width:60px}.wp-block-jetpack-donations .donations__separator{margin-bottom:16px;margin-top:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__separator{margin-bottom:32px;margin-top:32px}}.wp-block-jetpack-donations .donations__donate-button,.wp-block-jetpack-donations .donations__donate-button-wrapper{margin:0}.jetpack-memberships-modal #TB_title{display:none}#TB_window.jetpack-memberships-modal{background-color:transparent;background-image:url(https://s0.wp.com/i/loading/dark-200.gif);background-position:center 150px;background-repeat:no-repeat;background-size:50px;border:none;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;height:100%}#TB_window.jetpack-memberships-modal,.jetpack-memberships-modal #TB_iframeContent{bottom:0;left:0;margin:0!important;position:absolute;right:0;top:0;width:100%!important}.jetpack-memberships-modal #TB_iframeContent{height:100%!important}BODY.modal-open{overflow:hidden}@keyframes spinner{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.wp-block-jetpack-donations .donations__container:not(.loaded){height:200px;position:relative;width:100%}.wp-block-jetpack-donations .donations__container:not(.loaded) *{display:none}.wp-block-jetpack-donations .donations__container:not(.loaded):before{background-color:#949494;border-radius:100%;content:"";height:18px;opacity:.7;position:absolute;right:50%;top:50%;transform:translate(50%,-50%);width:18px}.wp-block-jetpack-donations .donations__container:not(.loaded):after{animation:spinner 1s linear infinite;background-color:#fff;border-radius:100%;content:"";height:4px;margin-right:-6px;margin-top:-6px;position:absolute;right:50%;top:50%;transform-origin:6px 6px;width:4px}.wp-block-jetpack-donations .donations__tab.is-annual .donations__monthly-item,.wp-block-jetpack-donations .donations__tab.is-annual .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__monthly-item{display:none}.wp-block-jetpack-donations .donations__amount{cursor:pointer}.wp-block-jetpack-donations .donations__amount.is-selected{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount{cursor:text}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{display:inline-block;text-align:right;white-space:pre-wrap}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:empty:after{color:#ccc;content:attr(data-empty-text)}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:focus{outline:none}.wp-block-jetpack-donations .donations__donate-button.is-disabled{opacity:.2;pointer-events:none}
|
||||
.wp-block-jetpack-donations .donations__container{border:1px solid #ccc}.wp-block-jetpack-donations .donations__nav{border-bottom:1px solid #ccc;display:flex}.wp-block-jetpack-donations .donations__nav-item{background:#fff;border-right:1px solid #ccc;color:#1e1e1e;cursor:pointer;display:inline-block;flex:1;font-size:16px;font-weight:700;padding:12px;text-align:center}@media(min-width:600px){.wp-block-jetpack-donations .donations__nav-item{padding:16px 24px}}.wp-block-jetpack-donations .donations__nav-item:first-child{border-right:none}.wp-block-jetpack-donations .donations__nav-item.is-active{background:var(--wp-admin-theme-color);color:#fff;cursor:default}.wp-block-jetpack-donations .donations__content{padding:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content{padding:32px}}.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__content h4,.wp-block-jetpack-donations .donations__content p{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amounts{display:flex;flex-wrap:wrap;margin-bottom:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__amounts{margin:0 0 24px}}.wp-block-jetpack-donations .donations__amount{background-color:#fff;border:1px solid #ccc;color:#1e1e1e;display:inline-block;font-size:16px;font-weight:600;margin-bottom:8px;margin-left:8px;padding:16px 24px;white-space:nowrap}.wp-block-jetpack-donations .donations__amount.has-error{box-shadow:0 0 0 1px #fff,0 0 0 3px #cc1818;outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{margin-right:4px;min-width:60px}.wp-block-jetpack-donations .donations__separator{margin-bottom:16px;margin-top:16px}@media(min-width:600px){.wp-block-jetpack-donations .donations__separator{margin-bottom:32px;margin-top:32px}}.wp-block-jetpack-donations .donations__donate-button,.wp-block-jetpack-donations .donations__donate-button-wrapper{margin:0}.jetpack-memberships-modal #TB_title{display:none}#TB_window.jetpack-memberships-modal{background-color:transparent;background-image:url(https://s0.wp.com/i/loading/dark-200.gif);background-position:center 150px;background-repeat:no-repeat;background-size:50px;border:none;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;height:100%}#TB_window.jetpack-memberships-modal,.jetpack-memberships-modal #TB_iframeContent{bottom:0;left:0;margin:0!important;position:absolute;right:0;top:0;width:100%!important}.jetpack-memberships-modal #TB_iframeContent{height:100%!important}BODY.modal-open{overflow:hidden}@keyframes spinner{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.wp-block-jetpack-donations .donations__container:not(.loaded){height:200px;position:relative;width:100%}.wp-block-jetpack-donations .donations__container:not(.loaded) *{display:none}.wp-block-jetpack-donations .donations__container:not(.loaded):before{background-color:#949494;border-radius:100%;content:"";height:16px;opacity:.7;position:absolute;right:50%;top:50%;transform:translate(50%,-50%);width:16px}.wp-block-jetpack-donations .donations__container:not(.loaded):after{animation:spinner 1s linear infinite;background-color:#fff;border-radius:100%;content:"";height:3.5555555556px;margin-right:-5.3333333333px;margin-top:-5.3333333333px;position:absolute;right:50%;top:50%;transform-origin:5.3333333333px 5.3333333333px;width:3.5555555556px}.wp-block-jetpack-donations .donations__tab.is-annual .donations__monthly-item,.wp-block-jetpack-donations .donations__tab.is-annual .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-monthly .donations__one-time-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__annual-item,.wp-block-jetpack-donations .donations__tab.is-one-time .donations__monthly-item{display:none}.wp-block-jetpack-donations .donations__amount{cursor:pointer}.wp-block-jetpack-donations .donations__amount.is-selected{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:-2px}.wp-block-jetpack-donations .donations__custom-amount{cursor:text}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value{display:inline-block;text-align:right;white-space:pre-wrap}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:empty:after{color:#ccc;content:attr(data-empty-text)}.wp-block-jetpack-donations .donations__custom-amount .donations__amount-value:focus{outline:none}.wp-block-jetpack-donations .donations__donate-button.is-disabled{opacity:.2;pointer-events:none}
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-annotations', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-rich-text', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => '10e2cb55602313c3d4c533bbb88341b1');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-annotations', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-rich-text', 'wp-token-list', 'wp-url', 'wp-viewport', 'wp-widgets'), 'version' => 'b0d5fa7f2d5f64c923a4');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -18,10 +18,22 @@ object-assign
|
|||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
||||
/*!
|
||||
2021 Jason Mulligan <jason.mulligan@avoidwork.com>
|
||||
@version 8.0.6
|
||||
*/
|
||||
|
||||
/** @license React vundefined
|
||||
* use-subscription.production.min.js
|
||||
/** @license React v16.13.1
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-jsx-runtime.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-annotations', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-rich-text', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => '10f4d42513cca1c57549c953690bc172');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-annotations', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-rich-text', 'wp-token-list', 'wp-url', 'wp-viewport', 'wp-widgets'), 'version' => '3bcf88c286585f65ce1a');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -18,10 +18,22 @@ object-assign
|
|||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
||||
/*!
|
||||
2021 Jason Mulligan <jason.mulligan@avoidwork.com>
|
||||
@version 8.0.6
|
||||
*/
|
||||
|
||||
/** @license React vundefined
|
||||
* use-subscription.production.min.js
|
||||
/** @license React v16.13.1
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-jsx-runtime.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => '3d7044942b7c0d661563b7efbc35dd38');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-token-list', 'wp-url', 'wp-viewport', 'wp-widgets'), 'version' => '60b661140a5ec855d575');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -6,25 +6,13 @@
|
|||
* @see https://github.com/kvz/phpjs/blob/ffe1356af23a6f2512c84c954dd4e828e92579fa/functions/strings/number_format.js
|
||||
*/
|
||||
|
||||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
Copyright (c) 2018 Jed Watson.
|
||||
Licensed under the MIT License (MIT), see
|
||||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
||||
|
||||
/** @license React vundefined
|
||||
* use-subscription.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
/*!
|
||||
2021 Jason Mulligan <jason.mulligan@avoidwork.com>
|
||||
@version 8.0.6
|
||||
*/
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-annotations', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => '30c7dec2d56e73661fede2733b254e04');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-annotations', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-token-list', 'wp-url', 'wp-viewport', 'wp-widgets'), 'version' => 'dbb54acec1552018e1ab');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -18,10 +18,22 @@ object-assign
|
|||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
||||
/*!
|
||||
2021 Jason Mulligan <jason.mulligan@avoidwork.com>
|
||||
@version 8.0.6
|
||||
*/
|
||||
|
||||
/** @license React vundefined
|
||||
* use-subscription.production.min.js
|
||||
/** @license React v16.13.1
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-jsx-runtime.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '72e5423b657fc7b578cd3b32c58625c9');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'c84ab43039a3d054b53a');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'edd803b23fb010846cca057bb4920613');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '0f5555cd049737c938d2');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '2f5a0cc6bfba6b3b604df5417f9e0d89');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'aef9d3b4129522c2f1a9');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => 'f9f5b2dbd6bf0b59456bc5ca241feb01');
|
||||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '73306283e22190eaa6bc');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -17,6 +17,7 @@
|
|||
"map",
|
||||
"markdown",
|
||||
"opentable",
|
||||
"payments",
|
||||
"pinterest",
|
||||
"podcast-player",
|
||||
"publicize",
|
||||
|
|
@ -37,17 +38,12 @@
|
|||
"subscriptions",
|
||||
"tiled-gallery",
|
||||
"videopress",
|
||||
"wordads"
|
||||
],
|
||||
"beta": [
|
||||
"amazon"
|
||||
],
|
||||
"experimental": [
|
||||
"anchor-fm",
|
||||
"premium-content",
|
||||
"conversation",
|
||||
"dialogue"
|
||||
"wordads",
|
||||
"payments-intro",
|
||||
"post-publish-qr-post-panel"
|
||||
],
|
||||
"beta": [ "amazon" ],
|
||||
"experimental": [ "anchor-fm", "premium-content", "conversation", "dialogue" ],
|
||||
"no-post-editor": [
|
||||
"business-hours",
|
||||
"button",
|
||||
|
|
@ -65,13 +61,11 @@
|
|||
"opentable",
|
||||
"pinterest",
|
||||
"rating-star",
|
||||
"recurring-payments",
|
||||
"related-posts",
|
||||
"repeat-visitor",
|
||||
"revue",
|
||||
"simple-payments",
|
||||
"slideshow",
|
||||
"subscriptions",
|
||||
"tiled-gallery",
|
||||
"videopress",
|
||||
"wordads"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'dd36bec1b33e16df234d2a7c5d044c9a');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '9da4ea6d1647394ae32f');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '191019c7f08de6189c7e10e4e0bf8a2b');
|
||||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '57d744288a63364db9cc');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-token-list'), 'version' => '716dc6d75624f9b09cabb89be716dab2');
|
||||
<?php return array('dependencies' => array('lodash', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-token-list'), 'version' => '0b280fc84ed68481c1d6');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '71df11eaf886abf467c90fcbc2f94ac0');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'caa8cee08e6c3de1421e');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'wp-a11y', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-polyfill'), 'version' => 'dd26db2e7e0d04be24da8d0af703d4b0');
|
||||
<?php return array('dependencies' => array('lodash', 'wp-a11y', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-polyfill'), 'version' => '2b08488a6df68e5105b7');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '0bc7773e6e59985ea46450089bbafe62');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'bab0f3d55bc2f5e12a8a');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,e,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(n.p=window.Jetpack_Block_Assets_Base_Url.url)}},e={};function n(o){var r=e[o];if(void 0!==r)return r.exports;var i=e[o]={exports:{}};return t[o](i,i.exports,n),i.exports}n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){var t;n.g.importScripts&&(t=n.g.location+"");var e=n.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var o=e.getElementsByTagName("script");o.length&&(t=o[o.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),n.p=t+"../"}(),function(){"use strict";n(57836)}(),function(){"use strict";document.addEventListener("DOMContentLoaded",(function(){let t="";"undefined"!=typeof window&&window.addEventListener("message",(function(e){if("https://subscribe.wordpress.com"===e.origin&&e.data){const n=JSON.parse(e.data);if(n&&n.result&&n.result.jwt_token){t=n.result.jwt_token;const e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="jp-premium-content-session="+t+"; expires="+e.toGMTString()+"; path=/"}n&&"close"===n.action&&t&&(document.location.href=function(t,e,n){const o=new RegExp("([?&])"+e+"=.*?(&|$)","i"),r=-1!==t.indexOf("?")?"&":"?";return t.match(o)?t.replace(o,"$1"+e+"="+n+"$2"):t+r+e+"="+n}(document.location.href,"token",t))}}),!1)}))}()}();
|
||||
!function(){var t={80425:function(t,e,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(n.p=window.Jetpack_Block_Assets_Base_Url.url)}},e={};function n(o){var r=e[o];if(void 0!==r)return r.exports;var i=e[o]={exports:{}};return t[o](i,i.exports,n),i.exports}n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){var t;n.g.importScripts&&(t=n.g.location+"");var e=n.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var o=e.getElementsByTagName("script");o.length&&(t=o[o.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),n.p=t+"../"}(),function(){"use strict";n(80425)}(),function(){"use strict";document.addEventListener("DOMContentLoaded",(function(){let t="";"undefined"!=typeof window&&window.addEventListener("message",(function(e){if("https://subscribe.wordpress.com"===e.origin&&e.data){const n=JSON.parse(e.data);if(n&&n.result&&n.result.jwt_token){t=n.result.jwt_token;const e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="jp-premium-content-session="+t+"; expires="+e.toGMTString()+"; path=/"}n&&"close"===n.action&&t&&(document.location.href=function(t,e,n){const o=new RegExp("([?&])"+e+"=.*?(&|$)","i"),r=-1!==t.indexOf("?")?"&":"?";return t.match(o)?t.replace(o,"$1"+e+"="+n+"$2"):t+r+e+"="+n}(document.location.href,"token",t))}}),!1)}))}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '4c37a6cbbbf9de90baebad267b2a8d76');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '431d4fc34def8d462a46');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => 'fffc359f074e84a332185e018a156403');
|
||||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '9dbe93c5befcee5817d1');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={53857:function(t,e,r){"use strict";function n(t){if("https://subscribe.wordpress.com"===t.origin&&t.data){const e=JSON.parse(t.data);e&&"close"===e.action&&(window.removeEventListener("message",n),tb_remove())}}r.d(e,{f:function(){return o}});const o=t=>{Array.prototype.slice.call(document.querySelectorAll(t)).forEach((t=>{if("true"!==t.getAttribute("data-jetpack-memberships-button-initialized")){try{!function(t){t.addEventListener("click",(e=>{e.preventDefault();const r=t.getAttribute("href");window.scrollTo(0,0),tb_show(null,r+"&display=alternate&TB_iframe=true",null),window.addEventListener("message",n,!1),document.querySelector("#TB_window").classList.add("jetpack-memberships-modal"),window.scrollTo(0,0)}))}(t)}catch(t){console.error("Problem setting up Thickbox",t)}t.setAttribute("data-jetpack-memberships-button-initialized","true")}}))}},57836:function(t,e,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)},47701:function(t){"use strict";t.exports=window.wp.domReady}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,{a:e}),e},r.d=function(t,e){for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){var t;r.g.importScripts&&(t=r.g.location+"");var e=r.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=t+"../"}(),function(){"use strict";r(57836)}(),function(){"use strict";var t=r(47701),e=r.n(t),n=r(53857);"undefined"!=typeof window&&e()((()=>(0,n.f)(".wp-block-jetpack-recurring-payments a")))}()}();
|
||||
!function(){var e={63166:function(e,t,r){"use strict";function n(e){if("https://subscribe.wordpress.com"===e.origin&&e.data){const t=JSON.parse(e.data);t&&"close"===t.action&&(window.removeEventListener("message",n),tb_remove())}}r.d(t,{f:function(){return o}});const o=e=>{Array.prototype.slice.call(document.querySelectorAll(e)).forEach((e=>{if("true"!==e.getAttribute("data-jetpack-memberships-button-initialized")){try{!function(e){e.addEventListener("click",(t=>{t.preventDefault();const r=e.getAttribute("href");window.scrollTo(0,0),tb_show(null,r+"&display=alternate&TB_iframe=true",null),window.addEventListener("message",n,!1),document.querySelector("#TB_window").classList.add("jetpack-memberships-modal"),window.scrollTo(0,0)}))}(e)}catch(e){console.error("Problem setting up Thickbox",e)}e.setAttribute("data-jetpack-memberships-button-initialized","true")}}))}},80425:function(e,t,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)},47701:function(e){"use strict";e.exports=window.wp.domReady}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var i=t[n]={exports:{}};return e[n](i,i.exports,r),i.exports}r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e;r.g.importScripts&&(e=r.g.location+"");var t=r.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");n.length&&(e=n[n.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=e+"../"}(),function(){"use strict";r(80425)}(),function(){"use strict";var e=r(47701),t=r.n(e),n=r(63166);"undefined"!=typeof window&&t()((()=>{(0,n.f)(".wp-block-jetpack-recurring-payments a"),setTimeout((()=>{const e=new URL(window.location.href);if(e.searchParams.has("recurring_payments")&&window.history.replaceState){var t;const r=`recurring-payments-${e.searchParams.get("recurring_payments")}`;e.searchParams.delete("recurring_payments"),window.history.replaceState({},"",e),null===(t=document.getElementById(r))||void 0===t||t.click()}}),100)}))}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '18b03943e6fcbe6951b3e7fde20142a8');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'c16b51bde4379c7bc738');
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
/*! For license information please see view.js.LICENSE.txt */
|
||||
!function(){var e={8174:function(e,t){"use strict";t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var i={},o=t||{},s=e.split(n),c=o.decode||r,u=0;u<s.length;u++){var p=s[u],f=p.indexOf("=");if(!(f<0)){var l=p.substr(0,f).trim(),d=p.substr(++f,p.length).trim();'"'==d[0]&&(d=d.slice(1,-1)),null==i[l]&&(i[l]=a(d,c))}}return i},t.serialize=function(e,t,r){var n=r||{},a=n.encode||i;if("function"!=typeof a)throw new TypeError("option encode is invalid");if(!o.test(e))throw new TypeError("argument name is invalid");var s=a(t);if(s&&!o.test(s))throw new TypeError("argument val is invalid");var c=e+"="+s;if(null!=n.maxAge){var u=n.maxAge-0;if(isNaN(u)||!isFinite(u))throw new TypeError("option maxAge is invalid");c+="; Max-Age="+Math.floor(u)}if(n.domain){if(!o.test(n.domain))throw new TypeError("option domain is invalid");c+="; Domain="+n.domain}if(n.path){if(!o.test(n.path))throw new TypeError("option path is invalid");c+="; Path="+n.path}if(n.expires){if("function"!=typeof n.expires.toUTCString)throw new TypeError("option expires is invalid");c+="; Expires="+n.expires.toUTCString()}n.httpOnly&&(c+="; HttpOnly");n.secure&&(c+="; Secure");if(n.sameSite){switch("string"==typeof n.sameSite?n.sameSite.toLowerCase():n.sameSite){case!0:c+="; SameSite=Strict";break;case"lax":c+="; SameSite=Lax";break;case"strict":c+="; SameSite=Strict";break;case"none":c+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return c};var r=decodeURIComponent,i=encodeURIComponent,n=/; */,o=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function a(e,t){try{return t(e)}catch(t){return e}}},46314:function(e,t,r){"use strict";r.d(t,{B$:function(){return i},fh:function(){return n}});const i="jp-visit-counter",n=15552e3},57836:function(e,t,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)}},t={};function r(i){var n=t[i];if(void 0!==n)return n.exports;var o=t[i]={exports:{}};return e[i](o,o.exports,r),o.exports}r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var i in t)r.o(t,i)&&!r.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e;r.g.importScripts&&(e=r.g.location+"");var t=r.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var i=t.getElementsByTagName("script");i.length&&(e=i[i.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=e+"../"}(),function(){"use strict";r(57836)}(),function(){"use strict";var e=r(8174),t=r(46314);window&&window.addEventListener("load",(function(){var r;0!==Array.from(document.querySelectorAll(".wp-block-jetpack-repeat-visitor")).length&&(r=+(e.parse(document.cookie)[t.B$]||0)+1,document.cookie=e.serialize(t.B$,r,{path:window.location.pathname,maxAge:t.fh}))}))}()}();
|
||||
!function(){var e={55990:function(e,t){"use strict";t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument str must be a string");for(var i={},o=t||{},s=e.split(n),c=o.decode||r,u=0;u<s.length;u++){var p=s[u],f=p.indexOf("=");if(!(f<0)){var l=p.substr(0,f).trim(),d=p.substr(++f,p.length).trim();'"'==d[0]&&(d=d.slice(1,-1)),null==i[l]&&(i[l]=a(d,c))}}return i},t.serialize=function(e,t,r){var n=r||{},a=n.encode||i;if("function"!=typeof a)throw new TypeError("option encode is invalid");if(!o.test(e))throw new TypeError("argument name is invalid");var s=a(t);if(s&&!o.test(s))throw new TypeError("argument val is invalid");var c=e+"="+s;if(null!=n.maxAge){var u=n.maxAge-0;if(isNaN(u)||!isFinite(u))throw new TypeError("option maxAge is invalid");c+="; Max-Age="+Math.floor(u)}if(n.domain){if(!o.test(n.domain))throw new TypeError("option domain is invalid");c+="; Domain="+n.domain}if(n.path){if(!o.test(n.path))throw new TypeError("option path is invalid");c+="; Path="+n.path}if(n.expires){if("function"!=typeof n.expires.toUTCString)throw new TypeError("option expires is invalid");c+="; Expires="+n.expires.toUTCString()}n.httpOnly&&(c+="; HttpOnly");n.secure&&(c+="; Secure");if(n.sameSite){switch("string"==typeof n.sameSite?n.sameSite.toLowerCase():n.sameSite){case!0:c+="; SameSite=Strict";break;case"lax":c+="; SameSite=Lax";break;case"strict":c+="; SameSite=Strict";break;case"none":c+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return c};var r=decodeURIComponent,i=encodeURIComponent,n=/; */,o=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function a(e,t){try{return t(e)}catch(t){return e}}},51100:function(e,t,r){"use strict";r.d(t,{B$:function(){return i},fh:function(){return n}});const i="jp-visit-counter",n=15552e3},80425:function(e,t,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)}},t={};function r(i){var n=t[i];if(void 0!==n)return n.exports;var o=t[i]={exports:{}};return e[i](o,o.exports,r),o.exports}r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var i in t)r.o(t,i)&&!r.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e;r.g.importScripts&&(e=r.g.location+"");var t=r.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var i=t.getElementsByTagName("script");i.length&&(e=i[i.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=e+"../"}(),function(){"use strict";r(80425)}(),function(){"use strict";var e=r(55990),t=r(51100);window&&window.addEventListener("load",(function(){var r;0!==Array.from(document.querySelectorAll(".wp-block-jetpack-repeat-visitor")).length&&(r=+(e.parse(document.cookie)[t.B$]||0)+1,document.cookie=e.serialize(t.B$,r,{path:window.location.pathname,maxAge:t.fh}))}))}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '634f5871961e9ffdf41fd832a46aee68');
|
||||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '34161b4df3bd61df491d');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,e,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)},47701:function(t){"use strict";t.exports=window.wp.domReady}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,{a:e}),e},r.d=function(t,e){for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){var t;r.g.importScripts&&(t=r.g.location+"");var e=r.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=t+"../"}(),function(){"use strict";r(57836)}(),function(){"use strict";var t=r(47701),e=r.n(t);"undefined"!=typeof window&&window.jQuery&&e()((function(){document.querySelectorAll(".wp-block-jetpack-revue").forEach((t=>{if("true"===t.getAttribute("data-jetpack-block-initialized"))return;const e=t.querySelector(".wp-block-jetpack-revue__form");if(!e)return;const r=t.querySelector(".wp-block-jetpack-revue__message");e.addEventListener("submit",(()=>{e.classList.remove("is-visible"),r.classList.add("is-visible")})),t.setAttribute("data-jetpack-block-initialized","true")}))}))}()}();
|
||||
!function(){var t={80425:function(t,e,r){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(r.p=window.Jetpack_Block_Assets_Base_Url.url)},47701:function(t){"use strict";t.exports=window.wp.domReady}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,{a:e}),e},r.d=function(t,e){for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},function(){var t;r.g.importScripts&&(t=r.g.location+"");var e=r.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r.p=t+"../"}(),function(){"use strict";r(80425)}(),function(){"use strict";var t=r(47701),e=r.n(t);"undefined"!=typeof window&&window.jQuery&&e()((function(){document.querySelectorAll(".wp-block-jetpack-revue").forEach((t=>{if("true"===t.getAttribute("data-jetpack-block-initialized"))return;const e=t.querySelector(".wp-block-jetpack-revue__form");if(!e)return;const r=t.querySelector(".wp-block-jetpack-revue__message");e.addEventListener("submit",(()=>{e.classList.remove("is-visible"),r.classList.add("is-visible")})),t.setAttribute("data-jetpack-block-initialized","true")}))}))}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'dbb037c83e3b1261ab97f85500e70e27');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '88cc42f3d74bf0571573');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'wp-dom-ready', 'wp-escape-html', 'wp-polyfill'), 'version' => 'cbc48749d8f0d3cca84f7ab606ad95c4');
|
||||
<?php return array('dependencies' => array('lodash', 'wp-dom-ready', 'wp-escape-html', 'wp-polyfill'), 'version' => '00e7f45910b2c9be01ff');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'react', 'wp-blob', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-polyfill'), 'version' => 'ab5af853b709e869641535bc95be63d3');
|
||||
<?php return array('dependencies' => array('lodash', 'react', 'wp-blob', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-polyfill'), 'version' => '3c5d933cbaac265fbda3');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '92d920a6146a8f5dddf72dbdeaf73f8a');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'ce65d91e42591d36601d');
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!function(){var t={57836:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(57836)}()}();
|
||||
!function(){var t={80425:function(t,r,e){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&window.Jetpack_Block_Assets_Base_Url.url&&(e.p=window.Jetpack_Block_Assets_Base_Url.url)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var c=r[n]={exports:{}};return t[n](c,c.exports,e),c.exports}e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,{a:r}),r},e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},function(){var t;e.g.importScripts&&(t=e.g.location+"");var r=e.g.document;if(!t&&r&&(r.currentScript&&(t=r.currentScript.src),!t)){var n=r.getElementsByTagName("script");n.length&&(t=n[n.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"}(),function(){"use strict";e(80425)}()}();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '579ba6098396ddd768d3e5a75dd61ccb');
|
||||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => '15c29062b4917da52656');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
/**
|
||||
* Used by the blogging prompt feature of the mobile app.
|
||||
*
|
||||
* @package automattic/jetpack
|
||||
*/
|
||||
|
||||
add_filter( 'rest_api_allowed_public_metadata', 'jetpack_blogging_prompts_add_meta_data' );
|
||||
|
||||
/**
|
||||
* Adds the blogging prompt key post metq to the list of allowed post meta to be updated by rest api.
|
||||
*
|
||||
* @param array $keys Array of post meta keys that are allowed public metadata.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function jetpack_blogging_prompts_add_meta_data( $keys ) {
|
||||
$keys[] = '_jetpack_blogging_prompt_key';
|
||||
return $keys;
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array(), 'version' => '06170fa82136b99427e2f50266c2d06c');
|
||||
<?php return array('dependencies' => array(), 'version' => 'e26238ea81e1a5dd8ec7');
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue