Skip to content

Commit 8a0a82e

Browse files
committed
1.13.2
1 parent 79b4063 commit 8a0a82e

File tree

5 files changed

+43
-6
lines changed

5 files changed

+43
-6
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Mailspring Changelog
22

3+
## 1.13.2
4+
5+
This is a patch release that fixes several issues:
6+
7+
- Composition events in Mailspring's composer should work as expected. (Typing modifier keys, such as Option-E followed by E to create É)
8+
9+
- The composer warn about several more invalid recipient errors correctly (thanks @Phylu!)
10+
11+
- Dark-mode tray support on Windows has been improved with new icons (thanks @Phylu!)
12+
13+
- The Linux Snap build no longer requests extraneous permissions (thanks @3v1n0!)
14+
15+
## 1.13.1
16+
17+
Mailspring 1.13 now runs on Electron 22, completing a migration process we started in 1.12.0!
18+
19+
If you are upgrading from an old version of Mailspring, download and run 1.12.0 first before installing this version. We've moved from keytar to Electron's safeStorage API for securely storing your email passwords, and version 1.12.0 will perform a migration ensuring your passwords are transitioned.
20+
21+
If you're using the snap version of Mailspring, you may find that Mailspring forgets your passwords when you upgrade. I'm very sorry for the hassle this causes - issues with snap containment in version 1.12.0 caused Mailspring to lose many user's passwords during the upgrade process. If this applies to you, you may see password errors and need to:
22+
23+
Visit Preferences > Subscription and click Setup Mailspring ID and sign back in to your Mailspring account. (You should see an alert at launch that will remind you which email address you'd used for your Mailspring ID)
24+
25+
Visit Preferences > Accounts and re-authenticate any accounts shown in red that are having connection difficulty.
26+
327
## 1.12.0 (10/09/2023)
428

529
Features:

app/build/resources/linux/mailspring.appdata.xml.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
</screenshots>
3434

3535
<releases>
36+
<release version="1.13.2" date="2023-12-10" />
3637
<release version="1.13.1" date="2023-11-21" />
3738
<release version="1.13.0" date="2023-11-20" />
3839
<release version="1.12.0" date="2023-11-14" />

app/internal_packages/preferences/lib/tabs/preferences-appearance.tsx

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,24 @@ class TrayIconStylePicker extends React.Component<{ config: ConfigLike }> {
178178
};
179179

180180
render() {
181-
let systemTrayIconScore = new SystemTrayIconStore();
181+
const systemTrayIconScore = new SystemTrayIconStore();
182182
const val = this.props.config.get(this.kp) || 'blue';
183183

184184
const options = [
185-
['blue', localized('Blue icon for new and unread messages'), localized('(The same blue tray icon is used whether you have new or old unread messages.)'), systemTrayIconScore.inboxFullUnreadIcon()],
186-
['red', localized('Red icon for new and blue icon for unread messages'), localized('(A red tray icon is displayed for new messages and a blue icon for older unread messages.)'), systemTrayIconScore.inboxFullNewIcon()],
185+
[
186+
'blue',
187+
localized('Blue icon for new and unread messages'),
188+
localized('(The same blue tray icon is used whether you have new or old unread messages.)'),
189+
systemTrayIconScore.inboxFullUnreadIcon(),
190+
],
191+
[
192+
'red',
193+
localized('Red icon for new and blue icon for unread messages'),
194+
localized(
195+
'(A red tray icon is displayed for new messages and a blue icon for older unread messages.)'
196+
),
197+
systemTrayIconScore.inboxFullNewIcon(),
198+
],
187199
];
188200

189201
return (

app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mailspring",
33
"productName": "Mailspring",
4-
"version": "1.13.1",
4+
"version": "1.13.2",
55
"repository": {
66
"type": "git",
77
"url": "git://github.com/foundry376/mailspring.git"

0 commit comments

Comments
 (0)