codex-to-im 1.0.37 → 1.0.38

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.
Files changed (2) hide show
  1. package/dist/daemon.mjs +2 -2
  2. package/package.json +1 -1
package/dist/daemon.mjs CHANGED
@@ -5619,7 +5619,7 @@ var DEDUP_MAX = 1e3;
5619
5619
  var MAX_FILE_SIZE = 20 * 1024 * 1024;
5620
5620
  var TYPING_EMOJI = "Typing";
5621
5621
  var CARD_THROTTLE_MS = 200;
5622
- var INITIAL_STREAMING_STATUS = "\u5DF2\u8FD0\u884C 0s";
5622
+ var INITIAL_STREAMING_STATUS = "\u5904\u7406\u4E2D";
5623
5623
  var EMPTY_STREAMING_TOOLS = "";
5624
5624
  var MIME_BY_TYPE = {
5625
5625
  image: "image/png",
@@ -19024,7 +19024,7 @@ function formatRuntimeDuration(ms) {
19024
19024
  return `${hours}h ${minutes}m ${seconds}s`;
19025
19025
  }
19026
19026
  function formatInteractiveRuntimeStatus(elapsedMs, silentMs) {
19027
- const parts = [`\u5DF2\u8FD0\u884C ${formatRuntimeDuration(elapsedMs)}`];
19027
+ const parts = [elapsedMs < 1e3 ? "\u5904\u7406\u4E2D" : `\u5DF2\u8FD0\u884C ${formatRuntimeDuration(elapsedMs)}`];
19028
19028
  if (typeof silentMs === "number" && silentMs >= 0) {
19029
19029
  parts.push(`\u6700\u8FD1 ${formatRuntimeDuration(silentMs)} \u65E0\u65B0\u8F93\u51FA`);
19030
19030
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-to-im",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "description": "Installable Codex-to-IM bridge with local setup UI and background service",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/zhangle1987/codex-to-im#readme",