mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-22 15:15:12 +08:00
Merge branch 'master' into unified-inbox
This commit is contained in:
commit
9b9be76ccd
3 changed files with 19 additions and 2 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,5 +1,21 @@
|
|||
# N1 Changelog
|
||||
|
||||
### 0.3.38 (1/8/16)
|
||||
|
||||
- Features:
|
||||
+ You can now enable and disable bundled plugins from Preferences > Plugins,
|
||||
and bundled plugin updates are delivered alongside N1 updates.
|
||||
+ You can now adjust the interface zoom from the workspace preferences.
|
||||
|
||||
- Fixes:
|
||||
+ The Apple Mail keyboard shortcut for send is not correct.
|
||||
+ Composer keyboard shortcuts are shown in the shortcuts preferences.
|
||||
+ You can now unsubscribe from the N1 mailing list from the Account preferences.
|
||||
+ The message actions dropdown is now left aligned.
|
||||
+ Thread "Quick Actions" are now displayed in the correct order.
|
||||
+ Account names can no longer overflow the preferences sidebar.
|
||||
|
||||
|
||||
### 0.3.36 (1/5/16)
|
||||
|
||||
- Features:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "nylas",
|
||||
"productName": "Nylas N1",
|
||||
"version": "0.3.37",
|
||||
"version": "0.3.38",
|
||||
"description": "An extensible, open-source mail client built on the modern web.",
|
||||
"main": "./src/browser/main.js",
|
||||
"repository": {
|
||||
|
|
|
@ -46,7 +46,8 @@ class WorkspaceStore extends NylasStore
|
|||
@trigger()
|
||||
|
||||
NylasEnv.config.observe 'core.workspace.interfaceZoom', (zoom) =>
|
||||
require('electron').webFrame.setZoomFactor(zoom)
|
||||
if zoom and _.isNumber(zoom)
|
||||
require('electron').webFrame.setZoomFactor(zoom)
|
||||
|
||||
NylasEnv.commands.add 'body', @_navigationCommands()
|
||||
|
||||
|
|
Loading…
Reference in a new issue