Compare commits
2 Commits
b4a728d0c6
...
d18a9915f9
| Author | SHA1 | Date | |
|---|---|---|---|
|
d18a9915f9
|
|||
|
da76f9420b
|
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "pyvtt"
|
name = "pyvtt"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
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" }
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ class WhisperWorker(QThread):
|
|||||||
if CURRENT_PRESET["mode"] == "journal":
|
if CURRENT_PRESET["mode"] == "journal":
|
||||||
today = datetime.date.today().strftime("%Y.%m.%d")
|
today = datetime.date.today().strftime("%Y.%m.%d")
|
||||||
journal_path = os.path.join(CONFIGURATION["journal_path"], f"{today} - {CURRENT_PRESET['journal_name']}.md")
|
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):
|
if not os.path.exists(journal_path):
|
||||||
try:
|
try:
|
||||||
with open(journal_path, "w") as f:
|
with open(journal_path, "w") as f:
|
||||||
|
|||||||
Reference in New Issue
Block a user