- fix: throw proper error if wtv-update:/sync called without arguments
- feature: Support to route all HTTP proxied requests over a SOCKS proxy (eg Tor or VPN)
- feature: Psuedo-HTTPS (WebTV can now visit HTTPS URLs via proxy, but
  we do not use SSL encryption when sending back to the WebTV)
- fix: header issue with login-stage-two.js
- update: wtv-update/sync: allow multiple groups in sync diskmap, fix md5 comparsion
- update: wtv-home:/home: added connection speed
- Renamed processSSID to filterSSID
- Documented and rewrote some functions
This commit is contained in:
zefie
2021-07-20 05:45:43 -04:00
parent 8f91ba2a5c
commit 8bc4d29815
10 changed files with 552 additions and 101 deletions

View File

@@ -32,7 +32,7 @@
"wtv-log": {
"port": 1609,
"connections": 1,
"write_logs_to_disk": false
"write_logs_to_disk": false
},
"wtv-home": {
"port": 1612,
@@ -45,7 +45,7 @@
"wtv-flashrom": {
"port": 1618,
"flags": "0x00000040",
"use_zefie_server": true
"use_zefie_server": true
},
"wtv-music": {
"port": 1656,
@@ -55,10 +55,18 @@
"http": {
"port": 1650,
"connections": 3,
"use_external_proxy": false,
"external_proxy_host": null,
"external_proxy_port": 8080
"use_external_proxy": true,
"external_proxy_is_socks": true,
"external_proxy_host": "127.0.0.1",
"external_proxy_port": 1080
},
"https": {
"port": 1650,
"connections": 3,
"use_external_proxy": true,
"external_proxy_is_socks": true,
"external_proxy_host": "127.0.0.1",
"external_proxy_port": 1080
}
}
}