diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2020-02-17 11:55:41 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2020-02-17 11:55:41 -0500 |
commit | dd791649a46b33fd7d5ea388fa42f1cf99c82884 (patch) | |
tree | ddc745e49425b01732343da42a19018b7dd737c4 /plugins/jetpack/jetpack.php | |
parent | Remove extraneous .zip (diff) | |
download | blogs-gentoo-dd791649a46b33fd7d5ea388fa42f1cf99c82884.tar.gz blogs-gentoo-dd791649a46b33fd7d5ea388fa42f1cf99c82884.tar.bz2 blogs-gentoo-dd791649a46b33fd7d5ea388fa42f1cf99c82884.zip |
update jetpack 8.2.1
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'plugins/jetpack/jetpack.php')
-rw-r--r-- | plugins/jetpack/jetpack.php | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/plugins/jetpack/jetpack.php b/plugins/jetpack/jetpack.php index 1a8273de..82933fbd 100644 --- a/plugins/jetpack/jetpack.php +++ b/plugins/jetpack/jetpack.php @@ -4,7 +4,7 @@ * Plugin URI: https://jetpack.com * Description: Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users. * Author: Automattic - * Version: 8.0 + * Version: 8.2.1 * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack @@ -13,22 +13,22 @@ * @package Jetpack */ -define( 'JETPACK__MINIMUM_WP_VERSION', '5.2' ); +define( 'JETPACK__MINIMUM_WP_VERSION', '5.2' ); define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' ); -define( 'JETPACK__VERSION', '8.0' ); -define( 'JETPACK_MASTER_USER', true ); -define( 'JETPACK__API_VERSION', 1 ); -define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -define( 'JETPACK__PLUGIN_FILE', __FILE__ ); +define( 'JETPACK__VERSION', '8.2.1' ); +define( 'JETPACK_MASTER_USER', true ); +define( 'JETPACK__API_VERSION', 1 ); +define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); +define( 'JETPACK__PLUGIN_FILE', __FILE__ ); -defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' ); -defined( 'JETPACK_CLIENT__HTTPS' ) || define( 'JETPACK_CLIENT__HTTPS', 'AUTO' ); +defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' ); +defined( 'JETPACK_CLIENT__HTTPS' ) || define( 'JETPACK_CLIENT__HTTPS', 'AUTO' ); defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || define( 'JETPACK__GLOTPRESS_LOCALES_PATH', JETPACK__PLUGIN_DIR . 'locales.php' ); -defined( 'JETPACK__API_BASE' ) || define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' ); -defined( 'JETPACK_PROTECT__API_HOST' ) || define( 'JETPACK_PROTECT__API_HOST', 'https://api.bruteprotect.com/' ); -defined( 'JETPACK__WPCOM_JSON_API_HOST' ) || define( 'JETPACK__WPCOM_JSON_API_HOST', 'public-api.wordpress.com' ); -defined( 'JETPACK__SANDBOX_DOMAIN' ) || define( 'JETPACK__SANDBOX_DOMAIN', '' ); -defined( 'JETPACK__DEBUGGER_PUBLIC_KEY' ) || define( +defined( 'JETPACK__API_BASE' ) || define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' ); +defined( 'JETPACK_PROTECT__API_HOST' ) || define( 'JETPACK_PROTECT__API_HOST', 'https://api.bruteprotect.com/' ); +defined( 'JETPACK__WPCOM_JSON_API_HOST' ) || define( 'JETPACK__WPCOM_JSON_API_HOST', 'public-api.wordpress.com' ); +defined( 'JETPACK__SANDBOX_DOMAIN' ) || define( 'JETPACK__SANDBOX_DOMAIN', '' ); +defined( 'JETPACK__DEBUGGER_PUBLIC_KEY' ) || define( 'JETPACK__DEBUGGER_PUBLIC_KEY', "\r\n" . '-----BEGIN PUBLIC KEY-----' . "\r\n" . 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm+uLLVoxGCY71LS6KFc6' . "\r\n" @@ -46,7 +46,7 @@ defined( 'JETPACK__DEBUGGER_PUBLIC_KEY' ) || define( * Setting these constants, though, is *not* the preferred method. It's better to configure * the proxy to send the X-Forwarded-Port header. */ -defined( 'JETPACK_SIGNATURE__HTTP_PORT' ) || define( 'JETPACK_SIGNATURE__HTTP_PORT', 80 ); +defined( 'JETPACK_SIGNATURE__HTTP_PORT' ) || define( 'JETPACK_SIGNATURE__HTTP_PORT', 80 ); defined( 'JETPACK_SIGNATURE__HTTPS_PORT' ) || define( 'JETPACK_SIGNATURE__HTTPS_PORT', 443 ); /** |