Skip to content

Commit

Permalink
Merge pull request #3468 from Automattic/alpha
Browse files Browse the repository at this point in the history
Release Oct 08
  • Loading branch information
dkoo authored Oct 8, 2024
2 parents aa97733 + 7ae9cb0 commit 9e90652
Show file tree
Hide file tree
Showing 52 changed files with 2,732 additions and 1,419 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"yoast/phpunit-polyfills": "^2.0",
"yoast/phpunit-polyfills": "^3.0",
"phpunit/phpunit": "^7.0 || ^9.5"
},
"autoload": {
Expand Down
110 changes: 55 additions & 55 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion includes/class-newspack-image-credits.php
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public static function get_default_settings( $key = null ) {
'key' => 'newspack_image_credits_placeholder',
'label' => __( 'Placeholder Image', 'newspack-image-credits' ),
'type' => 'image',
'value' => null,
'value' => '',
],
[
'description' => __( 'Automatically populate image credits from EXIF or IPTC metadata when uploading new images.', 'newspack-image-credits' ),
Expand Down
16 changes: 9 additions & 7 deletions includes/class-newspack.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ private function includes() {
include_once NEWSPACK_ABSPATH . 'includes/class-plugin-manager.php';
include_once NEWSPACK_ABSPATH . 'includes/class-theme-manager.php';
include_once NEWSPACK_ABSPATH . 'includes/class-admin-plugins-screen.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/class-reader-activation-emails.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/class-reader-activation.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/class-reader-data.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/sync/class-sync.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/sync/class-metadata.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/sync/class-woocommerce.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/sync/class-esp-sync.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/sync/class-esp-sync-admin.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/class-utils.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/class-data-events.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/class-webhooks.php';
Expand All @@ -86,15 +94,10 @@ private function includes() {
include_once NEWSPACK_ABSPATH . 'includes/data-events/class-popups.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/class-memberships.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/connectors/ga4/class-ga4.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/connectors/class-connector.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/connectors/class-mailchimp.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/connectors/class-activecampaign.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/connectors/class-esp-connector.php';
include_once NEWSPACK_ABSPATH . 'includes/data-events/class-woo-user-registration.php';
include_once NEWSPACK_ABSPATH . 'includes/class-api.php';
include_once NEWSPACK_ABSPATH . 'includes/class-profile.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/class-reader-activation-emails.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/class-reader-activation.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-activation/class-reader-data.php';
include_once NEWSPACK_ABSPATH . 'includes/class-recaptcha.php';
include_once NEWSPACK_ABSPATH . 'includes/class-magic-link.php';
include_once NEWSPACK_ABSPATH . 'includes/reader-revenue/stripe/class-stripe-connection.php';
Expand Down Expand Up @@ -152,7 +155,6 @@ private function includes() {
include_once NEWSPACK_ABSPATH . 'includes/plugins/class-jetpack.php';
include_once NEWSPACK_ABSPATH . 'includes/plugins/class-gravityforms.php';
include_once NEWSPACK_ABSPATH . 'includes/plugins/google-site-kit/class-googlesitekit.php';
include_once NEWSPACK_ABSPATH . 'includes/plugins/class-newspack-newsletters.php';
include_once NEWSPACK_ABSPATH . 'includes/plugins/class-mailchimp-for-woocommerce.php';
include_once NEWSPACK_ABSPATH . 'includes/plugins/class-onesignal.php';
include_once NEWSPACK_ABSPATH . 'includes/plugins/class-organic-profile-block.php';
Expand Down
8 changes: 0 additions & 8 deletions includes/class-plugin-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -314,14 +314,6 @@ public static function get_managed_plugins() {
'Download' => 'wporg',
'EditPath' => 'options-general.php?page=adstxt-settings',
],
'publisher-media-kit' => [
'Name' => \esc_html__( 'Publisher Media Kit', 'newspack' ),
'Description' => \esc_html__( 'Quick and easy option for small to medium sized publishers to digitize their media kit.', 'newspack' ),
'Author' => \esc_html__( '10up', 'newspack' ),
'AuthorURI' => \esc_url( 'https://10up.com' ),
'PluginURI' => \esc_url( 'https://wordpress.org/plugins/publisher-media-kit/' ),
'Download' => 'wporg',
],
'broadstreet' => [
'Name' => \esc_html__( 'Broadstreet', 'newspack' ),
'Description' => \esc_html__( 'Integrate Broadstreet’s business directory and ad-serving features into your site.', 'newspack' ),
Expand Down
Loading

0 comments on commit 9e90652

Please sign in to comment.