From cd4d00c411c8e1cb9be3760b336c9e47e2c28d73 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Tue, 22 Oct 2024 16:41:29 +0200 Subject: [PATCH] Version bump + Changelog --- CHANGELOG.md | 6 ++++++ README.md | 60 ++++++---------------------------------------------- friends.php | 4 ++-- 3 files changed, 15 insertions(+), 55 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a65b2d00..7ac7ed91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 3.1.3 +- Add AJAX refreshing of feeds ([#382]) +- Fix Fatal in the MF2 library ([#381]) + ### 3.1.2 - Fix support for threads.net ([#378]) - Add a warning if a user has not enabled ActivityPub on their threads.net account ([#377]) @@ -267,6 +271,8 @@ - PHP: Introduced a namespace, changed the plugin hooks to friends_loaded and friends_load_parsers - Add checks for diagnosing the correct functioning to Site Health +[#382]: https://github.com/akirk/friends/pull/382 +[#381]: https://github.com/akirk/friends/pull/381 [#378]: https://github.com/akirk/friends/pull/378 [#377]: https://github.com/akirk/friends/pull/377 [#374]: https://github.com/akirk/friends/pull/374 diff --git a/README.md b/README.md index 89fb3fd2..2a618687 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - Requires at least: 5.0 - Tested up to: 6.6 - License: GPL-2.0-or-later -- Stable tag: 3.1.2 +- Stable tag: 3.1.3 Your own WordPress at the center of your online activity. Follow friends and other websites and establish friendship relationships between blogs. @@ -96,6 +96,10 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ## Changelog +### 3.1.3 +- Add AJAX refreshing of feeds ([#382]) +- Fix Fatal in the MF2 library ([#381]) + ### 3.1.2 - Fix support for threads.net ([#378]) - Add a warning if a user has not enabled ActivityPub on their threads.net account ([#377]) @@ -121,39 +125,8 @@ There is a cache of your friends post in form of a Custom Post Type friend_post - Fix 404 on the New private post widget props @liviacarolgouvea ([#361]) - Improve ghost.org ActivityPub compatibility ([#356]) -### 2.9.9 -- Avoid fatal when no user login can be found during boosting ([#355]) -- A small update of a filter for Enable Mastodon Apps 0.9.8 - -### 2.9.8 -- Fix ActivityPub preview and use more details when creating the user ([#354]) - -### 2.9.7 -- Fix boost button ([#353]) - -### 2.9.6 -- Allow creating multiple dashboard widgets in ([#349]) -- Add support for double-encoded HTML entities in RSS in ([#352]) -- Expose the list of your followers and make it easy to follow back in ([#351]) -- Fixed a bug that could cause double items on initial feed refresh. - -### 2.9.5 -- Don't override ActivityPub mentions ([#345]) -- Add a dashboard widget ([#346]) -- Automatically update dashboard widget with new posts ([#347]) -- Account for WordPress installs in a directory ([#348]) - -### 2.9.4 -- Fix an out of memory error in get_author_posts_url ([#339]) -- Fix ignore notification settings when no `friend_listed` passed by @logicalor in ([#324]) -- Null coalesce `$html` to empty string to avoid deprecation notices by @logicalor in ([#325]) -- Support the WordPress PHPCS ruleset ([#329]), props @apermo -- Improve PHPCS WordPress compliance ([#330]) -- Post Cache Admin: Only show subscription author ([#333]) -- Add automatic-status menu slug ([#334]) -- Fix the all postids query ([#335]) -- Don't define a wp-editor dependency ([#332]) - +[#382]: https://github.com/akirk/friends/pull/382 +[#381]: https://github.com/akirk/friends/pull/381 [#378]: https://github.com/akirk/friends/pull/378 [#377]: https://github.com/akirk/friends/pull/377 [#374]: https://github.com/akirk/friends/pull/374 @@ -171,22 +144,3 @@ There is a cache of your friends post in form of a Custom Post Type friend_post [#357]: https://github.com/akirk/friends/pull/357 [#361]: https://github.com/akirk/friends/pull/361 [#356]: https://github.com/akirk/friends/pull/356 -[#355]: https://github.com/akirk/friends/pull/355 -[#354]: https://github.com/akirk/friends/pull/354 -[#353]: https://github.com/akirk/friends/pull/353 -[#349]: https://github.com/akirk/friends/pull/349 -[#352]: https://github.com/akirk/friends/pull/352 -[#351]: https://github.com/akirk/friends/pull/351 -[#345]: https://github.com/akirk/friends/pull/345 -[#346]: https://github.com/akirk/friends/pull/346 -[#347]: https://github.com/akirk/friends/pull/347 -[#348]: https://github.com/akirk/friends/pull/348 -[#339]: https://github.com/akirk/friends/pull/339 -[#324]: https://github.com/akirk/friends/pull/324 -[#325]: https://github.com/akirk/friends/pull/325 -[#329]: https://github.com/akirk/friends/pull/329 -[#330]: https://github.com/akirk/friends/pull/330 -[#333]: https://github.com/akirk/friends/pull/333 -[#334]: https://github.com/akirk/friends/pull/334 -[#335]: https://github.com/akirk/friends/pull/335 -[#332]: https://github.com/akirk/friends/pull/332 diff --git a/friends.php b/friends.php index 4fe8d03c..98befe8c 100644 --- a/friends.php +++ b/friends.php @@ -3,7 +3,7 @@ * Plugin name: Friends * Plugin author: Alex Kirk * Plugin URI: https://github.com/akirk/friends - * Version: 3.1.2 + * Version: 3.1.3 * Requires PHP: 5.6 * Description: A social network between WordPresses. Privacy focused, by itself a self-hosted RSS++ reader with notifications. @@ -25,7 +25,7 @@ define( 'FRIENDS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'FRIENDS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); define( 'FRIENDS_PLUGIN_FILE', plugin_dir_path( __FILE__ ) . '/' . basename( __FILE__ ) ); -define( 'FRIENDS_VERSION', '3.1.2' ); +define( 'FRIENDS_VERSION', '3.1.3' ); require_once __DIR__ . '/libs/Mf2/Parser.php';