diff --git a/CHANGELOG.md b/CHANGELOG.md index f996c3413..0053656f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # Mailspring Changelog +### 1.7.5 (4/16/2020) + +**Features:** + +- Search now supports the `NOT` operator as long as there is a positive search term. (ex: `in:inbox NOT is:unread`) #1605 + +**Fixes:** + +- A major issue has been resolved that prevented IMAP accounts (including Yahoo, Yandex, etc.) from being connected correctly. I'm sorry it's taken so long for this patch to be released. Thanks to @Kozzi11 for the fix and everyone for helping to track down the bug. #1868 + +- Disabling image autoloading now works consistently and also prevents requests for external stylesheets and web fonts that could be used for tracking. + +- Mailspring no longer gets "stuck" creating all drafts and replies in plaintext in some cases. #1894 + +- Localizations have been improved for Simplified Chinese and Russian (Thanks @anthonywong, @raven-kg), and @dvomaks added a Ukranian translation! All three have been added to the "verified localizations" list so they're easier to find in the language dropdown. + +- If your machine's hostname contains spaces, Mailspring will strip them when identifying itself to SMTP servers to avoid being rejected in some cases. If it cannot determine your hostname it will fall back to your IP address similar to how Thunderbird works. #1808 + +- Deleting a "Found in Mail" contact from a CardDAV account (Fastmail, etc.) no longer causes sync to crash. #1722 + +- On Linux, Mailspring now depends on python2 for Ubuntu 20. + +- On Linux, Mailspring's lists itself as a "Mail Client" rather than saying "Mailspring Mailspring" (Thanks @@SaeedBaig) + +- When downloading attachments, Mailspring will not overwrite files in the selected folder and will choose unique names for attachments with the same name. #1901 + +- The LinkedIn URLs in the contact sidebar no longer contain duplicate `in/in/` fragments in some cases. #1875 + +- In the composer, lines containing a single space or starting with a single space are now preserved upon sending. #1874 + +- Sent mail reminders look better in the ui-dark theme and returning to the reminders view after clearing the last reminder no longer causes a crash. #689 + ### 1.7.4 (2/24/2020) **Features:** diff --git a/app/src/intl.ts b/app/src/intl.ts index d80701399..a286dfef6 100644 --- a/app/src/intl.ts +++ b/app/src/intl.ts @@ -27,7 +27,21 @@ const RTL_LANGS = [ // For now, we only default to a localized version of Mailspring if the translations // have been manually reviewed by a contributor. We have Google translations in /tons/ // of languages but in many languages the translations are poor. -const VERIFIED_LANGS = ['en', 'de', 'es', 'fr', 'ko', 'pl', 'ja', 'zh-TW', 'pt-BR', 'gl', 'uk']; +const VERIFIED_LANGS = [ + 'en', + 'de', + 'es', + 'fr', + 'ko', + 'pl', + 'ja', + 'zh-CN', + 'zh-TW', + 'pt-BR', + 'gl', + 'ru', + 'uk', +]; const LANG_NAMES = { af: 'Afrikaans',