@adhdev/daemon-standalone 1.0.45-rc.2 → 1.0.45-rc.3
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 +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -37020,10 +37020,10 @@ var require_dist3 = __commonJS({
|
|
|
37020
37020
|
}
|
|
37021
37021
|
function getDaemonBuildInfo() {
|
|
37022
37022
|
if (cached2) return cached2;
|
|
37023
|
-
const commit = readInjected(true ? "
|
|
37024
|
-
const commitShort = readInjected(true ? "
|
|
37025
|
-
const version2 = readInjected(true ? "1.0.45-rc.
|
|
37026
|
-
const builtAt = readInjected(true ? "2026-08-11T16:
|
|
37023
|
+
const commit = readInjected(true ? "f9a2d47ae4e9c817945969b7beabf6db040180d4" : void 0) ?? "unknown";
|
|
37024
|
+
const commitShort = readInjected(true ? "f9a2d47" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
37025
|
+
const version2 = readInjected(true ? "1.0.45-rc.3" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
37026
|
+
const builtAt = readInjected(true ? "2026-08-11T16:31:39.176Z" : void 0);
|
|
37027
37027
|
cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
|
|
37028
37028
|
return cached2;
|
|
37029
37029
|
}
|
|
@@ -76137,6 +76137,7 @@ ${lastSnapshot}`;
|
|
|
76137
76137
|
}
|
|
76138
76138
|
// ─── Public API (CliAdapter) ───────────────────
|
|
76139
76139
|
getStatus(options = {}) {
|
|
76140
|
+
this.refreshKimiPendingQuestion();
|
|
76140
76141
|
const allowParse = options.allowParse !== false;
|
|
76141
76142
|
let startupModal = allowParse && this.startupParseGate ? this.runParseApproval(this.recentOutputBuffer) : null;
|
|
76142
76143
|
if (startupModal && this.engine.isStaleResolvedApproval(startupModal, { screenText: this.terminalScreen.getText(), accumulatedBuffer: this.accumulatedBuffer })) {
|