recappi 0.1.72 → 0.1.73
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 +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1252,7 +1252,7 @@ function RecordingDetailView({
|
|
|
1252
1252
|
scrollable ? " \xB7 \u2191\u2193 scroll" : "",
|
|
1253
1253
|
ready ? " \xB7 " : "",
|
|
1254
1254
|
`o open \xB7 d download \xB7 f finder`,
|
|
1255
|
-
" \xB7 T re-transcribe \xB7
|
|
1255
|
+
" \xB7 T re-transcribe \xB7 s re-summarize",
|
|
1256
1256
|
item.activeTranscriptId ? " \xB7 t full" : "",
|
|
1257
1257
|
links.webUrl ? " \xB7 w web" : "",
|
|
1258
1258
|
" \xB7 esc back"
|
|
@@ -2703,7 +2703,7 @@ function AppShell({
|
|
|
2703
2703
|
const rec = recordings.find((r) => r.recordingId === screen.recordingId);
|
|
2704
2704
|
const links = rec ? resolveRecordingLinks(rec.recordingId, rec.origin) : {};
|
|
2705
2705
|
if (input === "T" && rec) void retranscribeExistingRecording(rec.recordingId);
|
|
2706
|
-
else if (input === "S" && rec) void resummarizeExistingRecording(rec.recordingId);
|
|
2706
|
+
else if ((input === "s" || input === "S") && rec) void resummarizeExistingRecording(rec.recordingId);
|
|
2707
2707
|
else if (input === "t" && rec?.activeTranscriptId) void openTranscript(rec.activeTranscriptId);
|
|
2708
2708
|
else if (input === "o" && rec) void runAudio(rec.recordingId, "open");
|
|
2709
2709
|
else if (input === "d" && rec) void runAudio(rec.recordingId, "download");
|