Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
path = core-res
url = https://github.com/Cutleast/cutleast-core-res.git
branch = master
[submodule "mod-manager-lib"]
path = mod-manager-lib
url = https://github.com/Cutleast/mod-manager-lib.git
branch = master
1 change: 1 addition & 0 deletions mod-manager-lib
Submodule mod-manager-lib added at 9d8dcd
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ authors = [{ name = "Cutleast", email = "cutleast@gmail.com" }]
license = { file = "LICENSE" }
dependencies = [
"cutleast-core-lib",
"plyvel-ci",
"pyuac",
"mod-manager-lib",
]

[dependency-groups]
Expand All @@ -28,10 +27,12 @@ dev = [
[tool.uv.workspace]
members = [
"core-lib",
"mod-manager-lib",
]

[tool.uv.sources]
cutleast-core-lib = { workspace = true }
mod-manager-lib = { workspace = true, editable = true }

[tool.pytest.ini_options]
testpaths = ["tests"]
Expand Down
314 changes: 158 additions & 156 deletions res/loc/de.ts

Large diffs are not rendered by default.

318 changes: 160 additions & 158 deletions res/loc/pt_BR.ts

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
from cutleast_core_lib.base_app import BaseApp
from cutleast_core_lib.core.config.app_config import AppConfig as BaseAppConfig
from cutleast_core_lib.core.utilities.env_resolver import resolve
from cutleast_core_lib.core.utilities.qt_res_provider import read_resource
from cutleast_core_lib.core.utilities.singleton import Singleton
from mod_manager_lib.core.game_service import GameService
from PySide6.QtCore import QTranslator
from PySide6.QtGui import QIcon
from PySide6.QtWidgets import QMainWindow
Expand Down Expand Up @@ -49,6 +51,8 @@ def _load_app_config(self) -> BaseAppConfig:
def _init_main_window(self) -> QMainWindow:
self.__load_translation()

GameService(read_resource(":/games.json"))

return MainWindow(cast(AppConfig, self.app_config))

def __load_translation(self) -> None:
Expand Down
3 changes: 0 additions & 3 deletions src/core/game/__init__.py

This file was deleted.

22 changes: 0 additions & 22 deletions src/core/game/exceptions.py

This file was deleted.

165 changes: 0 additions & 165 deletions src/core/game/game.py

This file was deleted.

3 changes: 0 additions & 3 deletions src/core/instance/__init__.py

This file was deleted.

Loading