chore(language): 更新加载语言的时间戳

- 将语言加载时间从 2025 年 7 月 2 日20:11:55 修改为 2025年 8 月 12 日 21:57:11
- 保持加载的语言为系统默认的简体中文(zh_CN)
- 重写主窗口界面
This commit is contained in:
tzdwindows 7
2025-08-12 22:10:55 +08:00
parent e4761d34e0
commit 692ec3dc8d
3 changed files with 856 additions and 694 deletions

View File

@@ -1,3 +1,3 @@
#Current Loaded Language #Current Loaded Language
#Wed Jul 02 20:11:55 CST 2025 #Tue Aug 12 21:57:11 CST 2025
loadedLanguage=system\:zh_CN loadedLanguage=system\:zh_CN

File diff suppressed because it is too large Load Diff

View File

@@ -39,6 +39,9 @@ public class UserLocalInformation {
OnlineVerification onlineVerification = OnlineVerification.validateLogin( OnlineVerification onlineVerification = OnlineVerification.validateLogin(
verification, verification,
password); password);
if (onlineVerification == null){
return null;
}
return VerificationService.determineUserType(onlineVerification); return VerificationService.determineUserType(onlineVerification);
} }
} }