forked from mirrors/Fedilab
Update release notes
This commit is contained in:
parent
249b36f987
commit
a8617342c3
3 changed files with 4 additions and 7 deletions
|
@ -7,7 +7,7 @@
|
||||||
{
|
{
|
||||||
"version": "3.0.11",
|
"version": "3.0.11",
|
||||||
"code": "401",
|
"code": "401",
|
||||||
"note": "Changed:\n- Composing messages is no longer forced to max chars\n\nFixed:\n- Cross-account follow\n- Cannot subscribe to notifications for an account\n- Issues when sharing\n- Wrong profile for emoji reactions in notifications\n- Issue with cards\n- Crashes with tabs\n- Tabs cannot be renamed"
|
"note": "Added:\n- New theme: Dark Elephant from S1m\n- Error messages from server side when posting fails\n- Allow to set the fetch time for delayed notifications\n\nChanged:\n- Fetch more buttons more visible\n\nFixed:\n- Issue when fetching missing messages\n- Some issues with themes\n- Too much lost space with reaction (Pleroma)\n- Delete and redraft crashes\n- Crash when playing a video\n- Other crash fixes"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "3.0.10",
|
"version": "3.0.10",
|
||||||
|
|
|
@ -91,9 +91,7 @@ public class PushHelper {
|
||||||
new Thread(() -> {
|
new Thread(() -> {
|
||||||
List<BaseAccount> accounts = new Account(context).getPushNotificationAccounts();
|
List<BaseAccount> accounts = new Account(context).getPushNotificationAccounts();
|
||||||
for (BaseAccount account : accounts) {
|
for (BaseAccount account : accounts) {
|
||||||
((Activity) context).runOnUiThread(() -> {
|
((Activity) context).runOnUiThread(() -> UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance));
|
||||||
UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}).start();
|
}).start();
|
||||||
break;
|
break;
|
||||||
|
@ -106,9 +104,7 @@ public class PushHelper {
|
||||||
List<BaseAccount> accounts = new Account(context).getPushNotificationAccounts();
|
List<BaseAccount> accounts = new Account(context).getPushNotificationAccounts();
|
||||||
if (accounts != null) {
|
if (accounts != null) {
|
||||||
for (BaseAccount account : accounts) {
|
for (BaseAccount account : accounts) {
|
||||||
((Activity) context).runOnUiThread(() -> {
|
((Activity) context).runOnUiThread(() -> UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance));
|
||||||
UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).start();
|
}).start();
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
Added:
|
Added:
|
||||||
- New theme: Dark Elephant from S1m
|
- New theme: Dark Elephant from S1m
|
||||||
- Error messages from server side when posting fails
|
- Error messages from server side when posting fails
|
||||||
|
- Allow to set the fetch time for delayed notifications
|
||||||
|
|
||||||
Changed:
|
Changed:
|
||||||
- Fetch more buttons more visible
|
- Fetch more buttons more visible
|
||||||
|
|
Loading…
Reference in a new issue