Ben Gotow
3a5f667a0b
fix(files): Not-yet-downloaded files can be opened via double click
...
Fixes T4840
2015-10-27 11:05:33 -07:00
Ben Gotow
b4eb8dc60c
fix(onboarding): Request /status/
to avoid 302
2015-10-27 10:50:18 -07:00
Brett Gerry
22b406484f
Add quotes to account token key in example config.cson
2015-10-26 17:13:05 -07:00
Ben Gotow
6d7743ae93
fix(workspace): Remember whether sidebar is hidden #190
2015-10-26 10:51:30 -07:00
Ben Gotow
abca03b13d
fix(prefs): Fix overflow of account names. #175
2015-10-26 10:47:47 -07:00
Ben Gotow
1e7732f260
fix(prefs): Guard against null account in preferences window
2015-10-26 10:47:47 -07:00
Michael Grinich
204746252b
note about libgcrypt11
2015-10-24 18:05:20 -07:00
Ben Gotow
65078fd7d1
fix(fullscreen): On Mac OS X, green window control defaults to fullscreen
2015-10-23 18:30:47 -07:00
Ben Gotow
5d11a1ece9
fix(atom): Prevent cache collisions with Atom
2015-10-23 17:03:41 -07:00
Ben Gotow
c19e40752a
bump(version): 0.3.19
2015-10-23 16:05:48 -07:00
Ben Gotow
7e041be33c
fix(drafts): Draft selection / deletion fixes
2015-10-23 16:04:27 -07:00
Ben Gotow
ccbd494d64
fix(sidebar): Better disclosure triangle position on multiline labels / folders
2015-10-23 16:04:27 -07:00
Evan Morikawa
e00cc0c760
fix(onboarding): fix add account button width
2015-10-23 15:21:58 -07:00
Ben Gotow
a855a67d1d
fix(message-list): Clicking Archive or Trash should pop back to the thread list
2015-10-23 15:21:37 -07:00
Ben Gotow
4b1d8b0fbd
fix(plugins): Packages => Plugins in a few more places
2015-10-23 15:14:44 -07:00
Evan Morikawa
fdf9c51606
fix(win): composer and input styles
2015-10-23 15:04:35 -07:00
Ben Gotow
da3287c100
fix(undo-redo): Fix "undo" button clickability, improve animation
2015-10-23 15:03:12 -07:00
Ben Gotow
3e9e6b9faf
fix(list): Additional focused CSS changes
2015-10-23 14:55:07 -07:00
Ben Gotow
8127e91ef0
fix(change-folder): Show folder name when moving to folder
2015-10-23 14:50:39 -07:00
Ben Gotow
4cebe51e17
fix(threads): Show the archive button in the bulk action bar
2015-10-23 14:50:39 -07:00
Evan Morikawa
539e9b3799
fix(archive): can archive and trash from focused message
2015-10-23 14:49:29 -07:00
Evan Morikawa
db19e88369
fix(docs): fix broken link
2015-10-23 13:41:29 -07:00
Evan Morikawa
e1529efbf5
feat(windows): updated docs and fix for building on 64-bit
2015-10-23 12:55:44 -07:00
Ben Gotow
fc840384da
fix(list): Incorrect snippet color on unread selected threads in narrow mode
2015-10-23 12:54:02 -07:00
Ben Gotow
8393fdbf94
fix(keymaps): Reveal keymap.cson rather than opening
2015-10-23 12:49:14 -07:00
Ben Gotow
1ad6c563a4
fix(thread-list): Better hover state for quick actions
2015-10-23 12:47:32 -07:00
Evan Morikawa
4390edcc64
fix(windows): fix apm package loading and onboarding styles
2015-10-23 12:18:00 -07:00
Ben Gotow
ea23796bf8
fix(onboarding): Do not open plugin folders after install
2015-10-23 11:58:33 -07:00
Ben Gotow
d4053d00fe
fix(onboarding): Replace ❤️ with a heart image for win32
2015-10-23 11:42:55 -07:00
Ben Gotow
ebd98c711a
fix(onboarding): Fix size animation, resolves #150
2015-10-23 11:35:13 -07:00
Ben Gotow
4697ead406
Merge pull request #121 from madhugb/master
...
Fixed a pixel cut in floating-toolbar
2015-10-23 09:54:39 -07:00
Ben Gotow
fb088ad2f9
fix(tasks): Additional fixes
2015-10-22 18:07:59 -07:00
Ben Gotow
bf50c01965
fix(tasks): Invalid coffeescript in 092c28d2c0
2015-10-22 17:26:14 -07:00
Ben Gotow
3770014808
fix(drafts): Fix missing import, resolves Sentry 4041
2015-10-22 16:13:37 -07:00
Ben Gotow
4a37766a17
fix(spellcheck): Fix dead code, resolve Sentry 3594
2015-10-22 16:08:03 -07:00
Ben Gotow
397d2bf694
fix(important): Resilient against invalid AccountStore state (Sentry 4049)
2015-10-22 16:05:33 -07:00
Ben Gotow
cb4d3f2e39
fix(drafts): Reveal or focus windows for drafts when already open
...
Fixes T3883
2015-10-22 16:02:25 -07:00
Ben Gotow
a3dbab332e
fix(win): When windows are removed, keep ivars in sync
2015-10-22 15:57:34 -07:00
Ben Gotow
e0ddfb736d
fix(*): Packages => Plugins in a few more places
...
Resolves T4289
2015-10-22 14:55:30 -07:00
Ben Gotow
299a578549
bump(version): 0.3.18
2015-10-22 14:24:13 -07:00
Evan Morikawa
ef8e7aaf51
fix(databse): fix memory leak on DatabaseStore.atomically
...
Summary:
The Promise chain we were creating was never cleared and created a memory
leak. We instead use a `PromiseQueue` to cleanup finished promises.
Also added several more tests and verified that the memory leak is gone
with the Chrome profiler
Test Plan: new tests
Reviewers: bengotow
Reviewed By: bengotow
Differential Revision: https://phab.nylas.com/D2184
2015-10-22 14:19:39 -07:00
Evan Morikawa
cfb4142471
fix(event): remove EventStore
...
Summary:
The EventStore was really doing nothing, except caching hundreds of MB of
event data unnecessarily in each and every window :(
Test Plan: manual
Reviewers: bengotow
Reviewed By: bengotow
Differential Revision: https://phab.nylas.com/D2187
2015-10-22 14:14:58 -07:00
Evan Morikawa
c5b9f6a634
fix(spec): fix contact store spec
...
Since it's not Promise-based anymore. It was just the spec that relied on
this.
2015-10-22 14:13:51 -07:00
Evan Morikawa
4b217ea736
fix(memory): don't return Promise to debounce in ContactStore
...
Prevents a memory leak where it holds onto a stale references of the
contactCache
2015-10-22 14:10:49 -07:00
Ben Gotow
334830d6e1
fix(feedback): Links should open in the user's default browser
2015-10-22 11:34:51 -07:00
Ben Gotow
e69da22e5e
feat(sidebar): Hierarchical folders/labels in the sidebar, rendering perf
...
Summary:
Fix label sorting... apparently we just synced them in creation date order
Allow labels / folders to be nested using separators `.`, `/`, and `\`
Allow collapsing of nested labels in sidebar
Add overflow hidden to some core flexboxes, which dramatically reduces repaints because it knows columns will not overflow into other columns
Prevent scroll region contents from re-rendering all the time, not sure why this works
Add test for account sidebar store
Test Plan: Run new test of AccountSidebarStore
Reviewers: evan
Reviewed By: evan
Differential Revision: https://phab.nylas.com/D2181
2015-10-22 10:53:57 -07:00
Ben Gotow
f3c4c04d00
fix(onboarding): Correct error where token pane is too small
2015-10-22 10:32:20 -07:00
Madhu GB
fc01b1bc56
A pixel cut in floating-toolbar
2015-10-22 11:18:55 +05:30
Evan Morikawa
54837b3ab8
fix(lint): fix indentation linter error
2015-10-21 20:39:05 -07:00
Evan Morikawa
b76fd0e578
feat(windows): improve UI for Windows
...
Remove rounded corners and gradients
2015-10-21 20:32:33 -07:00