Saúl Ibarra Corretgé
9ad2f53c11
fix(lint) ignore generated docs when linting
8 달 전
Saúl Ibarra Corretgé
39b0858fff
fix(pkg) exclude hand-generated types from package
8 달 전
Saúl Ibarra Corretgé
378cab6996
feat(pkg) add react-native key to pakage.json
This makes it use the ESM build rather than the UMD one.
8 달 전
Saúl Ibarra Corretgé
154817b640
chore(*) fix sue of isNaN
- It can throw exceptions
- It doesn't return false on things which are not Number, just on things
that are not NaN
Fixes: https://github.com/jitsi/lib-jitsi-meet/issues/2743
8 달 전
Yash
91ab176d2e
feat(ts) migrate MockClasses to TS
8 달 전
Yash
0b8e4e3ba1
feat(ts) migrate strophe.logger to TS
8 달 전
Yash
b89d6d670f
feat(ts) migrate strophe.util to TS
8 달 전
Yash
afa89aea6a
feat(ts) migrate JibriSession to TS
8 달 전
Yash
aa17095e14
feat(ts) migrate StropheLastSuccess to TS
8 달 전
Saúl Ibarra Corretgé
e549aee5b2
feat(ts) add typedoc
The end goal is to fix our types to make typedoc generated docs as
useful as possible.
The generated docs will be published to GH pages on every push.
8 달 전
Saúl Ibarra Corretgé
e4c695fe6d
feat(docs) update README
In addition:
- Remove old doc pointer
- Replace example with a more comprehensive one
8 달 전
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 달 전