Yash
ee120b1d8d
feat(ts) migrate strophe.rayo to TS
8 月之前
Yash
ce7ea33418
feat(ts) migrate strophe.ping to TS
8 月之前
damencho
31b27f9685
feat(xmpp): Parses permissions extension from self-presence.
8 月之前
damencho
122a5075ab
fix(xmpp): Avoid duplicate presences on join.
When joining if there was a modification of presence just before sending the presence in the same millisecond we send later a second presence. While testing we see modifications from e2ee which cause the duplicate presence.
8 月之前
Naman Jain
e98c4c177b
feat(ts) migrate ResumeTask to TS
8 月之前
Yash
3d74fce959
feat(ts) migrate Settings to TS
8 月之前
Naman Jain
35068600f6
feat(ts) improve AVModeration types
8 月之前
Yash
4b308d7dcc
feat(ts) migrate ConnectionPlugin to TS
8 月之前
Yash
31f911539a
feat(ts) migrate JingleHelperFunctions to TS
8 月之前
Naman Jain
69f34ac58c
feat(ts) migrate UsernameGenerator to TS
8 月之前
Naman Jain
42bafae816
feat(ts) migrate retry to TS
8 月之前
Naman Jain
4f5aabecdc
feat(ts) migrate recordingConstants to TS
8 月之前
Naman Jain
26978b908d
feat(ts) migrate P2PDominantSpeakerDetection to TS
8 月之前
Naman Jain
14dd7c9bdb
feat(ts) migrate e2ee/utilis to TS
8 月之前
Jaya Allamsetty
102907eb41
fix(connection-quality) Trigger ramp up on codec and session changes.
8 月之前
damencho
2879d6b8c7
fix(connection): Use only mechanisms we support.
8 月之前
Naman Jain
c469abc5a2
feat(ts) migrate Listenable to TS
8 月之前
Naman Jain
88129f2aa9
feat(ts) migrate TestUtils to TS
8 月之前
Naman Jain
35af1d28aa
feat(ts) migrate StringUtils to TS
8 月之前
Naman Jain
e7bed00e84
feat(ts) migrate ScriptUtil to TS
8 月之前
Naman Jain
16564d9052
feat(ts) migrate MathUtil to TS
8 月之前
Naman Jain
57b0ae5fd7
feat(ts) migrate EventEmitter to TS
8 月之前
Naman Jain
5aef12c0fa
feat(ts) migrate AsyncQueue to TS
8 月之前
Naman Jain
4bfab2cdb8
feat(ts) migrate SpeakerStats to TS
8 月之前
Yash
4e075c02d8
feat(ts) migrate VADTalkMutedDetection to TS
8 月之前
Yash
9c4498d1a4
feat(ts) migrate VADReportingService to TS
8 月之前
Rahul Vishwakarma
34807ff3e8
feat(ts) migrate AVModeration to TS
8 月之前
Naman Jain
cee13aa60d
feat(docs) added CONTRIBUTING
8 月之前
Saúl Ibarra Corretgé
0c0b0b5cd2
chore(*) stop using __filename
It doesn't get translated in the TS build, for one.
Script I used:
```python
import os
for (dirpath, dirnames, filenames) in os.walk('.'):
if '.git' in dirpath:
continue
if 'node_modules' in dirpath:
continue
if 'dist' in dirpath:
continue
if 'types' in dirpath:
continue
for filename in filenames:
path = os.path.join(dirpath, filename)
if not path.endswith('.js') and not path.endswith('.ts'):
continue
#print(path)
with open(path, 'r+') as f:
#print(f)
data = f.read()
if '__filename' in data:
p, ext = os.path.splitext(path)
txt = f"'{p[2:]}'"
print(txt)
data = data.replace('__filename', txt) # Assign the result back to data
f.seek(0)
f.write(data)
f.truncate()
```
8 月之前
Naman Jain
0fce9d6bb3
feat(ts) migrate JitsiParticipant to TS
8 月之前
Yash
709052d8b2
feat(ts) migrate SAS to TS
8 月之前
Naman Jain
d88001b342
feat(ts) migrate SignalingLayer to TS
8 月之前
Naman Jain
9a3eab4c0e
feat(ts) migrate LiteModeContext to TS
8 月之前
Naman Jain
6997701f69
feat(ts) migrate JitsiTrackError to TS
8 月之前
Saúl Ibarra Corretgé
89c627b317
fix(e2eping) fix linting error
8 月之前
dependabot[bot]
e244421a8e
chore(deps-dev): bump webpack from 5.76.0 to 5.98.0
Bumps [webpack](https://github.com/webpack/webpack ) from 5.76.0 to 5.98.0.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v5.76.0...v5.98.0 )
---
updated-dependencies:
- dependency-name: webpack
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
8 月之前
Yash
2a8647b16a
feat(ts) migrate RecordingManager to TS
8 月之前
dependabot[bot]
ec767981e9
chore(deps-dev): bump serialize-javascript from 6.0.0 to 6.0.2
Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript ) from 6.0.0 to 6.0.2.
- [Release notes](https://github.com/yahoo/serialize-javascript/releases )
- [Commits](https://github.com/yahoo/serialize-javascript/compare/v6.0.0...v6.0.2 )
---
updated-dependencies:
- dependency-name: serialize-javascript
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
8 月之前
Naman Jain
2e3a244a94
feat(ts) migrate e2eping to TS
8 月之前
Saúl Ibarra Corretgé
0386de6c26
fix(Settings) use a proper UUID rather than hand-rolling it
3 年之前
Saúl Ibarra Corretgé
6cf27a21bd
feat(lint) make the linter more spartan
No warnings are allowed.
8 月之前
Naman Jain
68971053e9
feat(ts) migrate modules/RTC/BridgeChannel to TS
8 月之前
Naman Jain
91ae6cb1df
feat(ts) migrate modules/rtc/MockClasses to TS
8 月之前
Naman Jain
908812fa0b
feat(ts) migrate Jvb121EventGenerator to TS
8 月之前
Naman Jain
3444614af4
feat(ts) migrate connectivity/NetworkInfo to TS
8 月之前
Naman Jain
e4bad9a345
feat(ts) migrate red/red to TS
8 月之前
Saúl Ibarra Corretgé
dd36399096
feat(lint) update to eslint-config-jitsi v6
It already includes all the necessary dependencies and works for JS and
TS out of the box.
8 月之前
Saúl Ibarra Corretgé
c4a1d9cbfc
fix(gh) drop old stale.yml file
We now use GHA for this.
8 月之前
Jaya Allamsetty
763b2c8fcb
fix(SDP) Do not filter out SSRC 'cname' attributes. (#2695)
* fix(SDP) Do not filter out SSRC 'cname' attributes.
Chrome doesn't generate the a=ssrc line with 'msid' attribute when the track is removed from pc and a renegotiation is triggered. As a result a source-remove is sent to the p2p peer when it shouldn't be causing issues on the receiver when the same source is added back to the conference. Fixes toggleCamera on mobile browser not working as expected.
8 月之前
Jaya Allamsetty
2b08716206
fix(connectivity) Do not overwrite the packet loss value when video muted.
RTCP termination for audio was implemented a while back. This hack is no longer needed.
8 月之前