Update the Changelog for 1.7.5

This commit is contained in:
Ben Gotow 2020-04-16 12:54:16 -05:00
parent b9a931a7ca
commit 79e295c127
2 changed files with 47 additions and 1 deletions

View file

@ -1,5 +1,37 @@
# Mailspring Changelog # 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) ### 1.7.4 (2/24/2020)
**Features:** **Features:**

View file

@ -27,7 +27,21 @@ const RTL_LANGS = [
// For now, we only default to a localized version of Mailspring if the translations // 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/ // have been manually reviewed by a contributor. We have Google translations in /tons/
// of languages but in many languages the translations are poor. // 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 = { const LANG_NAMES = {
af: 'Afrikaans', af: 'Afrikaans',