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 месеца