From 4a531bdcf92bcb4a36697d3939d9686b81909b30 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Thu, 16 Jan 2025 17:21:44 +0100 Subject: [PATCH] Version bump + Changelog --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 24 +++++++++++++++++++++++- friends.php | 4 ++-- 3 files changed, 47 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3326cd41..7256920b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +### 3.3.0 +- Styling Overhaul! ([#431]) +- Add the FediPress theme ([#433]) +- Incoming Feed Items: Fix in-article hash links ([#426]) +- Add more functions for a browser extension ([#427]) +- Browser Extension: API Key per user ([#429]) +- Fix parsing Pixelfed's Image attachments ([#430]) +- Add the friend's avatar to the page header ([#422]) +- Add inline follow link ([#432]) +- Log the newly supported ActivityPub events to the Friends Log ([#423]) +- Augment the ActivityPub New Follower E-Mail ([#434]) + ### 3.2.3 - ActivityPub: Support update of posts and people ([#421]) - Add support for ActivityPub Move activity ([#420]) @@ -318,6 +330,16 @@ Hoping that this hardening will bring back the plugin to the WordPress.org direc - 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 +[#426]: https://github.com/akirk/friends/pull/426 +[#427]: https://github.com/akirk/friends/pull/427 +[#429]: https://github.com/akirk/friends/pull/429 +[#430]: https://github.com/akirk/friends/pull/430 +[#431]: https://github.com/akirk/friends/pull/431 +[#422]: https://github.com/akirk/friends/pull/422 +[#432]: https://github.com/akirk/friends/pull/432 +[#433]: https://github.com/akirk/friends/pull/433 +[#423]: https://github.com/akirk/friends/pull/423 +[#434]: https://github.com/akirk/friends/pull/434 [#421]: https://github.com/akirk/friends/pull/421 [#420]: https://github.com/akirk/friends/pull/420 [#419]: https://github.com/akirk/friends/pull/419 diff --git a/README.md b/README.md index 8e325aae..ef79e170 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - Requires PHP: 7.2 - Tested up to: 6.7 - License: GPL-2.0-or-later -- Stable tag: 3.2.3 +- Stable tag: 3.3.0 Your own WordPress at the center of your online activity. Follow friends and other websites and establish friendship relationships between blogs. @@ -96,6 +96,18 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ## Changelog +### 3.3.0 +- Styling Overhaul! ([#431]) +- Add the FediPress theme ([#433]) +- Incoming Feed Items: Fix in-article hash links ([#426]) +- Add more functions for a browser extension ([#427]) +- Browser Extension: API Key per user ([#429]) +- Fix parsing Pixelfed's Image attachments ([#430]) +- Add the friend's avatar to the page header ([#422]) +- Add inline follow link ([#432]) +- Log the newly supported ActivityPub events to the Friends Log ([#423]) +- Augment the ActivityPub New Follower E-Mail ([#434]) + ### 3.2.3 - ActivityPub: Support update of posts and people ([#421]) - Add support for ActivityPub Move activity ([#420]) @@ -172,6 +184,16 @@ Hoping that this hardening will bring back the plugin to the WordPress.org direc - Fix 404 on the New private post widget props @liviacarolgouvea ([#361]) - Improve ghost.org ActivityPub compatibility ([#356]) +[#426]: https://github.com/akirk/friends/pull/426 +[#427]: https://github.com/akirk/friends/pull/427 +[#429]: https://github.com/akirk/friends/pull/429 +[#430]: https://github.com/akirk/friends/pull/430 +[#431]: https://github.com/akirk/friends/pull/431 +[#422]: https://github.com/akirk/friends/pull/422 +[#432]: https://github.com/akirk/friends/pull/432 +[#433]: https://github.com/akirk/friends/pull/433 +[#423]: https://github.com/akirk/friends/pull/423 +[#434]: https://github.com/akirk/friends/pull/434 [#421]: https://github.com/akirk/friends/pull/421 [#420]: https://github.com/akirk/friends/pull/420 [#419]: https://github.com/akirk/friends/pull/419 diff --git a/friends.php b/friends.php index 51c56062..18f54b08 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.2.3 + * Version: 3.3.0 * 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.2.3' ); +define( 'FRIENDS_VERSION', '3.3.0' ); require_once __DIR__ . '/libs/Mf2/Parser.php';