recappi 0.1.11 → 0.1.12
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 +6 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1301,19 +1301,20 @@ function recordErrorCopy(code, message) {
|
|
|
1301
1301
|
switch (code) {
|
|
1302
1302
|
case "record.helper_unavailable":
|
|
1303
1303
|
return {
|
|
1304
|
-
title: "
|
|
1305
|
-
detail: "
|
|
1304
|
+
title: "This CLI install is missing its local recorder.",
|
|
1305
|
+
detail: "Run npm install -g recappi@latest, or use npx -y recappi@latest.",
|
|
1306
1306
|
tone: "yellow"
|
|
1307
1307
|
};
|
|
1308
1308
|
case "record.unsupported_platform":
|
|
1309
1309
|
return {
|
|
1310
|
-
title: "
|
|
1310
|
+
title: "CLI recording isn't supported on this platform yet.",
|
|
1311
|
+
detail: "Use Recappi Mini on macOS to record for now.",
|
|
1311
1312
|
tone: "yellow"
|
|
1312
1313
|
};
|
|
1313
1314
|
case "record.capture_unavailable":
|
|
1314
1315
|
return {
|
|
1315
|
-
title: "
|
|
1316
|
-
detail: "
|
|
1316
|
+
title: "CLI recording isn't ready yet.",
|
|
1317
|
+
detail: "Use the Recappi Mini app to record for now; CLI recording is coming soon.",
|
|
1317
1318
|
tone: "yellow"
|
|
1318
1319
|
};
|
|
1319
1320
|
default:
|