version bump
This commit is contained in:
parent
fcf71c456b
commit
98d7f7743e
4 changed files with 23 additions and 10 deletions
|
@ -27,13 +27,6 @@ matrix:
|
|||
- php: 5.6
|
||||
- php: 5.6
|
||||
env: WP_PLUGIN_DEPLOY=1
|
||||
- php: 5.5
|
||||
env: WP_VERSION=4.7 WP_MULTISITE=0
|
||||
- php: 5.4
|
||||
env: WP_VERSION=4.7 WP_MULTISITE=0
|
||||
- php: 5.3
|
||||
env: WP_VERSION=4.7 WP_MULTISITE=0
|
||||
dist: precise
|
||||
before_script:
|
||||
- |
|
||||
# Remove Xdebug for a huge performance increase:
|
||||
|
|
17
README.md
17
README.md
|
@ -4,7 +4,7 @@
|
|||
**Tags:** OStatus, fediverse, activitypub, activitystream
|
||||
**Requires at least:** 4.7
|
||||
**Tested up to:** 5.2.2
|
||||
**Stable tag:** 0.7.2
|
||||
**Stable tag:** 0.7.3
|
||||
**Requires PHP:** 5.6
|
||||
**License:** MIT
|
||||
**License URI:** http://opensource.org/licenses/MIT
|
||||
|
@ -60,6 +60,16 @@ To implement:
|
|||
|
||||
### What if you are running your blog in a subdirectory? ###
|
||||
|
||||
In order for webfinger to work, it must be mapped to the root directory of the URL on which your blog resides.
|
||||
|
||||
**Apache**
|
||||
|
||||
Add the following to the .htaccess file in the root directory:
|
||||
`RedirectMatch "^\/\.well-known(.*)$" "\/blog\/\.well-known$1"`
|
||||
Where 'blog' is the path to the subdirectory at which your blog resides.
|
||||
|
||||
### What if you are running your blog in a subdirectory? ###
|
||||
|
||||
In order for WebFinger to work, it must be mapped to the root directory of the URL on which your blog resides.
|
||||
|
||||
**Apache**
|
||||
|
@ -74,6 +84,11 @@ Where 'blog' is the path to the subdirectory at which your blog resides.
|
|||
|
||||
Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
||||
|
||||
### 0.7.3 ###
|
||||
|
||||
* refactorings
|
||||
* fixed PHP warnings
|
||||
|
||||
### 0.7.2 ###
|
||||
|
||||
* fixed JSON representation of posts https://merveilles.town/@xuv/101907542498716956
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Plugin Name: ActivityPub
|
||||
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
|
||||
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
|
||||
* Version: 0.7.2
|
||||
* Version: 0.7.3
|
||||
* Author: Matthias Pfefferle
|
||||
* Author URI: https://notiz.blog/
|
||||
* License: MIT
|
||||
|
|
|
@ -4,7 +4,7 @@ Donate link: https://notiz.blog/donate/
|
|||
Tags: OStatus, fediverse, activitypub, activitystream
|
||||
Requires at least: 4.7
|
||||
Tested up to: 5.2.2
|
||||
Stable tag: 0.7.2
|
||||
Stable tag: 0.7.3
|
||||
Requires PHP: 5.6
|
||||
License: MIT
|
||||
License URI: http://opensource.org/licenses/MIT
|
||||
|
@ -84,6 +84,11 @@ Where 'blog' is the path to the subdirectory at which your blog resides.
|
|||
|
||||
Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
|
||||
|
||||
= 0.7.3 =
|
||||
|
||||
* refactorings
|
||||
* fixed PHP warnings
|
||||
|
||||
= 0.7.2 =
|
||||
|
||||
* fixed JSON representation of posts https://merveilles.town/@xuv/101907542498716956
|
||||
|
|
Loading…
Reference in a new issue