Commit a8617342 authored by Thomas's avatar Thomas
Browse files

Update release notes

parent 249b36f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
  {
    "version": "3.0.11",
    "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",
+2 −6
Original line number Diff line number Diff line
@@ -91,9 +91,7 @@ public class PushHelper {
                new Thread(() -> {
                    List<BaseAccount> accounts = new Account(context).getPushNotificationAccounts();
                    for (BaseAccount account : accounts) {
                        ((Activity) context).runOnUiThread(() -> {
                            UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance);
                        });
                        ((Activity) context).runOnUiThread(() -> UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance));
                    }
                }).start();
                break;
@@ -106,9 +104,7 @@ public class PushHelper {
            List<BaseAccount> accounts = new Account(context).getPushNotificationAccounts();
            if (accounts != null) {
                for (BaseAccount account : accounts) {
                    ((Activity) context).runOnUiThread(() -> {
                        UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance);
                    });
                    ((Activity) context).runOnUiThread(() -> UnifiedPush.unregisterApp(context, account.user_id + "@" + account.instance));
                }
            }
        }).start();
+1 −0
Original line number Diff line number Diff line
Added:
- New theme: Dark Elephant from S1m
- Error messages from server side when posting fails
- Allow to set the fetch time for delayed notifications

Changed:
- Fetch more buttons more visible