From f8574d5ecf31021b1aee7fcb0c8b45c190bffead Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 2 Aug 2025 15:54:18 +0300 Subject: add timestamps to .apkg exports and num of cards --- internal/gui/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/gui') diff --git a/internal/gui/app.go b/internal/gui/app.go index f776d9b..9374973 100644 --- a/internal/gui/app.go +++ b/internal/gui/app.go @@ -1203,7 +1203,7 @@ func (a *Application) onExportToAnki() { // Update status bar instead of showing dialog a.updateStatus(fmt.Sprintf("Exported %d cards to %s (%d with audio, %d with images)", - total, outputPath, withAudio, withImages)) + total, selectedDir, withAudio, withImages)) } else { filename = "anki_import.csv" outputPath = filepath.Join(selectedDir, filename) @@ -1232,7 +1232,7 @@ func (a *Application) onExportToAnki() { // Update status bar instead of showing dialog a.updateStatus(fmt.Sprintf("Exported %d cards to %s (%d with audio, %d with images)", - total, outputPath, withAudio, withImages)) + total, selectedDir, withAudio, withImages)) } }, a.window) -- cgit v1.2.3