From 9d0f98b627197c61e0fe4046729f754e5355940e Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sun, 11 Nov 2018 10:01:43 -0500 Subject: [PATCH] Version 1.2.9 --- README.txt | 7 ++++++- pterotype.php | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.txt b/README.txt index 3107fef..2f8dc8a 100644 --- a/README.txt +++ b/README.txt @@ -5,7 +5,7 @@ Requires at least: 4.9.8 Requires PHP: 7.2.11 License: MIT License URI: https://github.com/jdormit/pterotype/blob/master/LICENSE -Stable tag: 1.2.8 +Stable tag: 1.2.9 Tested up to: 4.9.8 Pterotype expands your audience by giving your blog an ActivityPub stream, making it a part of the Fediverse. @@ -14,6 +14,11 @@ Pterotype expands your audience by giving your blog an ActivityPub stream, makin Pterotype expands your audience by giving your blog an ActivityPub stream, making it a part of the Fediverse. Users of Mastodon, Pleroma, and other Fediverse services will be able to follow and share your posts from the platform of their choice. == Changelog == +### 1.2.9 +- Add opengraph metadata to site if it doesn't already have it +- Handle invalid actor slugs +- Improve handling of upserting objects into the DB + ### 1.2.8 - Show Fediverse icons as comment avatars for comments from the Fediverse - Advertise that followers get automatically approved via the manuallyApprovesFollowers field diff --git a/pterotype.php b/pterotype.php index 23f4681..94c6d43 100644 --- a/pterotype.php +++ b/pterotype.php @@ -3,7 +3,7 @@ Plugin Name: Pterotype Plugin URI: https://getpterotype.com Description: Pterotype expands your audience by giving your blog an ActivityPub stream, making it a part of the Fediverse. -Version: 1.2.8 +Version: 1.2.9 Author: Jeremy Dormitzer Author URI: https://jeremydormitzer.com License: MIT @@ -12,7 +12,7 @@ License URI: https://github.com/jdormit/blob/master/LICENSE require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/init.php'; -define( 'PTEROTYPE_VERSION', '1.2.8' ); +define( 'PTEROTYPE_VERSION', '1.2.9' ); define( 'PTEROTYPE_BLOG_ACTOR_SLUG', '-blog' ); define( 'PTEROTYPE_BLOG_ACTOR_USERNAME', 'blog' );