Add account manager and the account page is now fully functional.

Fix "Missing javaVersion" error when launching legacy Minecraft.

Add settings page. (But is not fully implemented yet)
This commit is contained in:
wei
2026-08-03 00:16:12 +08:00
parent eff990f7e4
commit 6ab807356d
23 changed files with 3188 additions and 130 deletions
+33
View File
@@ -0,0 +1,33 @@
QDialog {
background-color: palette(window);
}
QLabel#dialogTitle {
font-size: 18px; font-weight: 600;
}
QLabel#helpText {
color: palette(window-text); font-size: 13px;
}
QLineEdit#codeEdit {
min-height: 50px;
padding: 0 12px;
border-radius: 7px;
background-color: palette(base);
font-size: 25px;
font-weight: 600;
letter-spacing: 2px;
}
QLabel#errorMessage {
padding: 9px 11px;
border-radius: 6px;
background-color: rgba(210, 55, 55, 28);
color: #c93636;
font-size: 12px;
}
QPushButton {
min-height: 40px;
}