@adhdev/daemon-standalone 0.9.82-rc.330 → 0.9.82-rc.331
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 +13 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/index-C6jQV0gJ.js +113 -0
- package/public/index.html +1 -1
package/dist/index.js
CHANGED
|
@@ -29803,7 +29803,10 @@ var require_dist3 = __commonJS({
|
|
|
29803
29803
|
requireApprovalForDestructiveGit: true,
|
|
29804
29804
|
dirtyWorkspaceBehavior: "warn",
|
|
29805
29805
|
maxParallelTasks: 2,
|
|
29806
|
-
|
|
29806
|
+
// Coordinator-spawned worker sessions default to hidden so the dashboard is not
|
|
29807
|
+
// flooded with mesh noise tabs/notifications. Users can still surface or unmute
|
|
29808
|
+
// any specific session manually; that override is preserved per-device.
|
|
29809
|
+
spawnedSessionVisibility: "hidden",
|
|
29807
29810
|
delegatedWorkerAutoApprove: true,
|
|
29808
29811
|
sessionCleanupOnNodeRemove: "preserve",
|
|
29809
29812
|
autoFastForward: { enabled: true },
|
|
@@ -30033,10 +30036,10 @@ var require_dist3 = __commonJS({
|
|
|
30033
30036
|
}
|
|
30034
30037
|
function getDaemonBuildInfo() {
|
|
30035
30038
|
if (cached2) return cached2;
|
|
30036
|
-
const commit = readInjected(true ? "
|
|
30037
|
-
const commitShort = readInjected(true ? "
|
|
30038
|
-
const version2 = readInjected(true ? "0.9.82-rc.
|
|
30039
|
-
const builtAt = readInjected(true ? "2026-06-
|
|
30039
|
+
const commit = readInjected(true ? "a6ef3a58ea926c6fa42f5ec53fae14e0bd5cac1b" : void 0) ?? "unknown";
|
|
30040
|
+
const commitShort = readInjected(true ? "a6ef3a58" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
30041
|
+
const version2 = readInjected(true ? "0.9.82-rc.331" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
30042
|
+
const builtAt = readInjected(true ? "2026-06-20T00:34:33.289Z" : void 0);
|
|
30040
30043
|
cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
|
|
30041
30044
|
return cached2;
|
|
30042
30045
|
}
|
|
@@ -31672,7 +31675,7 @@ ${error48.message || ""}`;
|
|
|
31672
31675
|
policy.sessionCleanupOnNodeRemove = "preserve";
|
|
31673
31676
|
}
|
|
31674
31677
|
if (!SPAWNED_SESSION_VISIBILITY_MODES.has(String(policy.spawnedSessionVisibility))) {
|
|
31675
|
-
policy.spawnedSessionVisibility =
|
|
31678
|
+
policy.spawnedSessionVisibility = DEFAULT_MESH_POLICY.spawnedSessionVisibility;
|
|
31676
31679
|
}
|
|
31677
31680
|
const normalizedStrategy = normalizeMeshSchedulingStrategy(policy.schedulingStrategy);
|
|
31678
31681
|
if (normalizedStrategy === "first_eligible") {
|
|
@@ -80779,7 +80782,10 @@ ${ptyResult.output.slice(-2e3)}`);
|
|
|
80779
80782
|
title: session.title,
|
|
80780
80783
|
cdpConnected: session.cdpConnected,
|
|
80781
80784
|
summaryMetadata: session.summaryMetadata,
|
|
80782
|
-
settings: session.settings
|
|
80785
|
+
settings: session.settings,
|
|
80786
|
+
// Forward surfaceHidden so the server can gate push notifications for
|
|
80787
|
+
// coordinator-hidden sessions (the WS path is the only one the server sees).
|
|
80788
|
+
surfaceHidden: session.surfaceHidden
|
|
80783
80789
|
})),
|
|
80784
80790
|
p2p: payload.p2p,
|
|
80785
80791
|
timestamp: now
|