Now game dir is the correct path.

Add experimental manage profile page.
This commit is contained in:
wei
2026-08-03 22:15:55 +08:00
parent c63c46a3b3
commit 6e8f2ac2eb
8 changed files with 481 additions and 8 deletions
+3 -2
View File
@@ -46,7 +46,7 @@ class Launcher(QApplication, LauncherObject):
self.game_manager = GameManager(self)
# Window config
self.setApplicationName("TestLauncher")
self.setApplicationName("TapLauncher")
self.main_window = LauncherMainWindow(
app=self
)
@@ -139,7 +139,8 @@ class Launcher(QApplication, LauncherObject):
@property
def default_game_dir(self) -> Path:
return self.work_dir / "minecraft" if sys.platform.lower() == "darwin" else self.work_dir / ".minecraft"
# Completely with official Minecraft launcher
return self.work_dir
@property
def resources_dir(self):