@adhdev/daemon-standalone 0.9.82-rc.541 → 0.9.82-rc.542
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 +14 -8
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -30208,10 +30208,10 @@ var require_dist3 = __commonJS({
|
|
|
30208
30208
|
}
|
|
30209
30209
|
function getDaemonBuildInfo() {
|
|
30210
30210
|
if (cached2) return cached2;
|
|
30211
|
-
const commit = readInjected(true ? "
|
|
30212
|
-
const commitShort = readInjected(true ? "
|
|
30213
|
-
const version2 = readInjected(true ? "0.9.82-rc.
|
|
30214
|
-
const builtAt = readInjected(true ? "2026-07-
|
|
30211
|
+
const commit = readInjected(true ? "eb1fb961d4f22983420fad4c65b982d3ab42b5cf" : void 0) ?? "unknown";
|
|
30212
|
+
const commitShort = readInjected(true ? "eb1fb961" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
30213
|
+
const version2 = readInjected(true ? "0.9.82-rc.542" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
30214
|
+
const builtAt = readInjected(true ? "2026-07-16T06:30:45.651Z" : void 0);
|
|
30215
30215
|
cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
|
|
30216
30216
|
return cached2;
|
|
30217
30217
|
}
|
|
@@ -49474,8 +49474,12 @@ ${cleanBody}`;
|
|
|
49474
49474
|
settings: state.settings,
|
|
49475
49475
|
...coordinator && { coordinator },
|
|
49476
49476
|
...meshQueueStats && { meshQueueStats },
|
|
49477
|
-
|
|
49478
|
-
|
|
49477
|
+
// Emit these booleans explicitly (including false) so an un-hide/un-mute clears a
|
|
49478
|
+
// previously-true value downstream. Consumers merge with `?? existing` and copy only
|
|
49479
|
+
// `!== undefined` fields, so an absent field on false never overwrote a prior true —
|
|
49480
|
+
// the toggle-off direction silently stuck. See session-entry-merge.ts.
|
|
49481
|
+
surfaceHidden: resolveSurfaceHidden(state.settings),
|
|
49482
|
+
muted: resolveMuted(state.settings)
|
|
49479
49483
|
};
|
|
49480
49484
|
}
|
|
49481
49485
|
function buildAcpSession(state, options) {
|
|
@@ -49516,8 +49520,10 @@ ${cleanBody}`;
|
|
|
49516
49520
|
settings: state.settings,
|
|
49517
49521
|
...coordinator && { coordinator },
|
|
49518
49522
|
...meshQueueStats && { meshQueueStats },
|
|
49519
|
-
|
|
49520
|
-
|
|
49523
|
+
// Emit explicitly (including false) so un-hide/un-mute clears a prior true downstream —
|
|
49524
|
+
// see buildCliSession above and session-entry-merge.ts.
|
|
49525
|
+
surfaceHidden: resolveSurfaceHidden(state.settings),
|
|
49526
|
+
muted: resolveMuted(state.settings)
|
|
49521
49527
|
};
|
|
49522
49528
|
}
|
|
49523
49529
|
function buildSessionEntries(allStates, cdpManagers, options = {}) {
|