Add download progress dialog and some mod loader parse function.

This commit is contained in:
wei
2026-07-28 13:35:04 +08:00
parent 8d850408cd
commit 07d5b8a378
17 changed files with 1873 additions and 1025 deletions
+2 -3
View File
@@ -1,15 +1,14 @@
from pathlib import Path
from PySide6 import QtGui
from PySide6.QtCore import QSize
from PySide6.QtWidgets import QWidget, QVBoxLayout, QComboBox, QListWidget, QPushButton, QLabel, QHBoxLayout
from core_lib.launcher.object import Launcher as LauncherObject
class CreateProfile(QWidget):
def __init__(self, launcher: "LauncherObject",parent=None):
def __init__(self, app, parent=None):
super(CreateProfile, self).__init__(parent)
self.app = launcher
self.app = app
self.layout = QHBoxLayout()