From e939903a033d5100b0495c7e3f448487662a5262 Mon Sep 17 00:00:00 2001 From: yan Date: Sun, 18 Jan 2026 20:55:09 +0800 Subject: [PATCH] =?UTF-8?q?fix(FullyAutoAndSemiAutoTools):=20=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E8=AE=B0=E5=BD=95=E8=B7=AF=E5=BE=84=E6=8E=92=E5=BA=8F?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加时间戳降序排序确保最新记录优先显示 --- repo/js/FullyAutoAndSemiAutoTools/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/repo/js/FullyAutoAndSemiAutoTools/main.js b/repo/js/FullyAutoAndSemiAutoTools/main.js index 2486e7506..fa9f16dda 100644 --- a/repo/js/FullyAutoAndSemiAutoTools/main.js +++ b/repo/js/FullyAutoAndSemiAutoTools/main.js @@ -546,6 +546,7 @@ async function initRun(config_run) { recordPaths = Array.from(RecordPath.paths); } catch (e) { } + recordPaths.sort((a, b) => b.timestamp - a.timestamp) const timeConfigs = Array.from(timeJson);