Skip to content

Commit

Permalink
Changelog + Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Feb 20, 2025
1 parent ae49702 commit 7d14bf6
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 1.1.0
- Add an Announcement CPT so that we can inform about the changed app settings ([#204])
- Add support for viewing bookmarks and favourites ([#203])
- Fix a wrong settings link, thanks @jeherve! ([#202])
- Fix problems with user language when authorizing ([#201])

### 1.0.0
- Post through Mastodon Apps to a new post type by default ([#192])
- Explain the new hide posts setting better ([#198])
Expand Down Expand Up @@ -146,6 +152,10 @@
- Post replies as comments ([#3])
- Fix a fatal when saving the default post format

[#204]: https://github.com/akirk/enable-mastodon-apps/pull/204
[#203]: https://github.com/akirk/enable-mastodon-apps/pull/203
[#202]: https://github.com/akirk/enable-mastodon-apps/pull/202
[#201]: https://github.com/akirk/enable-mastodon-apps/pull/201
[#198]: https://github.com/akirk/enable-mastodon-apps/pull/198
[#197]: https://github.com/akirk/enable-mastodon-apps/pull/197
[#196]: https://github.com/akirk/enable-mastodon-apps/pull/196
Expand Down
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Tested up to: 6.6
- Requires PHP: 7.4
- License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 1.0.0
- Stable tag: 1.1.0

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

Expand Down Expand Up @@ -100,6 +100,12 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi

## Changelog

### 1.1.0
- Add an Announcement CPT so that we can inform about the changed app settings ([#204])
- Add support for viewing bookmarks and favourites ([#203])
- Fix a wrong settings link, thanks @jeherve! ([#202])
- Fix problems with user language when authorizing ([#201])

### 1.0.0
- Post through Mastodon Apps to a new post type by default ([#192])
- Explain the new hide posts setting better ([#198])
Expand Down Expand Up @@ -164,6 +170,20 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
- Improves to Attachments ([#132], [#136])
- Fix OAuth rewrite path ([#130])

[#204]: https://github.com/akirk/enable-mastodon-apps/pull/204
[#203]: https://github.com/akirk/enable-mastodon-apps/pull/203
[#202]: https://github.com/akirk/enable-mastodon-apps/pull/202
[#201]: https://github.com/akirk/enable-mastodon-apps/pull/201
[#198]: https://github.com/akirk/enable-mastodon-apps/pull/198
[#197]: https://github.com/akirk/enable-mastodon-apps/pull/197
[#196]: https://github.com/akirk/enable-mastodon-apps/pull/196
[#192]: https://github.com/akirk/enable-mastodon-apps/pull/192
[#193]: https://github.com/akirk/enable-mastodon-apps/pull/193
[#195]: https://github.com/akirk/enable-mastodon-apps/pull/195
[#194]: https://github.com/akirk/enable-mastodon-apps/pull/194
[#191]: https://github.com/akirk/enable-mastodon-apps/pull/191
[#185]: https://github.com/akirk/enable-mastodon-apps/pull/185
[#184]: https://github.com/akirk/enable-mastodon-apps/pull/184
[#182]: https://github.com/akirk/enable-mastodon-apps/pull/182
[#181]: https://github.com/akirk/enable-mastodon-apps/pull/181
[#176]: https://github.com/akirk/enable-mastodon-apps/pull/176
Expand Down
4 changes: 2 additions & 2 deletions enable-mastodon-apps.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin name: Enable Mastodon Apps
* Plugin author: Alex Kirk
* Plugin URI: https://github.com/akirk/enable-mastodon-apps
* Version: 1.0.0
* Version: 1.1.0
*
* Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
*
Expand All @@ -19,7 +19,7 @@

defined( 'ABSPATH' ) || exit;
define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'ENABLE_MASTODON_APPS_VERSION', '1.0.0' );
define( 'ENABLE_MASTODON_APPS_VERSION', '1.1.0' );

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

0 comments on commit 7d14bf6

Please sign in to comment.