Skip to content

Commit

Permalink
Enable SIG even if Publicize is turned off for a post (#36911)
Browse files Browse the repository at this point in the history
* Enable SIG even if Publicize is turned off for a post

* Fix up version
  • Loading branch information
manzoorwanijk authored Apr 16, 2024
1 parent 3c0ef60 commit 6722814
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: other

Enabled SIG even if publicize is disabled
2 changes: 1 addition & 1 deletion projects/plugins/jetpack/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_4_a_3",
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_4_a_4",
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const name = 'publicize';
const PublicizeSettings = () => {
const { isLoadingModules, isChangingStatus, isModuleActive, changeStatus } =
useModuleStatus( name );
const { isSocialImageGeneratorAvailable, isPublicizeEnabled } = usePublicizeConfig();
const { isSocialImageGeneratorAvailable } = usePublicizeConfig();

let children = null;
let panels = null;
Expand All @@ -49,7 +49,7 @@ const PublicizeSettings = () => {
<PublicizePanel>
<UpsellNotice />
</PublicizePanel>
{ isSocialImageGeneratorAvailable && isPublicizeEnabled && <SocialImageGeneratorPanel /> }
{ isSocialImageGeneratorAvailable && <SocialImageGeneratorPanel /> }
</>
);
panels = (
Expand Down
4 changes: 2 additions & 2 deletions projects/plugins/jetpack/jetpack.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: https://jetpack.com
* Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
* Author: Automattic
* Version: 13.4-a.3
* Version: 13.4-a.4
* Author URI: https://jetpack.com
* License: GPL2+
* Text Domain: jetpack
Expand Down Expand Up @@ -34,7 +34,7 @@

define( 'JETPACK__MINIMUM_WP_VERSION', '6.3' );
define( 'JETPACK__MINIMUM_PHP_VERSION', '7.0' );
define( 'JETPACK__VERSION', '13.4-a.3' );
define( 'JETPACK__VERSION', '13.4-a.4' );

/**
* Constant used to fetch the connection owner token
Expand Down
2 changes: 1 addition & 1 deletion projects/plugins/jetpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Jetpack",
"version": "13.4.0-a.3",
"version": "13.4.0-a.4",
"private": true,
"description": "[Jetpack](https://jetpack.com/) is a WordPress plugin that supercharges your self-hosted WordPress site with the awesome cloud power of [WordPress.com](https://wordpress.com).",
"homepage": "https://jetpack.com",
Expand Down

0 comments on commit 6722814

Please sign in to comment.