From 64460872aacfe1e318a89e862574c4c4274ac75a Mon Sep 17 00:00:00 2001 From: M66B Date: Tue, 21 Sep 2021 08:07:04 +0200 Subject: [PATCH] 1.1731 release --- CHANGELOG.md | 4 ++ app/build.gradle | 2 +- app/src/main/assets/CHANGELOG.md | 4 ++ .../eu/faircode/email/ServiceSynchronize.java | 19 +++--- metadata/en-US/changelogs/1731.txt | 68 +++++++++++++++++++ 5 files changed, 87 insertions(+), 10 deletions(-) create mode 100644 metadata/en-US/changelogs/1731.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bc679fc8f..22d6f0845e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ### [Yaverlandia](https://en.wikipedia.org/wiki/Yaverlandia) +### 1.1731 + +* Fixed invalid error reports + ### 1.1730 * Small improvements and minor bug fixes diff --git a/app/build.gradle b/app/build.gradle index 534dfef106..b3c201a446 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.bugsnag.android.gradle' apply plugin: 'kotlin-android' apply plugin: 'de.undercouch.download' -def getVersionCode = { -> return 1730 } +def getVersionCode = { -> return 1731 } def getRevision = { -> "\"a\"" } def getReleaseName = { -> return "\"Yaverlandia\"" } // https://en.wikipedia.org/wiki/List_of_dinosaur_genera diff --git a/app/src/main/assets/CHANGELOG.md b/app/src/main/assets/CHANGELOG.md index 4bc679fc8f..22d6f0845e 100644 --- a/app/src/main/assets/CHANGELOG.md +++ b/app/src/main/assets/CHANGELOG.md @@ -4,6 +4,10 @@ ### [Yaverlandia](https://en.wikipedia.org/wiki/Yaverlandia) +### 1.1731 + +* Fixed invalid error reports + ### 1.1730 * Small improvements and minor bug fixes diff --git a/app/src/main/java/eu/faircode/email/ServiceSynchronize.java b/app/src/main/java/eu/faircode/email/ServiceSynchronize.java index afd6ed25c5..b8f922ec05 100644 --- a/app/src/main/java/eu/faircode/email/ServiceSynchronize.java +++ b/app/src/main/java/eu/faircode/email/ServiceSynchronize.java @@ -2173,16 +2173,17 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences // Stop watching operations Log.i(account.name + " stop watching operations"); final TwoStateOwner _owner = cowner.value; - getMainHandler().post(new Runnable() { - @Override - public void run() { - try { - _owner.destroy(); - } catch (Throwable ex) { - Log.e(ex); + if (_owner != null) + getMainHandler().post(new Runnable() { + @Override + public void run() { + try { + _owner.destroy(); + } catch (Throwable ex) { + Log.e(ex); + } } - } - }); + }); // Stop executing operations Log.i(account.name + " stop executing operations"); diff --git a/metadata/en-US/changelogs/1731.txt b/metadata/en-US/changelogs/1731.txt new file mode 100644 index 0000000000..22d6f0845e --- /dev/null +++ b/metadata/en-US/changelogs/1731.txt @@ -0,0 +1,68 @@ +## Changelog + +🌎 [Google Translate](https://translate.google.com/translate?sl=en&u=https://github.com/M66B/FairEmail/blob/master/CHANGELOG.md) + +### [Yaverlandia](https://en.wikipedia.org/wiki/Yaverlandia) + +### 1.1731 + +* Fixed invalid error reports + +### 1.1730 + +* Small improvements and minor bug fixes + +### 1.1729 + +* Added miscellaneous option to disable showing the changelog + +### 1.1728 + +* Prevent suggesting spam contacts +* Confirm deleting block sender rules + +### 1.1727 + +* Following dark/light theme for original message view +* Added message menu item / optional button to force light theme for original message view +* Moved block sender rules to local contact database to make it a free feature +* Fixed verifying some S/MIME signatures + +### 1.1726 + +* Show in-app changelog after updating + +### 1.1725 + +* Added in-app changelog + +### 1.1724 + +* Added display option for fixed date header +* Moved navigation folders under accounts in the navigation menu + +### 1.1723 + +* Fixed polling sometimes stopping + +### 1.1722 + +* Added sort folders on unread messages option +* Added Outlook .msg file decoder + +### 1.1721 + +* Added decoding of Sophos Email Appliance links +* Updated libraries + +### 1.1720 + +* Moved outbox to unified folders in navigation menu +* Added connection option to connect via VPN only +* Added sqlite checkpoint after processing operations + +### [Xiyunykus](https://en.wikipedia.org/wiki/Xiyunykus) + +### 1.1719 + +* Added tap on folder name to go to folder (conversation/message view only)