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()
```
9 kuukautta sitten
Saúl Ibarra Corretgé
f0e3cb289c
feat(lint) update linter and apply it to TS code
9 kuukautta sitten
Saúl Ibarra Corretgé
cd88247b71
ref(ComponentsVersions) rewrite in TS as a ES6 class
1 vuosi sitten
bgrozev
6ca515dbda
Remove callstats support (#2399)
* ref: Remove PrecallTest.
* ref: Remove callstats support.
2 vuotta sitten
Saúl Ibarra Corretgé
c24130622e
chore(deps) adapt to logger package rename
4 vuotta sitten
Jaya Allamsetty
3b8baa9d3b
fix(JitsiConference) Check for room before calling isFocus method on the room object.
4 vuotta sitten
Boris Grozev
f4fc0ddc9a
Clean up ComponentVersions.
6 vuotta sitten
Lyubo Marinov
45a5f64326
Prepare for webpack 2
Webpack 2 defines module.exports as a read-only property in ES6 modules.
8 vuotta sitten
Lyubo Marinov
089ee76c04
Prepare for webpack 2
Webpack 2 defines module.exports as a read-only property in ES6 modules.
8 vuotta sitten
Lyubo Marinov
068f290835
[eslint] lines-around-comment
8 vuotta sitten
Lyubo Marinov
4581605a28
[eslint] newline-after-var, newline-before-return, newline-per-chained-call
8 vuotta sitten
Lyubo Marinov
13bfa61028
[eslint] prefer-arrow-callback
8 vuotta sitten
Lyubo Marinov
c991abf9ef
[eslint] prefer-template
8 vuotta sitten
Lyubo Marinov
5bff0ed543
[eslint] no-var
8 vuotta sitten
Lyubo Marinov
4293971466
[eslint] operator-linebreak
8 vuotta sitten
Lyubo Marinov
ed0d464392
[eslint] quotes
8 vuotta sitten
Lyubo Marinov
f8ab8015a2
[eslint] space-before-blocks
8 vuotta sitten
hristoterezov
c96898c478
fix(eslint): Add no-multi-spaces rule
8 vuotta sitten
hristoterezov
3e44723582
fix(eslint): Add indent rule
8 vuotta sitten
hristoterezov
f02a22d3f9
fix(eslint): Add brace-style rule
8 vuotta sitten
hristoterezov
c36b464bfc
fix(eslint): Add curly rule
8 vuotta sitten
Lyubo Marinov
596767d57e
[eslint] object-shorthand
8 vuotta sitten
Boris Grozev
961870f55c
Formats callstats application logs as JSON.
9 vuotta sitten
Boris Grozev
cde0b16d31
Removes a piece of code which doesn't make any sense.
Does not fire an "IncompatibleVersionsEvent" in case the
reported XMPP server version changes.
9 vuotta sitten
hristoterezov
0449071f89
Implements JitsiConnection.reload. Minor fixes related to JitsiConference.reload.
9 vuotta sitten
damencho
d773e0bcff
Sends additional logs to callstats.
Logs versions of components and library version. Logs shard and region if available.
9 vuotta sitten
paweldomas
f4900ec533
Captures the versions of conferencing system components.
9 vuotta sitten