From 600d20d2bc67b52d7846eff3ad6d09f145f485bb Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Thu, 18 Jan 2024 19:01:19 +0100 Subject: [PATCH] Version bump + Changelog --- README.md | 6 +++++- friends.php | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 725cad31..90fdac8a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - Tested up to: 6.4 - Requires PHP: 5.6 - License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) -- Stable tag: 2.8.3 +- Stable tag: 2.8.4 Your own WordPress at the center of your online activity. Follow friends and other websites and establish friendship relationships between blogs. @@ -95,6 +95,9 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ## Changelog +### 2.8.4 +- Fix adding new feeds with a Mastodon-style notation ([#282]) + ### 2.8.3 - Unfortunately we had to disable Gutenberg on the frontend ([#273]) - Fixed a missing reblog button for virtual users ([#261]) @@ -293,6 +296,7 @@ There is a cache of your friends post in form of a Custom Post Type friend_post - Add blog to blog messaging [Send to E-Reader plugin]: https://github.com/akirk/friends-send-to-e-reader +[#282]: https://github.com/akirk/friends/pull/282 [#273]: https://github.com/akirk/friends/pull/273 [#261]: https://github.com/akirk/friends/pull/261 [#272]: https://github.com/akirk/friends/pull/272 diff --git a/friends.php b/friends.php index f8e2c647..f0bec72d 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: 2.8.3 + * Version: 2.8.4 * * Description: A social network between WordPresses. Privacy focused, by itself a self-hosted RSS++ reader with notifications. * @@ -24,7 +24,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', '2.8.3' ); +define( 'FRIENDS_VERSION', '2.8.4' ); require_once __DIR__ . '/libs/Mf2/Parser.php';