mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-28 11:24:11 +08:00
Bump to 1.1.0, update Changelog
This commit is contained in:
parent
3f47ae4a71
commit
d4211d1a69
3 changed files with 35 additions and 1 deletions
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -1,5 +1,33 @@
|
|||
# Mailspring Changelog
|
||||
|
||||
### 1.1.0 (1/16/2018)
|
||||
|
||||
Features:
|
||||
|
||||
- Overhauled composer with a great new editing toolbar and support for fonts, sizes, colors, right-to-left text, markdown shortcuts, and more.
|
||||
|
||||
- Brand new template editor in *Preferences > Templates* with a more streamlined UI based on the new composer.
|
||||
|
||||
- From the Activity screen, you can now export the raw data in the selected time range to perform custom analysis on your open and link tracking data.
|
||||
|
||||
Improvements:
|
||||
|
||||
- On Linux, Mailspring now lets you choose to auto-hide the menubar, or use the sleek, Windows-style unified window frame with the menu behind a hamburger button.
|
||||
|
||||
Fixes:
|
||||
|
||||
- Mailspring no longer cleans up messages you've downloaded recently.
|
||||
|
||||
- When you edit an existing account, it's credentials are prepopulated for editing. (#496)
|
||||
|
||||
- The signature editor now supports Twitter profile pictures and autoformats your handle. (#493)
|
||||
|
||||
- On Windows, Mailspring supports installation in user directories with special characters. (#113)
|
||||
|
||||
- Generation of IDs in Mailspring is no longer timezone-sensitive on some machines.
|
||||
|
||||
- Drafts no longer fail to sze when you exit the app in some scenarios.
|
||||
|
||||
### 1.0.12 (12/28/2017)
|
||||
|
||||
Improvements:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "mailspring",
|
||||
"productName": "Mailspring",
|
||||
"version": "1.0.12",
|
||||
"version": "1.1.0",
|
||||
"commitHash": "COMMIT_INSERTED_DURING_PACKAGING",
|
||||
"description": "The best email app for people and teams at work",
|
||||
"license": "GPL-3.0",
|
||||
|
|
|
@ -100,6 +100,12 @@ function decorationsForNode(node, value) {
|
|||
if (text[match[0].length + 1] === "'" || text[match.index - 1] === "'") {
|
||||
continue;
|
||||
}
|
||||
|
||||
// If the word starts with a capital letter (name / acronym), don't mark it
|
||||
if (match[0][0].toLocaleLowerCase() !== match[0][0]) {
|
||||
continue;
|
||||
}
|
||||
|
||||
decorations.push(range);
|
||||
if (decorations.length > MAX_MISPELLINGS) {
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue