From 431594f431d1504e5de3dedce99280d3f4733544 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Sun, 11 Dec 2022 02:20:15 +0100 Subject: [PATCH] Changelog + version bump --- README.md | 6 ++++++ friends.php | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d906f4c7..65ec4320 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,12 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ## Changelog +### 2.1.2 +- Frontend: add option to show/hide hidden entries on a user page ((https://github.com/akirk/friends/pull/124). +- Admin: Fix that the main settings page would not save. +- Plugins (ActivityPub): Add a function to get all friends for a specific parser. This is for https://github.com/pfefferle/wordpress-activitypub/pull/213. +- Plugins: Allow plugins to suggest a better display name and username for friends via two new hooks `friends_suggest_user_login` and `friends_suggest_display_name`. + ### 2.1.1 - Friends messages and status posting UI: Bring back the Gutenberg Editor using the updated blocks-everywhere (https://github.com/akirk/friends/pull/122). - Admin: Fix a redirect problem on the autostatus admin page. diff --git a/friends.php b/friends.php index 7734b8ca..a1330600 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.1.1 + * Version: 2.1.2 * * Description: Decentralized Social Networking with WordPress. Connect WordPresses through friend requests and read each other’s (private) posts in a feed reader. * @@ -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.1.1' ); +define( 'FRIENDS_VERSION', '2.1.2' ); require_once __DIR__ . '/libs/Mf2/Parser.php'; require_once __DIR__ . '/libs/blocks-everywhere/blocks-everywhere.php';