From dffa639ea727bb7e2c812bebe0bcf7229b2ba694 Mon Sep 17 00:00:00 2001 From: David Herrera Date: Tue, 11 Feb 2025 00:54:28 -0500 Subject: [PATCH 1/4] Fix typo --- admin/partials/cover-media.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/partials/cover-media.php b/admin/partials/cover-media.php index 3170628d..f6900469 100644 --- a/admin/partials/cover-media.php +++ b/admin/partials/cover-media.php @@ -1,6 +1,6 @@ Date: Tue, 11 Feb 2025 00:57:46 -0500 Subject: [PATCH 2/4] Fill in changelog entries --- readme.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 354164c9..a4da58fd 100644 --- a/readme.txt +++ b/readme.txt @@ -45,13 +45,18 @@ Please visit our [wiki](https://github.com/alleyinteractive/apple-news/wiki) for == Changelog == += 2.6.3 = + +* Bugfix: Fixed an issue where the deletion of a post's autosave could cause the Apple News article for that post to be deleted. + = 2.6.2 = * Enhancement: i18n - Remove `load_plugin_textdomain`. Since WordPress 4.6, plugins no longer need to load their own textdomain. * Enhancement: i18n - Moved some plugin initialization code to the `init` action hook. +* Enhancement: Add license to plugin header. * Bugfix: i18n - Fixed the `_load_textdomain_just_in_time` error with WordPress 6.7. +* Bugfix: Update bulk action text to clarify that the "Publish" action can also be used to update published articles. * Bugfix: Update plugin name in plugin header. -* Enhancement: Add license to plugin header. = 2.6.1 = From e912c8c72090fe266f3f06fd21d0ad36382e8703 Mon Sep 17 00:00:00 2001 From: David Herrera Date: Tue, 11 Feb 2025 01:20:17 -0500 Subject: [PATCH 3/4] Bump versions --- apple-news.php | 2 +- includes/class-apple-news.php | 2 +- package.json | 2 +- readme.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apple-news.php b/apple-news.php index 4d0f01a8..d0f1f05d 100644 --- a/apple-news.php +++ b/apple-news.php @@ -3,7 +3,7 @@ * Plugin Name: Publish To Apple News * Plugin URI: http://github.com/alleyinteractive/apple-news * Description: Export and sync posts to Apple format. - * Version: 2.6.3 + * Version: 2.7.0 * Author: Alley * Author URI: https://alley.com * Text Domain: apple-news diff --git a/includes/class-apple-news.php b/includes/class-apple-news.php index 4117a89b..f3aae9de 100644 --- a/includes/class-apple-news.php +++ b/includes/class-apple-news.php @@ -50,7 +50,7 @@ class Apple_News { * @var string * @access public */ - public static string $version = '2.6.3'; + public static string $version = '2.7.0'; /** * Link to support for the plugin on WordPress.org. diff --git a/package.json b/package.json index 9ea51454..b09e59c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "publish-to-apple-news", - "version": "2.6.3", + "version": "2.7.0", "license": "GPLv3", "main": "index.php", "engines": { diff --git a/readme.txt b/readme.txt index a4da58fd..d6198c54 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: publish, apple, news, iOS Requires at least: 6.3 Tested up to: 6.7 Requires PHP: 8.0 -Stable tag: 2.6.3 +Stable tag: 2.7.0 License: GPLv3 or later License URI: https://www.gnu.org/licenses/gpl.html From 5089a7e487b0c7301770d5ae9e9f226160b97dad Mon Sep 17 00:00:00 2001 From: David Herrera Date: Tue, 11 Feb 2025 02:23:39 -0500 Subject: [PATCH 4/4] Update changelog --- readme.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/readme.txt b/readme.txt index d6198c54..1f001d21 100644 --- a/readme.txt +++ b/readme.txt @@ -45,6 +45,15 @@ Please visit our [wiki](https://github.com/alleyinteractive/apple-news/wiki) for == Changelog == += 2.7.0 = + +* Enhancement: Add support for the Apple News Recipe component. Please [visit our wiki for detailed documentation](https://github.com/alleyinteractive/apple-news/wiki/configuration#recipe-component). +* Enhancement: Add "Cover Media" options, expanding on existing "Cover Image" feature, allowing YouTube or other videos to display in the Cover component. +* Enhancement: Add setting that allows elements in post content matching CSS classes or ID selectors to be excluded from the content sent to Apple News. +* Enhancement: Allow article deletions with Bulk Actions. +* Enhancement: Move section mapping to its own table in the Automation settings for easier management. +* Enhancement: Enable caption on the Cover component by default. + = 2.6.3 = * Bugfix: Fixed an issue where the deletion of a post's autosave could cause the Apple News article for that post to be deleted.