- 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
 - fix: encrypted request headers were shown despite verbosity level
 - 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-19 15:03:35 -04:00
parent b0ab508d0f
commit 6c479782e9
11 changed files with 567 additions and 99 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
}
}
}