update: WTVClientCapabilities: add unknown bits instead of logging error

update: fix flashrom system
update: webone example config
update: app.js: more 'binary block' exclusions
update: fix tellyscript folder name for case-sensitive filesystems
This commit is contained in:
zefie
2021-08-06 00:05:58 -04:00
parent 832a20e9a6
commit 743989d4f0
7 changed files with 47 additions and 23 deletions

View File

@@ -3,8 +3,10 @@ request_is_async = true;
var bf0app_update = false;
var request_path = unescape(request_headers.query.path);
var romtype = ssid_sessions[socket.ssid].get("wtv-client-rom-type");
var bootver = ssid_sessions[socket.ssid].get("wtv-client-bootrom-version")
if (ssid_sessions[socket.ssid].get("wtv-client-rom-type") == "bf0app" && ssid_sessions[socket.ssid].get("wtv-client-bootrom-version") == "105") {
if ((romtype == "bf0app" || !romtype) && (bootver == "105" || !bootver)) {
// assume old classic in flash mode, override user setting and send tellyscript
// because it is required to proceed in flash mode
bf0app_update = true;