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

881 commits

Author SHA1 Message Date
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
Juliusz Chroboczek
e8bc42d84c Add certificate_test.go. 2021-02-26 12:52:54 +01:00
Juliusz Chroboczek
b3727824b3 Protect against simultaneous generation of certificates. 2021-02-26 12:38:18 +01:00
Juliusz Chroboczek
c19b356e54 Fail the connection if only one of cert.pem and key.pem exists. 2021-02-24 22:23:38 +01:00
Juliusz Chroboczek
b1babf5b77 Update TLS certificates, generate certificate if not found.
We now notice that a TLS certificate on disk has changed, and we
generate a self-signed certificate if none is found.
2021-02-24 20:29:03 +01:00
Juliusz Chroboczek
6cf82f6e0c Update CHANGES for 0.3. 2021-02-18 22:53:05 +01:00
Juliusz Chroboczek
7df36c0287 Update dependencies. 2021-02-18 22:47:28 +01:00
Juliusz Chroboczek
ddb6039fa6 Fix error handling in client actions.
Thanks to Yacine.
2021-02-17 20:55:11 +01:00
Juliusz Chroboczek
be2f2d7cb3 Fix typo in new client pushing code. 2021-02-15 13:43:10 +01:00
Juliusz Chroboczek
260597d595 Ensure actions happen in order. 2021-02-15 00:35:09 +01:00
Juliusz Chroboczek
9ba1037208 Increase measured time in TestTime. 2021-02-14 20:16:27 +01:00
Juliusz Chroboczek
aaaaae5588 Add unit test for groups. 2021-02-14 20:14:12 +01:00
Juliusz Chroboczek
105515d56e Add unit test for chat history. 2021-02-14 19:44:19 +01:00
Juliusz Chroboczek
60297a247c Update CHANGES. 2021-02-14 18:48:59 +01:00
Juliusz Chroboczek
a707ec16f5 Update dependencies. 2021-02-14 18:19:13 +01:00
Juliusz Chroboczek
e04193f78c Display user message when browser doesn't do WebRTC.
Thanks to mscherer for the report.
2021-02-14 18:06:50 +01:00
Juliusz Chroboczek
183ab4fed7 Use an unbounded buffer for client actions.
We no longer risk deadlocking when sending actions, which in turn
enables pushing connections synchronously.
2021-02-14 17:24:42 +01:00
Juliusz Chroboczek
3b505a89fe Factor out handling actions. 2021-02-14 16:47:36 +01:00
Juliusz Chroboczek
fa625c693e Push clients synchronously.
Doing this asynchronously was racy -- under extreme circumstances, a
client could be deleted before it was added.
2021-02-14 16:46:15 +01:00
Juliusz Chroboczek
3c7b32056b Reduce writer timeout, increase amount of buffering.
If the writer gets congested, the whole group might be delayed.  Better
to drop the slow client in that case.
2021-02-14 16:26:56 +01:00
Juliusz Chroboczek
fe83f61998 Don't complain about ErrClosedPipe in RTCP receiver.
This simply indicates that the server closed the connection
before we received the close indication from the client.
2021-02-11 16:19:36 +01:00
Juliusz Chroboczek
8f89ac0bcf Clean up path handling in webserver. 2021-02-07 01:43:40 +01:00
Juliusz Chroboczek
c4e26b65b7 Tighten user check.
Don't allow a user with a wildcard password entry to use the same
username as a user with a specific entry even at the same privilege
level.
2021-02-06 23:32:42 +01:00
Juliusz Chroboczek
91c161e548 Don't cache group files for 5s.
A stat of a cached file is cheap, no need to micro-optimise.
2021-02-06 21:44:14 +01:00
Juliusz Chroboczek
0261558e07 Protect against empty ids. 2021-02-05 16:07:58 +01:00
Juliusz Chroboczek
c3a19c9128 Avoid race between closing connections and terminating client.
We need to terminate all down connections synchronously, otherwise
we risk leaving open connections lying around.
2021-02-05 12:20:33 +01:00
Juliusz Chroboczek
66de0d16e7 Fix closing of replaced connections. 2021-02-04 23:51:51 +01:00
Juliusz Chroboczek
fe9b89257a Set buttons visibility when disconnecting. 2021-02-04 23:11:40 +01:00