Commit Graph

522 Commits

Author SHA1 Message Date
Feross Aboukhadijeh
e7d837e813 shortcut order 2016-03-09 15:05:39 -08:00
DC
c176e3897a Add Torrent Link modal 2016-03-09 04:27:01 -08:00
Feross Aboukhadijeh
ab939e185d Merge pull request #117 from feross/media-key
Register "media key" for play/pause
2016-03-09 03:25:48 -08:00
Feross Aboukhadijeh
29298a1074 Register "media key" for play/pause 2016-03-09 03:08:21 -08:00
Feross Aboukhadijeh
13c6e7817d Merge pull request #111 from feross/playable-files
filter file formats that <video> tag definitely can't play
2016-03-09 02:39:16 -08:00
Feross Aboukhadijeh
a6e8a3462e don't use executeJavaScript() (fix for PR #107)
It’s not *that* much cleaner, but executeJavaScript() feels too much
like eval().

cc @flet
2016-03-09 02:38:59 -08:00
Feross Aboukhadijeh
944a47be72 allow the main process to dispatch any event to the renderer 2016-03-09 02:36:10 -08:00
Feross Aboukhadijeh
fe524f8432 Merge pull request #107 from Flet/pause-on-hide
dispatch a pause event before hiding window on darwin
2016-03-09 02:18:40 -08:00
Feross Aboukhadijeh
5d4044f7ba Merge pull request #110 from feross/notifs
UX: Add interface sounds, notifications
2016-03-09 02:16:34 -08:00
Feross Aboukhadijeh
f99bbab91c airplay/chromecast: remove unneeded startServer() calls 2016-03-09 02:16:20 -08:00
Feross Aboukhadijeh
5cc844ecbd filter file formats that <video> tag definitely can't play 2016-03-09 02:15:53 -08:00
Feross Aboukhadijeh
5b2ecab5ef UX: Add interface sounds 2016-03-09 01:54:52 -08:00
Feross Aboukhadijeh
0f3d8592df Merge pull request #108 from feross/move-paste-to-renderer
Move paste to renderer
2016-03-09 01:51:19 -08:00
Feross Aboukhadijeh
20b52c17a8 Show "Download Complete" notification
When torrent download finishes and window is not focused, notify the
user.
2016-03-08 21:58:27 -08:00
Feross Aboukhadijeh
56536ad55e Move paste to renderer
The ‘clipboard’ module works in the renderer without using the ’remote’
package. So we can eliminate one IPC call this way :)
2016-03-08 21:06:20 -08:00
Dan Flettre
e686aa8d02 dispatch a pause event before hiding window on darwin 2016-03-08 22:40:51 -06:00
Feross Aboukhadijeh
d9a34b6603 Merge pull request #105 from feross/title-overflow
Limit window title width (fix #99)
2016-03-08 20:01:46 -08:00
Feross Aboukhadijeh
edf08d06ec Limit window title width (fix #99) 2016-03-08 20:01:09 -08:00
Feross Aboukhadijeh
085e238ecd Merge pull request #104 from feross/greenkeeper-webtorrent-0.83.0
Update webtorrent to version 0.83.0 🚀
2016-03-08 19:46:42 -08:00
greenkeeperio-bot
9c815ea370 chore(package): update webtorrent to version 0.83.0
http://greenkeeper.io/
2016-03-08 19:45:43 -08:00
Feross Aboukhadijeh
112d08c10d Merge pull request #103 from feross/scrollbar
Fix scroll bar going under header bar
2016-03-08 19:33:51 -08:00
Feross Aboukhadijeh
adf53bb7cc Fix scroll bar goes under header bar (fix #101) 2016-03-08 19:29:30 -08:00
Feross Aboukhadijeh
d061587e06 fix controls flying downward on transition
only transition player controls opacity, not all
2016-03-08 19:24:35 -08:00
Feross Aboukhadijeh
cb4661c733 Merge pull request #102 from feross/scrollbar
Add custom styles to scroll bar
2016-03-08 19:23:44 -08:00
Feross Aboukhadijeh
f0bb31c2e2 Add custom styles to scroll bar 2016-03-08 18:42:34 -08:00
Feross Aboukhadijeh
70aacf96af Merge pull request #98 from feross/window-ui-improvements
Lighter window background; small state changes
2016-03-08 18:41:53 -08:00
Feross Aboukhadijeh
be698edce6 Update AUTHORS.md 2016-03-08 17:54:30 -08:00
Feross Aboukhadijeh
4e3714a2e0 Merge pull request #100 from liamgray/master
Fix looping video
2016-03-08 17:53:59 -08:00
Feross Aboukhadijeh
d6d84bcec3 readme 2016-03-08 17:52:12 -08:00
Feross Aboukhadijeh
7b7431c0f7 fix centering 2016-03-08 17:50:04 -08:00
Feross Aboukhadijeh
36577c699e remove unused sample torrent 2016-03-08 17:49:00 -08:00
Feross Aboukhadijeh
6469ce6bd4 update screenshot 2016-03-08 17:48:50 -08:00
Feross Aboukhadijeh
75067b4dd5 @dcposch PR feedback #82 2016-03-08 17:43:19 -08:00
Liam Gray
9324765db9 Fix looping video 2016-03-08 17:36:20 -08:00
Feross Aboukhadijeh
64048171bc Merge pull request #97 from feross/fix-seeding
Fix seeding functionality
2016-03-08 17:18:49 -08:00
Feross Aboukhadijeh
67217bdc7e Lighter window background
Native windows get lighter when they’re backgrounded so they stand out
less (at least on OS X). Let’s do this too.

Even the Spotify app, which has dozens of developers gets this wrong.
We’re so awesome :)

Also:

- Renamed a bunch of state variables (next time will make separate
commit, sry)
- All window-related variables (e.g. isFullScreen, isFocused, etc.)
live in `state.window` now
- Remove negative class name, use CSS :not() instead
2016-03-08 17:18:31 -08:00
Feross Aboukhadijeh
2c70e2e3de Header should not show when .hide-video-controls 2016-03-08 17:15:32 -08:00
Feross Aboukhadijeh
49fd822910 Fix seeding functionality
Fix for small oversight in @dcposch’s recent changes. Broken when
adding the distinction between active and inactive torrents.

Please code review, @dcposch
2016-03-08 16:44:04 -08:00
Feross Aboukhadijeh
72a101e0d5 Merge pull request #96 from feross/fix-drag-drop
Fix up drag-drop
2016-03-08 16:43:58 -08:00
Feross Aboukhadijeh
a396ffa7ba Fix drag class getting stuck (fix #75)
This is fixed in this commit to drag-drop: d65c46de96
2016-03-08 16:25:48 -08:00
Feross Aboukhadijeh
9f5c6f3df1 Merge pull request #95 from feross/style
Style
2016-03-08 16:25:29 -08:00
Feross Aboukhadijeh
731bdc7bca fix drag color 2016-03-08 16:22:38 -08:00
Feross Aboukhadijeh
6946ab3507 style improvements
- make torrent placeholder the exact size of a normal torrent
- make torrent list window minimum size of two torrents
- make window start out sized for 4 torrents
- increase font size responsively
2016-03-08 15:39:39 -08:00
Feross Aboukhadijeh
3b3ebc717a fixpack 2016-03-08 15:03:41 -08:00
Feross Aboukhadijeh
e399ac9285 make min window height have room for two torrents 2016-03-08 15:00:10 -08:00
Feross Aboukhadijeh
9547e1d907 only animate .torrent hover state 2016-03-08 14:03:26 -08:00
Feross Aboukhadijeh
e9218fa1f0 change smallest media query breakpoint to 700px 2016-03-08 14:03:12 -08:00
Feross Aboukhadijeh
19f796df03 add npm run update-authors 2016-03-08 13:54:17 -08:00
Feross Aboukhadijeh
ddcf562b00 bin/update-authors.sh 2016-03-08 13:54:12 -08:00
Feross Aboukhadijeh
18fa84a92e Merge pull request #94 from feross/responsive
Responsive CSS to change torrent/drop-target height based on window width
2016-03-08 13:49:13 -08:00