diff --git a/gui/__main__.py b/gui/__main__.py index 66319fc..9c602eb 100644 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -101,7 +101,7 @@ if is_compatable: logger.error(f"[DB MANAGEMENT] Critical Failure with updating/inserting the new DB version into the database.") # Load GUI either way: - from main_ui import start_ui + from gui.main_ui import start_ui # If the user lacks a database, we want to force them to sync the new data, to avoid NoneType errors when enabling existing profiles, if reason == "no_database": diff --git a/gui/__pycache__/__main__.cpython-312.pyc b/gui/__pycache__/__main__.cpython-312.pyc index 2398983..528d927 100644 Binary files a/gui/__pycache__/__main__.cpython-312.pyc and b/gui/__pycache__/__main__.cpython-312.pyc differ diff --git a/gui/main_ui.py b/gui/main_ui.py index a12679d..7be4fd1 100755 --- a/gui/main_ui.py +++ b/gui/main_ui.py @@ -73,8 +73,8 @@ class CustomWindow(QMainWindow): gui_dir = os.path.dirname(os.path.abspath(__file__)) font_path = os.path.join(gui_dir, 'resources', 'fonts') - # Get's SQLAlchemy going, - orm.start() + # # Get's SQLAlchemy going, + # orm.start() retro_gaming_path = os.path.join(font_path, 'retro-gaming.ttf') font_id = QFontDatabase.addApplicationFont(retro_gaming_path) diff --git a/pyproject.toml b/pyproject.toml index 10950c5..628cb74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sp-hydra-veil-gui" -version = "2.4.5" +version = "2.4.6" authors = [ { name = "Simplified Privacy" }, ]