Compare commits

..

2 Commits

Author SHA1 Message Date
4e4389a03f chore(version): bump to 0.4.5
All checks were successful
Build and Publish / build-and-publish (push) Successful in 1m40s
- Update project version from 0.4.4 to 0.4.5
- Prepares for the next release with minor updates
2025-05-18 20:41:38 +02:00
2c0cffe16a fix(worker): adjust timestamp format in journal entries
- Updates the timestamp format from HH:MM:SS to HH:MM for journal logs
- Simplifies the time representation in generated journal paths
2025-05-18 20:41:14 +02:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

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