diff --git a/cli/transmute-darwin-arm64.tar.gz b/cli/transmute-darwin-arm64.tar.gz new file mode 100644 index 0000000..de2720f Binary files /dev/null and b/cli/transmute-darwin-arm64.tar.gz differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 759af8e..fb782d0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1001,13 +1001,13 @@ export default function LandingPage() { transition={{ duration: 0.6 }} > - Terminal Lovers + Terminal Lovers (in early Alpha)
- A full interactive TUI. Navigate files, pick formats, and batch convert without leaving your terminal. + A full interactive TUI. Navigate files, pick formats, and batch convert without leaving your terminal. (May not work)
diff --git a/src/components/FileRow.tsx b/src/components/FileRow.tsx index 23e371a..ecbef96 100644 --- a/src/components/FileRow.tsx +++ b/src/components/FileRow.tsx @@ -12,6 +12,7 @@ interface FileRowProps { onRemove: (id: string) => void; onDownload: (file: UploadedFile) => void; onPreview: (file: UploadedFile) => void; + onDeleteConverted: (id: string) => void; } export function FileRow({ @@ -21,6 +22,7 @@ export function FileRow({ onRemove, onDownload, onPreview, + onDeleteConverted, }: FileRowProps) { const color = CATEGORY_COLORS[file.category]; const icon = CATEGORY_ICONS[file.category]; @@ -103,7 +105,7 @@ export function FileRow({ {/* Status / actions */}