From cb73653c18ae459a14b770841cf3dd7a8e1636fe Mon Sep 17 00:00:00 2001 From: ArabPixel Date: Tue, 21 Oct 2025 13:51:02 +0200 Subject: [PATCH] Stability improvements Removing Debug console auto scroll to restore stability. having it inside utils.mjs sometimes causes 9.xx (9.60 at least) firmwre to show unresponsive browser tab and freeze if any operation was made (launching an app or restarting the console).. --- PSFree.manifest | 2 +- src/module/utils.mjs | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/PSFree.manifest b/PSFree.manifest index 90e9167..12609cb 100644 --- a/PSFree.manifest +++ b/PSFree.manifest @@ -1,6 +1,6 @@ CACHE MANIFEST # v1 -# Generated on 2025-10-14 20:35:14.092483 +# Generated on 2025-10-21 13:39:57.682007 CACHE: index.html diff --git a/src/module/utils.mjs b/src/module/utils.mjs index c62de4d..cf4a031 100644 --- a/src/module/utils.mjs +++ b/src/module/utils.mjs @@ -29,11 +29,8 @@ export function die(msg = "") { } const console = document.getElementById("console"); -const debugConsole = document.getElementById("DebugConsole"); export function log(msg = "") { console.append(`${msg}\n`); - // scroll console to bottom - debugConsole.scrollTop = debugConsole.scrollHeight; } export function clear_log() {