1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-02 13:21:40 +02:00
Commit Graph

337 Commits

Author SHA1 Message Date
Daniel Berteaud
8ab49c3b9e Dont call maxHeight() before it's defined 2014-05-13 23:27:10 +02:00
Daniel Berteaud
769e288796 Revamp help page 2014-05-13 22:11:56 +02:00
Daniel Berteaud
4fb717b6be Use form instead of simple divs for paswords
So hitting enter also submit it
2014-05-13 21:04:45 +02:00
Daniel Berteaud
697b143cef Add an auth form in the join template
Lets you authenticate as the room owner even if there's no join pasword
2014-05-13 20:26:09 +02:00
Daniel Berteaud
a5837dac98 Implement owner password auth
Owner passwords are salt+sha256 hashed (unlike join password) as they do not need cleartext access
For now, you also have to set a join password if you want to be able to auth as an owner
Need to implement a password popup if there's an owner password but no join password
2014-05-13 19:22:47 +02:00
Daniel Berteaud
0226271045 Move getRole to a function
Will probably be used elsewhere soon
2014-05-13 17:34:11 +02:00
Daniel Berteaud
89b7e7ff0f Small animation when owner element are enabled
Makes a nicer experience
2014-05-13 14:33:36 +02:00
Daniel Berteaud
41b5f5754b Hide conf menu by default
And display it only if we are the owner of the room
2014-05-13 14:26:15 +02:00
Daniel Berteaud
76468a8958 Only allow owner (creator) to set a passord 2014-05-12 22:57:15 +02:00
Daniel Berteaud
25f2602694 Remove room lock, not that usefull now that you can use a password 2014-05-12 22:25:36 +02:00
Daniel Berteaud
75709997d9 Notify other peers when a password is set 2014-05-12 22:10:06 +02:00
Daniel Berteaud
6b4ced06bb Implement join password setting
But it's not used yet :-)
2014-05-11 22:29:40 +02:00
Daniel Berteaud
51f4b27c24 Prevent closing other dropdown menus 2014-05-11 13:04:02 +02:00
Daniel Berteaud
f1012ad480 Various cleanups on the index page 2014-05-09 18:45:10 +02:00
Daniel Berteaud
10db137f6c Rework the invitation menu
Fix #17
2014-05-09 16:49:00 +02:00
Daniel Berteaud
4815e4cb83 Define rootUrl in js_include
So /localize is working not matter which alias we use, even on the front page
2014-05-07 12:48:50 +02:00
Daniel Berteaud
1e2e524900 Store raw displayName, only escape when used
Prevents double escaping when importing chat history from another peer.
Also validate color and time when we receive history
2014-05-07 10:10:47 +02:00
Daniel Berteaud
98fd6cd32c Coding style updates and comments cleanup 2014-05-06 22:34:08 +02:00
Daniel Berteaud
610ff99f2c Don't update our local volume bar when muted
SimpleWebRTC still emit local volume change event when muted
2014-05-06 20:28:48 +02:00
Daniel Berteaud
b381f031da Fix handling of volume change dataChannel messages
Which are not sent in the vroom dataChannel
2014-05-06 20:20:35 +02:00
Daniel Berteaud
d62c0dc6ec Sync chat history between peers
Not completly full proof, but seems to work reasonably well. If we do not have received chatHistory yet, ask for it each time a peer's video is added until we get it. Messages are escaped and formatting is preserved, including peer's color. One problem though: if you refresh the page, you will receive the history, but your own old message will appear on the left, as if it was another who send them. This is because there's no way to recognize it was you (previous session...)
Should fix #4
2014-05-06 19:24:43 +02:00
Daniel Berteaud
9dd070b02a Escape text chat in newChatMessage() 2014-05-06 18:39:57 +02:00
Daniel Berteaud
ae306ba643 Use lighter background colors
text message was hard to read for a lot of colors because they were too dark
2014-05-05 22:13:16 +02:00
Daniel Berteaud
e117d73b85 Fix save history filename 2014-05-04 15:25:01 +02:00
Daniel Berteaud
2b7e0e65cc Implement tchat history save as local HTML file
Fix #5
2014-05-04 14:32:48 +02:00
Daniel Berteaud
77c5552d84 Set thumbnail height
So they are always equals, not matter which one is biggest, the others will adapt
2014-05-04 01:16:51 +02:00
Daniel Berteaud
20734ca705 Alert if browser is not supported
Add a modal dialog uf the browser doesn't support WebRTC or dataChannels
2014-05-02 23:04:54 +02:00
Daniel Berteaud
40dab8de75 Remove debug statement on screen sharing error 2014-05-02 09:40:28 +02:00
Daniel Berteaud
536143bdf0 Update screen sharing
Since Chrome 34, a new API for screen sharing is available (the previous one using the flag will probably be deprecated soon)
This commit adds:
- Source of a simple Chrome extension to use this new API (which is a perfect copy of the sample extension given by &yet here: https://github.com/HenrikJoreteg/getScreenMedia
- Adapt help page
- New modal dialog to prompt user to install the extension from Google Web Store
- Better error messages if you can't share your screen

Should fix #7
2014-05-01 21:35:07 +02:00
Daniel Berteaud
4ced1dd4d9 Remove debug line 2014-04-29 17:58:57 +02:00
Daniel Berteaud
2ab632a582 Unicast name and color
When a new peer joins, send him our name and color, but don't broadcast it, other peers should already have this
2014-04-29 17:57:58 +02:00
Daniel Berteaud
28b897e2b9 Translate missing string
"one of the peers" was hardcoded instead of being localized
2014-04-19 19:23:27 +02:00
Daniel Berteaud
19a6511b35 Update code comment
mute/paused are now handled directly by SimpleWebRTC
2014-04-08 11:37:21 +02:00
Daniel Berteaud
85a86808e0 add maxHeight function 2014-04-05 20:04:05 +02:00
Daniel Berteaud
28f5dab18f Add fullScreen function 2014-04-05 19:54:46 +02:00
Daniel Berteaud
80a7cb61cf Reduce wasted space
Should fix #3 for small devices
Hide the mainVideo area on small devices, instead display only bigger previews. Also switch to 2 cols for preview on large displays, not medium ones
2014-04-04 17:52:41 +02:00
Daniel Berteaud
cef5791a89 Initial import 2014-04-03 17:42:54 +02:00