Compare commits

...

2 Commits

Author SHA1 Message Date
d18a9915f9 chore: bump version to 0.3.2
All checks were successful
Build and Publish / build-and-publish (push) Successful in 16s
Signed-off-by: Max P. <Mail@MPassarello.de>
2025-04-30 15:24:15 +02:00
da76f9420b fix(voice_to_text_tray): update journal timestamp format to include seconds
Signed-off-by: Max P. <Mail@MPassarello.de>
2025-04-30 15:24:10 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "pyvtt"
version = "0.3.1"
version = "0.3.2"
description = "Python Voice to Text + LLMA"
authors = [{ name = "Max P.", email = "Mail@MPassarello.de" }]
license = { text = "MIT" }

View File

@@ -99,7 +99,7 @@ class WhisperWorker(QThread):
if CURRENT_PRESET["mode"] == "journal":
today = datetime.date.today().strftime("%Y.%m.%d")
journal_path = os.path.join(CONFIGURATION["journal_path"], f"{today} - {CURRENT_PRESET['journal_name']}.md")
now = datetime.datetime.now().strftime("%H:%M")
now = datetime.datetime.now().strftime("%H:%M:%S")
if not os.path.exists(journal_path):
try:
with open(journal_path, "w") as f: