Merge branch 'master' into feature/104-settings-window

# Conflicts:
#	src/engines/engine_manager.py
#	src/init.py
This commit is contained in:
Brett Williams
2025-12-27 19:49:32 -06:00
39 changed files with 981 additions and 426 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ class MenuBar(QMenuBar):
@staticmethod
def check_for_updates():
from src.utilities.misc_helper import check_for_updates
from version import APP_NAME, APP_VERSION, APP_REPO_NAME, APP_REPO_OWNER
from src.version import APP_NAME, APP_VERSION, APP_REPO_NAME, APP_REPO_OWNER
found_update = check_for_updates(APP_REPO_NAME, APP_REPO_OWNER, APP_NAME, APP_VERSION)
if found_update:
dialog = UpdateDialog(found_update, APP_VERSION)