Compare commits

..

2 Commits

Author SHA1 Message Date
776d95f8cd chore: bump version to 0.2.1
All checks were successful
Build and Publish / build-and-publish (push) Successful in 17s
- Update project version from 0.2.0 to 0.2.1 in pyproject.toml.
- Indicates a minor update, likely for small improvements or fixes.

Signed-off-by: Max P. <Mail@MPassarello.de>
2025-04-30 15:07:36 +02:00
b5281b393c refactor(configuration): simplify import paths
- Update import statements to remove redundant `src` prefix.
- Improve clarity and maintainability of module references.

Signed-off-by: Max P. <Mail@MPassarello.de>
2025-04-30 15:07:10 +02:00
3 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -1,7 +1,7 @@
import socket
import sys
import argparse
from src.pyvtt.configuration import read_configurations
from pyvtt.configuration import read_configurations
CONFIGURATION = read_configurations()

View File

@@ -8,7 +8,7 @@ import requests
from PyQt5.QtWidgets import QApplication, QSystemTrayIcon, QMenu, QAction
from PyQt5.QtGui import QIcon
from PyQt5.QtCore import QThread, pyqtSignal
from src.pyvtt.configuration import read_configurations
from pyvtt.configuration import read_configurations
from pyvtt.notify import notify, play_sound
CONFIGURATION = read_configurations()