@proxysoul/soulforge 1.8.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +9 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -58058,7 +58058,7 @@ var package_default;
|
|
|
58058
58058
|
var init_package = __esm(() => {
|
|
58059
58059
|
package_default = {
|
|
58060
58060
|
name: "@proxysoul/soulforge",
|
|
58061
|
-
version: "1.8.
|
|
58061
|
+
version: "1.8.1",
|
|
58062
58062
|
description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
|
|
58063
58063
|
repository: {
|
|
58064
58064
|
type: "git",
|
|
@@ -434714,6 +434714,7 @@ function ContextBar({
|
|
|
434714
434714
|
const currentPctRef = import_react25.useRef(0);
|
|
434715
434715
|
const compactFrameRef = import_react25.useRef(0);
|
|
434716
434716
|
const wasCompactingRef = import_react25.useRef(false);
|
|
434717
|
+
const prevWindowRef = import_react25.useRef(0);
|
|
434717
434718
|
const workerRef = import_react25.useRef({
|
|
434718
434719
|
intel: "idle",
|
|
434719
434720
|
io: "idle"
|
|
@@ -434787,7 +434788,10 @@ function ContextBar({
|
|
|
434787
434788
|
const wk = workerRef.current;
|
|
434788
434789
|
const wkChanged = wk.intel === "crashed" || wk.intel === "restarting" || wk.io === "crashed" || wk.io === "restarting";
|
|
434789
434790
|
const compactChanged = isCompacting !== wasCompacting;
|
|
434790
|
-
|
|
434791
|
+
const windowChanged = target.windowTokens !== prevWindowRef.current;
|
|
434792
|
+
if (windowChanged)
|
|
434793
|
+
prevWindowRef.current = target.windowTokens;
|
|
434794
|
+
if (pct_0 === currentPctRef.current && !target.flash && !isCompacting && !compactChanged && !wkChanged && !windowChanged)
|
|
434791
434795
|
return;
|
|
434792
434796
|
currentPctRef.current = pct_0;
|
|
434793
434797
|
try {
|
|
@@ -469155,7 +469159,7 @@ function StatusDashboard({
|
|
|
469155
469159
|
visible,
|
|
469156
469160
|
initialTab,
|
|
469157
469161
|
onClose,
|
|
469158
|
-
|
|
469162
|
+
activeModel: activeModelProp,
|
|
469159
469163
|
contextManager,
|
|
469160
469164
|
tabMgr,
|
|
469161
469165
|
currentMode,
|
|
@@ -469212,7 +469216,7 @@ function StatusDashboard({
|
|
|
469212
469216
|
}
|
|
469213
469217
|
};
|
|
469214
469218
|
}, [visible, tab, pollWorkerMemory]);
|
|
469215
|
-
const modelId =
|
|
469219
|
+
const modelId = activeModelProp;
|
|
469216
469220
|
const tu = sb.tokenUsage;
|
|
469217
469221
|
const contextLines = import_react104.useMemo(() => {
|
|
469218
469222
|
const breakdown = contextManager.getContextBreakdown();
|
|
@@ -477894,7 +477898,7 @@ function App({
|
|
|
477894
477898
|
visible: modalStatusDashboard,
|
|
477895
477899
|
initialTab: statusDashboardTab,
|
|
477896
477900
|
onClose: getCloser2("statusDashboard"),
|
|
477897
|
-
|
|
477901
|
+
activeModel: activeModelForHeader,
|
|
477898
477902
|
contextManager,
|
|
477899
477903
|
tabMgr,
|
|
477900
477904
|
currentMode: activeChatRef.current?.forgeMode ?? "default",
|