From 0e1823e6eb25259ea18dd6f582f36ae48d6e7b55 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Fri, 22 Nov 2024 11:45:54 +0100 Subject: [PATCH] Version bump + Changelog --- CHANGELOG.md | 4 ++++ README.md | 6 +++++- friends.php | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a1c58b0..8f7f1996 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 3.1.8 +- Fix missing JavaScript on the frontend ([#396]) + ### 3.1.7 - Add a theme selector ([#393]) - Followers: Add Support for ActivityPub plugins blog profile ([#394]) @@ -290,6 +293,7 @@ - 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 +[#396]: https://github.com/akirk/friends/pull/396 [#395]: https://github.com/akirk/friends/pull/395 [#394]: https://github.com/akirk/friends/pull/394 [#393]: https://github.com/akirk/friends/pull/393 diff --git a/README.md b/README.md index e9b673d0..fc602e22 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - Requires at least: 5.0 - Tested up to: 6.7 - License: GPL-2.0-or-later -- Stable tag: 3.1.7 +- Stable tag: 3.1.8 Your own WordPress at the center of your online activity. Follow friends and other websites and establish friendship relationships between blogs. @@ -96,6 +96,9 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ## Changelog +### 3.1.8 +- Fix missing JavaScript on the frontend ([#396]) + ### 3.1.7 - Add a theme selector ([#393]) - Followers: Add Support for ActivityPub plugins blog profile ([#394]) @@ -144,6 +147,7 @@ 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]) +[#396]: https://github.com/akirk/friends/pull/396 [#395]: https://github.com/akirk/friends/pull/395 [#394]: https://github.com/akirk/friends/pull/394 [#393]: https://github.com/akirk/friends/pull/393 diff --git a/friends.php b/friends.php index 724b48c9..addc6ec0 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.7 + * Version: 3.1.8 * 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.7' ); +define( 'FRIENDS_VERSION', '3.1.8' ); require_once __DIR__ . '/libs/Mf2/Parser.php';