Skip to content

Commit fafa413

Browse files
committed
Version bump + Changelog
1 parent eb0a8bd commit fafa413

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Tested up to: 6.2
77
- Requires PHP: 5.2.4
88
- License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
9-
- Stable tag: 0.6.2
9+
- Stable tag: 0.6.3
1010

1111
Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
1212

@@ -78,7 +78,7 @@ Here is a list of endpoints and their implementation status:
7878
- [x] `POST /api/v1/notifications/clear` [Dismiss all notification](https://docs.joinmastodon.org/methods/notifications/#clear)
7979
- [x] `POST /api/v1/notifications/:id/dismiss` [Dismiss a single notification](https://docs.joinmastodon.org/methods/notifications/#dismiss)
8080
- [x] `GET /api/v1/timelines/home` [View home timeline](https://docs.joinmastodon.org/methods/timelines/#home)
81-
- [ ] `GET /api/v1/timelines/public` (implemented as empty) [View public timeline](https://docs.joinmastodon.org/methods/timelines/#public)
81+
- [x] `GET /api/v1/timelines/public` [View public timeline](https://docs.joinmastodon.org/methods/timelines/#public)
8282
- [ ] `GET /api/v1/markers` (implemented as empty) [Get saved timeline positions](https://docs.joinmastodon.org/methods/markers/#get)
8383
- [ ] `POST /api/v1/markers` [Save your position in a timeline](https://docs.joinmastodon.org/methods/markers/#create)
8484
- [x] `GET /api/v2/search` (partial, accounts (local and exact match for remote) and statuses in the local db) [Perform a search](https://docs.joinmastodon.org/methods/search/#v2)
@@ -94,6 +94,16 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
9494

9595
## Changelog
9696

97+
### 0.6.3
98+
- Thanks @toolstack for lots of PRs with small fixes and enhancements!
99+
- Fixed compatibility with version 2.0.0 of the ActivityPub plugin ([#60]) thanks @toolstack!
100+
- Strip the protocol from the home_url ([#52]) props @toolstack
101+
- Add additional warning about changing the default post format ([#53]) props @toolstack
102+
- Make sure to decode html_entities for blog_info() ([#51]) props @toolstack
103+
- Enable local/public timeline ([#62]) props @toolstack
104+
- Check to make sure the current user has edit_post posting ([#61]) props @toolstack
105+
- Fix duplicate line generation in whitespace code ([#55]) props @toolstack
106+
97107
### 0.6.2
98108
- Add a setting to implicitly re-register the next unknown client ([#48])
99109
- Add Instance-Endpoint Filters ([#45]) props @pfefferle
@@ -158,6 +168,13 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
158168
- Post replies as comments ([#3])
159169
- Fix a fatal when saving the default post format
160170

171+
[#60]: https://github.com/akirk/enable-mastodon-apps/pull/60
172+
[#52]: https://github.com/akirk/enable-mastodon-apps/pull/52
173+
[#53]: https://github.com/akirk/enable-mastodon-apps/pull/53
174+
[#51]: https://github.com/akirk/enable-mastodon-apps/pull/51
175+
[#62]: https://github.com/akirk/enable-mastodon-apps/pull/62
176+
[#61]: https://github.com/akirk/enable-mastodon-apps/pull/61
177+
[#55]: https://github.com/akirk/enable-mastodon-apps/pull/55
161178
[#48]: https://github.com/akirk/enable-mastodon-apps/pull/48
162179
[#45]: https://github.com/akirk/enable-mastodon-apps/pull/45
163180
[#44]: https://github.com/akirk/enable-mastodon-apps/pull/44

enable-mastodon-apps.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin name: Enable Mastodon Apps
44
* Plugin author: Alex Kirk
55
* Plugin URI: https://github.com/akirk/enable-mastodon-apps
6-
* Version: 0.6.2
6+
* Version: 0.6.3
77
*
88
* Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
99
*
@@ -15,7 +15,7 @@
1515

1616
defined( 'ABSPATH' ) || exit;
1717
define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
18-
define( 'ENABLE_MASTODON_APPS_VERSION', '0.6.2' );
18+
define( 'ENABLE_MASTODON_APPS_VERSION', '0.6.3' );
1919

2020
require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php';
2121
OAuth2\Autoloader::register();

0 commit comments

Comments
 (0)