From 9ec1e4ac34e1e4599a078c983d2bdd6e048a83c9 Mon Sep 17 00:00:00 2001
From: Youzini-afk <13153778771cx@gmail.com>
Date: Fri, 10 Apr 2026 18:43:57 +0800
Subject: [PATCH 1/6] Tighten rerun range input layout
---
ui/panel.html | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/ui/panel.html b/ui/panel.html
index adc3ba3..ccff2aa 100644
--- a/ui/panel.html
+++ b/ui/panel.html
@@ -364,14 +364,14 @@
重新提取:按总楼层计数(用户+AI,首条 greeting 为 0)。真正 system 不计入,且不受隐藏助手影响。
+
+
+
+
-
-
-
-
Date: Fri, 10 Apr 2026 10:44:27 +0000
Subject: [PATCH 2/6] chore: bump manifest version [skip ci]
---
manifest.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/manifest.json b/manifest.json
index 4b38381..fd263ff 100644
--- a/manifest.json
+++ b/manifest.json
@@ -6,6 +6,6 @@
"js": "index.js",
"css": "style.css",
"author": "Youzini",
- "version": "4.3.6",
+ "version": "4.3.7",
"homePage": "https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology"
}
From 38237d84746385c7d43a6f5e2cf86398cc43b347 Mon Sep 17 00:00:00 2001
From: Youzini-afk <13153778771cx@gmail.com>
Date: Fri, 10 Apr 2026 18:48:19 +0800
Subject: [PATCH 3/6] Unify rerun and summary range inputs
---
ui/panel.html | 26 +-------------------------
ui/panel.js | 4 ++--
2 files changed, 3 insertions(+), 27 deletions(-)
diff --git a/ui/panel.html b/ui/panel.html
index ccff2aa..5151cc1 100644
--- a/ui/panel.html
+++ b/ui/panel.html
@@ -399,31 +399,7 @@
重新提取范围:起始/终止都留空 = 当前重提;只填起始 = 从起始到最新。
- 重建总结状态:默认按当前总结相关范围重建;填写楼层后按范围重建。
-
-
diff --git a/ui/panel.js b/ui/panel.js
index 1e982b7..a80b91c 100644
--- a/ui/panel.js
+++ b/ui/panel.js
@@ -3806,10 +3806,10 @@ function _bindActions() {
const btn = document.getElementById("bme-act-summary-rebuild");
if (btn?.disabled) return;
const startFloor = _parseOptionalInt(
- document.getElementById("bme-summary-rebuild-start-floor")?.value,
+ document.getElementById("bme-extract-start-floor")?.value,
);
const endFloor = _parseOptionalInt(
- document.getElementById("bme-summary-rebuild-end-floor")?.value,
+ document.getElementById("bme-extract-end-floor")?.value,
);
const desc = Number.isFinite(startFloor) || Number.isFinite(endFloor)
? `按范围 ${Number.isFinite(startFloor) ? startFloor : "当前"} ~ ${Number.isFinite(endFloor) ? endFloor : "最新"} 重建总结状态`
From 98712853b133ce12ba3edcc76ab80061df83549a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 10 Apr 2026 10:48:52 +0000
Subject: [PATCH 4/6] chore: bump manifest version [skip ci]
---
manifest.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/manifest.json b/manifest.json
index fd263ff..ee4e6fa 100644
--- a/manifest.json
+++ b/manifest.json
@@ -6,6 +6,6 @@
"js": "index.js",
"css": "style.css",
"author": "Youzini",
- "version": "4.3.7",
+ "version": "4.3.8",
"homePage": "https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology"
}
From 7b1f125e170beea910f41dc84a41812c3fda303c Mon Sep 17 00:00:00 2001
From: Youzini-afk <13153778771cx@gmail.com>
Date: Fri, 10 Apr 2026 18:56:21 +0800
Subject: [PATCH 5/6] Move summary clear into cleanup
---
index.js | 1 +
ui/panel.html | 25 +++++++++++++++++++++----
ui/panel.js | 6 ------
ui/ui-actions-controller.js | 19 +++++++++++++++++--
4 files changed, 39 insertions(+), 12 deletions(-)
diff --git a/index.js b/index.js
index ca286c6..864d7da 100644
--- a/index.js
+++ b/index.js
@@ -12808,6 +12808,7 @@ async function onRebuildSummaryState(options = {}) {
async function onClearSummaryState() {
return await onClearSummaryStateController({
+ confirm: (msg) => (typeof globalThis.confirm === "function" ? globalThis.confirm(msg) : false),
ensureGraphMutationReady,
getCurrentGraph: () => currentGraph,
refreshPanelLiveState,
diff --git a/ui/panel.html b/ui/panel.html
index 5151cc1..f03b19f 100644
--- a/ui/panel.html
+++ b/ui/panel.html
@@ -343,10 +343,6 @@
重建总结状态
-