Skip to content

Commit

Permalink
Changelog + version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Dec 11, 2022
1 parent bfe67e5 commit 431594f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions friends.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand All @@ -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';
Expand Down

0 comments on commit 431594f

Please sign in to comment.