1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00
Commit graph

708 commits

Author SHA1 Message Date
Juliusz Chroboczek
e02d100230 Implement -udp command-line flag. 2021-04-29 23:09:05 +02:00
Juliusz Chroboczek
6c752b58bc Update dependencies. 2021-04-29 23:05:11 +02:00
Juliusz Chroboczek
99026c0e48 Implement option -udp-range. 2021-04-29 23:05:11 +02:00
Juliusz Chroboczek
cd6920d7e2 Allow group.API() to fail. 2021-04-29 21:10:04 +02:00
Juliusz Chroboczek
acca3f9bb3 Maintain kinds of tracks in user data structure.
Needed to show in the user list whether a user is publishing a stream.
2021-04-29 21:10:04 +02:00
Juliusz Chroboczek
4a6dccff0c Set track parameters at creation time.
We now create a sendonly transceiver, and set the max bitrate at
creation time.
2021-04-29 18:28:17 +02:00
Juliusz Chroboczek
be73380f9f Label streams, not tracks.
We used to label tracks individually, in a view to using the labelling
for simulcast.  Since then, the WebRTC community has converged on a
different strategy, where multiple tracks share a single mid and
are labelled with the rid extension.

We now label whole streams, which is simpler, and use the track's
kind (and, in the future, the rid) to disambiguate.  This changes the
protocol in two ways:

  * in offers, the "labels" dictionary is replaced by a single "label"
    field; and
  * the syntax of the "request" message has changed.
2021-04-29 18:28:16 +02:00
Alain Takoudjou
b08a2e3943 Add Unshare button on each shared video and remove global unshare screen button 2021-04-29 18:24:07 +02:00
Juliusz Chroboczek
3ba2394be7 Implement user statuses.
The server now maintains a set of statuses for each user that are not
interpreted by the server but communicated to the other members of the
group using 'user' messages.
2021-04-28 17:01:05 +02:00
Juliusz Chroboczek
f0a39fca48 Send user permissions to client.
We now maintain the user list in the serverConnection.
2021-04-28 00:07:19 +02:00
Juliusz Chroboczek
d0ef6a2c0f Fix loss accounting for multiple packets. 2021-04-28 00:07:19 +02:00
Juliusz Chroboczek
b7f39d3290 Remove last traces of onabort callback.
Everything now goes through onclose, both for up and down streams.
2021-04-27 17:10:34 +02:00
Juliusz Chroboczek
cd673d01d3 Update CHANGES for 0.3.4. 2021-04-27 16:15:33 +02:00
Juliusz Chroboczek
a3630b17ce Add unit tests for packetcache statistics. 2021-04-27 14:54:19 +02:00
Juliusz Chroboczek
f0cf9ae141 Fix loss statistics on NACK.
Since we don't use a separate RTX SSID, we must explicitly account for
NACKed packets in our loss statistics.
2021-04-27 12:18:43 +02:00
Alexandre Iooss
8da55c6e6c Remove async from ServerConnection.gotRenegotiate 2021-04-27 11:11:17 +02:00
Alexandre Iooss
4db8279016 Fix serverConnection not defined in ServerConnection.findByLocalId 2021-04-27 11:11:17 +02:00
Juliusz Chroboczek
170f510adc Update pion/webrtc to v3.0.25. 2021-04-24 14:13:56 +02:00
Juliusz Chroboczek
a47df6d133 Update dependencies. 2021-04-22 18:19:23 +02:00
Alexandre Iooss
5ce3dce0d0 Remove font awesome from mainpage 2021-04-22 18:09:36 +02:00
Alexandre Iooss
e330765563 Use column flexbox on mainpage
This removes the need to hardcode the footer height in a CSS calc().
2021-04-22 18:09:36 +02:00
Alexandre Iooss
8544e4deb4 Fix overflow on mainpage
The signature class was forcing the maximum height making the <p>
element overflowing the page. By removing this constraint, the overflow
is now gone.
2021-04-22 18:09:36 +02:00
Juliusz Chroboczek
189dfb4abe Export and document group.Description.
This is useful for people writing administrative interfaces.
2021-04-22 17:58:30 +02:00
Alain Takoudjou
81050184eb Fix detecting if mobile css layout is enabled
Use matchMedia to check if mobile css is enabled instead of checking window innerwidth size.
2021-04-22 15:55:46 +02:00
Alain Takoudjou
637e280dec Fix show/hide video and chat box for mobile and normal UI
Uses less javascript to update css style, rework buttons css for show/hide video and chat.
Fix show or hide video button on normal or mobile ui when windows is resized or when orientation change.
2021-04-22 15:55:39 +02:00
Juliusz Chroboczek
45558f3e88 Update CHANGES for 0.3.3. 2021-04-16 22:31:25 +02:00
Juliusz Chroboczek
fef38bc53f Protect against requesting when no group is joined.
Thanks to gregfr.
2021-04-15 12:07:05 +02:00
Louis Gesbert
9533c20886 Fix index out of range in packetcache 2021-04-15 11:34:01 +02:00
Juliusz Chroboczek
050804b93a Fix name of galene-password-generator. 2021-04-06 23:58:52 +02:00
Alexandre Iooss
c06bfa4519
Fix some warning messages and comment in galene.js 2021-03-30 07:28:20 +02:00
Alexandre Iooss
ce0cb1ef98
Add missing </p> in index.html 2021-03-30 07:27:35 +02:00
Alexandre Iooss
0df2ec1684
Set charset in galene.html 2021-03-30 07:27:07 +02:00
Juliusz Chroboczek
37049bf4be Fix definition of "ice" message.
Thanks to erdnaxe.
2021-03-29 15:29:09 +02:00
Alain Takoudjou
dc34c9e459 Fix users sidebar is partially hidden on some devices
Users list bars is partially hidden which troncate some username on certains devices.
2021-03-26 17:06:18 +01:00
Alain Takoudjou
8d5e23aae9 Fix elements overflow-y on right sidebar menu
When Settings menu element height is more that the menu content height some item are hidden. overflow to scroll to make them visible on scroll
2021-03-26 11:13:41 +01:00
Alain Takoudjou
ffcd866301 Fix show chat button always hidden on mobile layout
The maximum device with for mobile layout in css is 1024px, for device with > 768 (Ipad)
chat button will stay hidded while chat box is also hidden when there is a video call.
This commit fix the issue.
2021-03-26 11:12:45 +01:00
Juliusz Chroboczek
b660bc404c Attempt to negotiate stereo Opus audio. 2021-03-13 16:29:58 +01:00
Juliusz Chroboczek
3bf0f9ef4c Update CHANGES for 0.3.2. 2021-03-03 00:05:33 +01:00
Juliusz Chroboczek
247cc63080 Update README. 2021-03-03 00:03:44 +01:00
Juliusz Chroboczek
0f7cbe5701 Replace use of os.ErrTimeout by our own value.
ErrTimeout was introduced in Go 1.15, while we support 1.13 and later.
Thanks to Michael Ströder for the report.
2021-03-02 21:55:54 +01:00
Juliusz Chroboczek
1fd8b92f02 Avoid race in newDiskConn. 2021-02-28 16:27:26 +01:00
Juliusz Chroboczek
d508ae2181 Update dependencies. 2021-02-28 16:05:04 +01:00
Juliusz Chroboczek
84856f537b Use null address generator in TURN server when possible. 2021-02-28 00:59:56 +01:00
Juliusz Chroboczek
8d569e9f30 Fix typo in README. 2021-02-27 14:27:48 +01:00
Juliusz Chroboczek
b7db959bfb Update CHANGES for 0.3.1. 2021-02-26 19:13:15 +01:00
Juliusz Chroboczek
3cc1fadb10 Update CHANGES. 2021-02-26 18:11:59 +01:00
Juliusz Chroboczek
016c321484 Fix typing of userMessage value. 2021-02-26 16:22:55 +01:00
Juliusz Chroboczek
ea321be17a Make Kick part of the Client interface.
All clients implement Kick, no need for a separate interface.
2021-02-26 16:20:13 +01:00
Juliusz Chroboczek
69c438ab30 Add unit tests for ICEConfiguration and RelayTest. 2021-02-26 13:23:54 +01:00
Juliusz Chroboczek
0a8f75d6c9 Make RelayTest take the timeout as parameter. 2021-02-26 13:22:47 +01:00