File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change
1
+ ### 0.9.9
2
+ - Improve targeting of CORS headers ([ #181 ] )
3
+ - Fix fatal when deleting an app ([ #182 ] )
4
+
1
5
### 0.9.8
2
6
- Fix replying on received comments via the ActivityPub plugin ([ #176 ] )
3
7
130
134
- Post replies as comments ([ #3 ] )
131
135
- Fix a fatal when saving the default post format
132
136
137
+ [ #182 ] : https://github.com/akirk/enable-mastodon-apps/pull/182
138
+ [ #181 ] : https://github.com/akirk/enable-mastodon-apps/pull/181
133
139
[ #176 ] : https://github.com/akirk/enable-mastodon-apps/pull/176
134
140
[ #175 ] : https://github.com/akirk/enable-mastodon-apps/pull/175
135
141
[ #174 ] : https://github.com/akirk/enable-mastodon-apps/pull/174
Original file line number Diff line number Diff line change 6
6
- Tested up to: 6.6
7
7
- Requires PHP: 7.4
8
8
- License: [ GPLv2 or later] ( http://www.gnu.org/licenses/gpl-2.0.html )
9
- - Stable tag: 0.9.8
9
+ - Stable tag: 0.9.9
10
10
11
11
Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
12
12
@@ -98,6 +98,10 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
98
98
99
99
## Changelog
100
100
101
+ ### 0.9.9
102
+ - Improve targeting of CORS headers ([ #181 ] )
103
+ - Fix fatal when deleting an app ([ #182 ] )
104
+
101
105
### 0.9.8
102
106
- Fix replying on received comments via the ActivityPub plugin ([ #176 ] )
103
107
@@ -146,6 +150,8 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
146
150
- Improves to Attachments ([ #132 ] , [ #136 ] )
147
151
- Fix OAuth rewrite path ([ #130 ] )
148
152
153
+ [ #182 ] : https://github.com/akirk/enable-mastodon-apps/pull/182
154
+ [ #181 ] : https://github.com/akirk/enable-mastodon-apps/pull/181
149
155
[ #176 ] : https://github.com/akirk/enable-mastodon-apps/pull/176
150
156
[ #175 ] : https://github.com/akirk/enable-mastodon-apps/pull/175
151
157
[ #174 ] : https://github.com/akirk/enable-mastodon-apps/pull/174
Original file line number Diff line number Diff line change 3
3
* Plugin name: Enable Mastodon Apps
4
4
* Plugin author: Alex Kirk
5
5
* Plugin URI: https://github.com/akirk/enable-mastodon-apps
6
- * Version: 0.9.8
6
+ * Version: 0.9.9
7
7
*
8
8
* Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
9
9
*
19
19
20
20
defined ( 'ABSPATH ' ) || exit;
21
21
define ( 'ENABLE_MASTODON_APPS_PLUGIN_DIR ' , plugin_dir_path ( __FILE__ ) );
22
- define ( 'ENABLE_MASTODON_APPS_VERSION ' , '0.9.8 ' );
22
+ define ( 'ENABLE_MASTODON_APPS_VERSION ' , '0.9.9 ' );
23
23
24
24
require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php ' ;
25
25
OAuth2 \Autoloader::register ();
You can’t perform that action at this time.
0 commit comments