@adhdev/daemon-standalone 0.9.82-rc.340 → 0.9.82-rc.341

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 CHANGED
@@ -30036,10 +30036,10 @@ var require_dist3 = __commonJS({
30036
30036
  }
30037
30037
  function getDaemonBuildInfo() {
30038
30038
  if (cached2) return cached2;
30039
- const commit = readInjected(true ? "4208ff17576c4e0d480e0773908bb522545f006f" : void 0) ?? "unknown";
30040
- const commitShort = readInjected(true ? "4208ff17" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
30041
- const version2 = readInjected(true ? "0.9.82-rc.340" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
30042
- const builtAt = readInjected(true ? "2026-06-20T14:30:56.278Z" : void 0);
30039
+ const commit = readInjected(true ? "d2dce76eda1d1544a0c95c4de04b245102ee0c64" : void 0) ?? "unknown";
30040
+ const commitShort = readInjected(true ? "d2dce76e" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
30041
+ const version2 = readInjected(true ? "0.9.82-rc.341" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
30042
+ const builtAt = readInjected(true ? "2026-06-21T03:40:35.850Z" : void 0);
30043
30043
  cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
30044
30044
  return cached2;
30045
30045
  }
@@ -62199,6 +62199,14 @@ ${formatManifestValidationIssues2(validation.issues)}`,
62199
62199
  const sm = this.spec.send_message;
62200
62200
  const perChar = sm.delay_ms_per_char ?? 0;
62201
62201
  const beforeSubmit = resolveSubmitDelayMs(sm.delay_ms_before_submit, text);
62202
+ if (process.platform === "win32") {
62203
+ if (beforeSubmit > 0) {
62204
+ setTimeout(() => this.adapter.send_keys(text + sm.submit_key), beforeSubmit);
62205
+ } else {
62206
+ this.adapter.send_keys(text + sm.submit_key);
62207
+ }
62208
+ return;
62209
+ }
62202
62210
  if (perChar === 0) {
62203
62211
  this.adapter.send_keys(text);
62204
62212
  if (beforeSubmit > 0) setTimeout(() => this.adapter.send_keys(sm.submit_key), beforeSubmit);