update documentation, rework documentation thread, rework book dataclass, fix newentry bug

This commit is contained in:
2025-01-24 10:17:16 +01:00
parent b112b09e82
commit f1ee4089a3
9 changed files with 117 additions and 38 deletions

View File

@@ -1,10 +1,10 @@
from PyQt6.QtCore import QThread, pyqtSignal
from src.utils import launch_documentation
from src.utils.documentation import run_mkdocs
class DocumentationThread(QThread):
def __init__(self):
super().__init__()
def run(self):
launch_documentation()
# launch_documentation()
run_mkdocs()