Update source->V4.10.0.17496

This commit is contained in:
Yanam1Anna
2025-06-11 13:24:16 +08:00
parent b589039369
commit 2257fd5deb
2 changed files with 4 additions and 2 deletions

View File

@@ -215,7 +215,7 @@ class Ui_mainwin(object):
def retranslateUi(self, mainwin): def retranslateUi(self, mainwin):
mainwin.setWindowTitle( mainwin.setWindowTitle(
QCoreApplication.translate( QCoreApplication.translate(
"mainwin", "FRAISEMOE Addons Installer V4.9.9.17493", None "mainwin", "FRAISEMOE Addons Installer V4.10.0.17496", None
) )
) )
self.mainbg.setText("") self.mainbg.setText("")

View File

@@ -27,6 +27,7 @@ from GUI import Ui_mainwin
# 配置信息 # 配置信息
app_data = { app_data = {
"APP_VERSION": "4.10.0.17496",
"APP_NAME": "@FRAISEMOE Addons Installer", "APP_NAME": "@FRAISEMOE Addons Installer",
"TEMP": "TEMP", "TEMP": "TEMP",
"CACHE": "FRAISEMOE", "CACHE": "FRAISEMOE",
@@ -67,12 +68,13 @@ def decode_base64(encoded_str):
return base64.b64decode(encoded_str).decode("utf-8") return base64.b64decode(encoded_str).decode("utf-8")
APP_VERSION = app_data["APP_VERSION"]
APP_NAME = app_data["APP_NAME"] APP_NAME = app_data["APP_NAME"]
TEMP = os.getenv(app_data["TEMP"]) TEMP = os.getenv(app_data["TEMP"])
CACHE = os.path.join(TEMP, app_data["CACHE"]) CACHE = os.path.join(TEMP, app_data["CACHE"])
PLUGIN = os.path.join(CACHE, app_data["PLUGIN"]) PLUGIN = os.path.join(CACHE, app_data["PLUGIN"])
CONFIG_URL = decode_base64(app_data["CONFIG_URL"]) CONFIG_URL = decode_base64(app_data["CONFIG_URL"])
UA = decode_base64(app_data["UA"]) UA = decode_base64(app_data["UA"]) + f" FraiseMoe/{APP_VERSION}"
GAME_INFO = app_data["game_info"] GAME_INFO = app_data["game_info"]
BLOCK_SIZE = 67108864 BLOCK_SIZE = 67108864
HASH_SIZE = 134217728 HASH_SIZE = 134217728