Version 1.2.3

This commit is contained in:
Jeremy Dormitzer 2018-11-02 06:50:45 -04:00
parent 506769bf14
commit cad049391b
2 changed files with 15 additions and 3 deletions

View File

@ -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.0
Stable tag: 1.2.3
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,18 @@ 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.3
- Send an Update activity when the site logo changes
- Log out activity delivery errors to the server error log
### 1.2.2
- Fix a bug where actor public keys were getting truncated before being delivered to other servers
- Fix the way icons are represented in the actor JSON
### 1.2.1
- Send an Update activity when blog details (name, tagline) change
- Fix a bug in where activities posted to the outbox had their data compacted before it was persisted
### 1.2.0
- Fix a bug where incoming ActivityPub replies were getting duplicated if comment moderation was disabled
- Stop leaking guest (non-user) commenter email addresses in their ActivityPub usernames

View File

@ -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.2
Version: 1.2.3
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.2' );
define( 'PTEROTYPE_VERSION', '1.2.3' );
define( 'PTEROTYPE_BLOG_ACTOR_SLUG', '-blog' );
define( 'PTEROTYPE_BLOG_ACTOR_USERNAME', 'blog' );