codeam-cli 1.3.1 → 1.3.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -114,7 +114,7 @@ var import_picocolors = __toESM(require("picocolors"));
114
114
  // package.json
115
115
  var package_default = {
116
116
  name: "codeam-cli",
117
- version: "1.3.1",
117
+ version: "1.3.3",
118
118
  description: "Remote control Claude Code from your mobile device",
119
119
  main: "dist/index.js",
120
120
  bin: {
@@ -873,7 +873,8 @@ function renderToLines(raw) {
873
873
  return screen;
874
874
  }
875
875
  function detectSelector(lines) {
876
- if (!lines.some((l) => l.includes("\u276F"))) return null;
876
+ if (lines.some((l) => /\?\s+for\s+shortcuts/i.test(l.trim()))) return null;
877
+ if (!lines.some((l) => /^❯\s*\d+\./.test(l.trim()))) return null;
877
878
  const optionMap = /* @__PURE__ */ new Map();
878
879
  let question = "";
879
880
  for (const line of lines) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "Remote control Claude Code from your mobile device",
5
5
  "main": "dist/index.js",
6
6
  "bin": {