Skip to content

Commit

Permalink
Bump to 1.10.4, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bengotow committed Aug 9, 2022
1 parent c6f5a16 commit af83444
Show file tree
Hide file tree
Showing 7 changed files with 344 additions and 43 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Mailspring Changelog

## 1.10.4 (8/9/2022)

This release updates Mailspring to address a recent Google policy change and fixes email sync with Gmail accounts. This release also moves Mailspring to 64-bit on Windows (Thanks @ronymesquita), and adds an Apple Silicon build for M1 and M2 Macs, dramatically improving performance on those machines. (It's super noticeable!)

Changes:

- Spanish translation has been improved (Thanks @EdR13!)

- When connecting an Office365 account, you're now prompted to choose an email account on the web. (Thanks @fanrenng!)

- Mailspring now uses longer-lived Office365 credentials, eliminating the need to sign back in to your account periodically. (Thanks @fanrenng)

- Linux sendto functionality has been fixed to correctly handle electron internal options (#2409) (Thanks @Phylu!)

## 1.10.3 (4/14/2022)

This release fixes several important issues and moves Mailspring to Electron 18:
Expand Down
12 changes: 7 additions & 5 deletions app/build/tasks/package-task.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,13 @@ module.exports = grunt => {
),
}
: undefined,
osxNotarize: {
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
ascProvider: process.env.APPLE_ID_ASC_PROVIDER,
},
osxNotarize: process.env.APPLE_ID
? {
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
ascProvider: process.env.APPLE_ID_ASC_PROVIDER,
}
: undefined,
win32metadata: {
CompanyName: 'Foundry 376, LLC',
FileDescription: 'Mailspring',
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mailspring",
"productName": "Mailspring",
"version": "1.10.3",
"version": "1.10.4",
"repository": {
"type": "git",
"url": "git://github.com/foundry376/mailspring.git"
Expand Down
Loading

0 comments on commit af83444

Please sign in to comment.