Refactor ConnectScreen to use logo image instead of SVG, enhance EQPage with batch editing functionality for PEQ settings, and implement power off confirmation dialog in Home component. Update localization files for new power off features.

This commit is contained in:
yangy
2026-04-21 14:31:31 +08:00
parent 0aa856ed84
commit cf970a6a7f
9 changed files with 300 additions and 32 deletions
+2
View File
@@ -262,6 +262,8 @@ export class LuxsinAPI {
setXlrPolarity(reverse: boolean) { return this.setSetting({ xlr: reverse ? 1 : 0 }); }
setDacArc(earc: boolean) { return this.setSetting({ dacArc: earc ? 1 : 0 }); }
setBootSound(on: boolean) { return this.setSetting({ bootSound: on ? 1 : 0 }); }
/** Device power off — `GET .../dev/info.cgi?action=setting&power=0` */
powerOff() { return this.setSetting({ power: 0 }); }
}
// ============================================================