You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@ Following toot objects are supported.
54
54
55
55
* Text
56
56
* Images
57
+
* Galleries
57
58
* URLs
58
59
* Hashtags
59
60
* Mentions
@@ -62,7 +63,6 @@ Following toot objects are supported.
62
63
63
64
Following toot objects are not supported.
64
65
65
-
* Galleries
66
66
* Audio
67
67
* Video
68
68
* Poll
@@ -131,6 +131,10 @@ TootPress does not modify the existing canonical url handling in WordPress. If y
131
131
132
132
The length of the cron period in combination with the configuration of caching determines how early a toot will be displayed within the blog. If a toot should be displayed as early as possible, the caching must be deactivated for the page containing the toots. Another possibility is removing the affected page from the cache, if new toots have been loaded. For this, a WordPress Action is fired by the plugin, which then must be processed by your caching plugin.
133
133
134
+
### How are backlinks to Mastodon displayed?
135
+
136
+
Backlinks to Mastodon can be activated in the plugin settings. In this case, the Mastodon Logo, which is shown for each toot, will be extended with an link to the original toot on the corresponding Mastodon instance. Recommendation is not activating the backlinks as this could cause an negative impact on SEO rating.
137
+
134
138
### Does TootPress support WordPress Multisite?
135
139
136
140
No. TootPress does not support the WordPress Multisite Feature. The plugin is working on the master-site, but is not working on all other child sites within the wordpress network.
@@ -139,8 +143,7 @@ No. TootPress does not support the WordPress Multisite Feature. The plugin is wo
139
143
140
144
* Low maturity level
141
145
* Early stage of development
142
-
* Future updates may require a complete reload of the toots.
143
-
* To avoid data inconsistancy and process errors
146
+
* Future updates may require a complete reload of the toots
144
147
145
148
## Branches
146
149
@@ -174,6 +177,18 @@ This project is licensed under the GPL3 License.
174
177
175
178
## Changelog
176
179
180
+
### 0.3 "Deadpool"
181
+
182
+
* April 2024
183
+
* Feature: Support of Gallery Toots
184
+
* Feature: Amount of Toots will be shown in WordPress Dashboard
185
+
* Feature: Option to activate Backlinks to Mastodon
186
+
* Changed: Label of User Interface Section in Plugin Options
187
+
* Bugfix: Plugin CSS will now really be activated
188
+
* Bugfix: Rewrite Rules will be updated after changed settings
189
+
* Bugfix: Internal Plugin Version will be set corretly
190
+
* Bugfix: CSS Option will be set correctly with Restore of default Settings
@@ -60,6 +60,7 @@ Following toot objects are supported.
60
60
61
61
* Text
62
62
* Images
63
+
* Galleries
63
64
* URLs
64
65
* Hashtags
65
66
* Mentions
@@ -68,7 +69,6 @@ Following toot objects are supported.
68
69
69
70
Following toot objects are not supported.
70
71
71
-
* Galleries
72
72
* Audio
73
73
* Video
74
74
* Poll
@@ -132,12 +132,28 @@ TootPress does not modify the existing canonical url handling in WordPress. If y
132
132
133
133
The length of the cron period in combination with the configuration of caching determines how early a toot will be displayed within the blog. If a toot should be displayed as early as possible, the caching must be deactivated for the page containing the toots. Another possibility is removing the affected page from the cache, if new toots have been loaded. For this, a WordPress Action is fired by the plugin, which then must be processed by your caching plugin.
134
134
135
+
= How are backlinks to Mastodon displayed? =
136
+
137
+
Backlinks to Mastodon can be activated in the plugin settings. In this case, the Mastodon Logo, which is shown for each toot, will be extended with an link to the original toot on the corresponding Mastodon instance. Recommendation is not activating the backlinks as this could cause an negative impact on SEO rating.
138
+
135
139
= Does TootPress support WordPress Multisite? =
136
140
137
141
No. TootPress does not support the WordPress Multisite Feature. The plugin is working on the master-site, but is not working on all other child sites within the wordpress network.
138
142
139
143
== Changelog ==
140
144
145
+
= 0.3 "Deadpool" =
146
+
147
+
* April 2024
148
+
* Feature: Support of Gallery Toots
149
+
* Feature: Amount of Toots will be shown in WordPress Dashboard
150
+
* Feature: Option to activate Backlinks to Mastodon
151
+
* Changed: Label of User Interface Section in Plugin Options
152
+
* Bugfix: Plugin CSS will now really be activated
153
+
* Bugfix: Rewrite Rules will be updated after changed settings
154
+
* Bugfix: Internal Plugin Version will be set corretly
155
+
* Bugfix: CSS Option will be set correctly with Restore of default Settings
156
+
141
157
= 0.2.1 =
142
158
143
159
* April 2023
@@ -156,5 +172,8 @@ No. TootPress does not support the WordPress Multisite Feature. The plugin is wo
156
172
157
173
== Upgrade Notice ==
158
174
175
+
= 0.3 =
176
+
This version brings gallery support and contains major bugfixes.
Copy file name to clipboardExpand all lines: tootpress_healthy.php
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,16 @@ function tootpress_healthy_check() {
121
121
} else {
122
122
$output.='<span class="mathilda-healtycheck-error"> Error: </span> PHP option allow_url_fopen is set to FALSE (0) on the webhosting environment. Please change to TRUE (1).';
0 commit comments