修改配置方法

This commit is contained in:
DLmaster
2024-12-14 13:41:15 +08:00
parent 8487195512
commit 05a063b001
3 changed files with 164 additions and 151 deletions

View File

@@ -152,6 +152,10 @@ class MaaRunner(QtCore.QThread):
run_book = [False for _ in range(2)] run_book = [False for _ in range(2)]
mode_book = ["日常代理_剿灭", "日常代理_日常"] mode_book = ["日常代理_剿灭", "日常代理_日常"]
# 简洁模式用户默认开启日常代理
if self.data[index][15] == "simple":
self.data[index][9] = "y"
# 尝试次数循环 # 尝试次数循环
for i in range(self.num): for i in range(self.num):
@@ -164,8 +168,8 @@ class MaaRunner(QtCore.QThread):
if self.isInterruptionRequested(): if self.isInterruptionRequested():
break break
if j == 0 and self.data[index][10] == "n": if self.data[index][10 - j] == "n":
run_book[0] = True run_book[j] = True
continue continue
if run_book[j]: if run_book[j]:
continue continue
@@ -250,7 +254,10 @@ class MaaRunner(QtCore.QThread):
"\n".join([self.data[_][0] for _ in error_index]), "\n".join([self.data[_][0] for _ in error_index]),
"检测到MAA进程完成代理任务\n正在等待相关程序结束\n请等待10s", "检测到MAA进程完成代理任务\n正在等待相关程序结束\n请等待10s",
) )
time.sleep(10) for _ in range(10):
if self.isInterruptionRequested():
break
time.sleep(1)
break break
elif result == "Wait": elif result == "Wait":
# 检测时间间隔 # 检测时间间隔
@@ -279,8 +286,10 @@ class MaaRunner(QtCore.QThread):
f"{self.data[index][0].replace("_", " ")}{mode_book[j][5:7]}出现异常", f"{self.data[index][0].replace("_", " ")}{mode_book[j][5:7]}出现异常",
1, 1,
) )
if not self.isInterruptionRequested(): for _ in range(10):
time.sleep(10) if self.isInterruptionRequested():
break
time.sleep(1)
break break
# 成功完成代理的用户修改相关参数 # 成功完成代理的用户修改相关参数
@@ -403,8 +412,10 @@ class MaaRunner(QtCore.QThread):
) )
killprocess.wait() killprocess.wait()
if_strat_app = True if_strat_app = True
if not self.isInterruptionRequested(): for _ in range(10):
time.sleep(10) if self.isInterruptionRequested():
break
time.sleep(1)
break break
# 登录成功,结束循环 # 登录成功,结束循环
@@ -611,12 +622,19 @@ class MaaRunner(QtCore.QThread):
# 预导入MAA配置文件 # 预导入MAA配置文件
if mode == "设置MAA_用户": if mode == "设置MAA_用户":
set_book1 = ["simple", "beta"] set_book = ["simple", "beta"]
set_book2 = ["routine", "annihilation"] if os.path.exists(
shutil.copy( f"{self.json_path}/{set_book[self.get_json_path[0]]}/{self.get_json_path[1]}/{self.get_json_path[2]}/gui.json"
f"{self.json_path}/{set_book1[self.get_json_path[0]]}/{self.get_json_path[1]}/{set_book2[self.get_json_path[2]]}/gui.json", ):
self.set_path, shutil.copy(
) f"{self.json_path}/{set_book[self.get_json_path[0]]}/{self.get_json_path[1]}/{self.get_json_path[2]}/gui.json",
self.set_path,
)
else:
shutil.copy(
f"{self.json_path}/Default/gui.json",
self.set_path,
)
elif (mode == "设置MAA_全局") or ( elif (mode == "设置MAA_全局") or (
("日常代理" in mode or "人工排查" in mode) ("日常代理" in mode or "人工排查" in mode)
and self.data[index][15] == "simple" and self.data[index][15] == "simple"
@@ -1042,7 +1060,7 @@ class Main(QWidget):
"game", "game",
"game_1", "game_1",
"game_2", "game_2",
"routines", "routine",
"annihilation", "annihilation",
"infrastructure", "infrastructure",
"password", "password",
@@ -1133,9 +1151,6 @@ class Main(QWidget):
self.user_switch = self.ui.findChild(QPushButton, "pushButton_switch") self.user_switch = self.ui.findChild(QPushButton, "pushButton_switch")
self.user_switch.clicked.connect(self.switch_user) self.user_switch.clicked.connect(self.switch_user)
self.user_changeset = self.ui.findChild(QPushButton, "pushButton_changeset")
self.user_changeset.clicked.connect(self.change_user_set)
self.read_PASSWORD = self.ui.findChild(QPushButton, "pushButton_password") self.read_PASSWORD = self.ui.findChild(QPushButton, "pushButton_password")
self.read_PASSWORD.clicked.connect(lambda: self.read("key")) self.read_PASSWORD.clicked.connect(lambda: self.read("key"))
@@ -1355,10 +1370,10 @@ class Main(QWidget):
db = sqlite3.connect(self.database_path) db = sqlite3.connect(self.database_path)
cur = db.cursor() cur = db.cursor()
cur.execute( cur.execute(
"CREATE TABLE adminx(admin text,id text,server text,day int,status text,last date,game text,game_1 text,game_2 text,routines text,annihilation text,infrastructure text,password byte,notes text,numb int,mode text,uid int)" "CREATE TABLE adminx(admin text,id text,server text,day int,status text,last date,game text,game_1 text,game_2 text,routine text,annihilation text,infrastructure text,password byte,notes text,numb int,mode text,uid int)"
) )
cur.execute("CREATE TABLE version(v text)") cur.execute("CREATE TABLE version(v text)")
cur.execute("INSERT INTO version VALUES(?)", ("v1.2",)) cur.execute("INSERT INTO version VALUES(?)", ("v1.3",))
db.commit() db.commit()
cur.close() cur.close()
db.close() db.close()
@@ -1399,8 +1414,8 @@ class Main(QWidget):
data[i][13], # 16 - - data[i][13], # 16 - -
), ),
) )
self.get_maa_config([0, data[i][13], 0]) self.get_maa_config([0, data[i][13], "routine"])
self.get_maa_config([0, data[i][13], 1]) self.get_maa_config([0, data[i][13], "annihilation"])
cur.execute("DELETE FROM version WHERE v = ?", ("v1.0",)) cur.execute("DELETE FROM version WHERE v = ?", ("v1.0",))
cur.execute("INSERT INTO version VALUES(?)", ("v1.1",)) cur.execute("INSERT INTO version VALUES(?)", ("v1.1",))
db.commit() db.commit()
@@ -1419,6 +1434,12 @@ class Main(QWidget):
cur.execute("DELETE FROM version WHERE v = ?", ("v1.1",)) cur.execute("DELETE FROM version WHERE v = ?", ("v1.1",))
cur.execute("INSERT INTO version VALUES(?)", ("v1.2",)) cur.execute("INSERT INTO version VALUES(?)", ("v1.2",))
db.commit() db.commit()
# v1.2-->v1.3
if version[0][0] == "v1.2":
cur.execute("ALTER TABLE adminx RENAME COLUMN routines TO routine")
cur.execute("DELETE FROM version WHERE v = ?", ("v1.2",))
cur.execute("INSERT INTO version VALUES(?)", ("v1.3",))
db.commit()
cur.close() cur.close()
db.close() db.close()
@@ -1635,7 +1656,10 @@ class Main(QWidget):
) )
elif j in [4, 10, 11]: elif j in [4, 10, 11]:
item = QComboBox() item = QComboBox()
item.addItems(["启用", "禁用"]) if j in [4, 10]:
item.addItems(["启用", "禁用"])
elif j == 11:
item.addItems(["启用", "禁用", "更改配置文件"])
if value == "y": if value == "y":
item.setCurrentIndex(0) item.setCurrentIndex(0)
elif value == "n": elif value == "n":
@@ -1698,7 +1722,10 @@ class Main(QWidget):
# 生成表格组件 # 生成表格组件
if j in [4, 9, 10]: if j in [4, 9, 10]:
item = QComboBox() item = QComboBox()
item.addItems(["启用", "禁用"]) if j == 4:
item.addItems(["启用", "禁用"])
elif j in [9, 10]:
item.addItems(["启用", "禁用", "修改MAA配置"])
if value == "y": if value == "y":
item.setCurrentIndex(0) item.setCurrentIndex(0)
elif value == "n": elif value == "n":
@@ -1828,14 +1855,7 @@ class Main(QWidget):
def add_user(self): def add_user(self):
"""添加一位新用户""" """添加一位新用户"""
if not self.check_maa_path(): # 判断是否已设置管理密钥
QMessageBox.critical(
self.ui,
"错误",
"请先正确配置MAA路径再执行添加用户操作",
)
return None
if not os.path.exists(self.key_path): if not os.path.exists(self.key_path):
QMessageBox.critical( QMessageBox.critical(
self.ui, self.ui,
@@ -1845,34 +1865,18 @@ class Main(QWidget):
return None return None
# 插入预设用户数据 # 插入预设用户数据
if self.user_set.currentIndex() == 0: set_book = [
self.cur.execute( ["simple", self.user_list_simple.rowCount()],
"INSERT INTO adminx VALUES('新用户','手机号码(官服)/B站IDB服','Official',-1,'y','2000-01-01','1-7','-','-','y','y','n',?,'',0,'simple',?)", ["beta", self.user_list_beta.rowCount()],
( ]
self.encryptx("未设置"), self.cur.execute(
self.user_list_simple.rowCount(), "INSERT INTO adminx VALUES('新用户','手机号码(官服)/B站IDB服','Official',-1,'y','2000-01-01','1-7','-','-','n','n','n',?,'',0,?,?)",
), (
) self.encryptx("未设置"),
self.get_maa_config( set_book[self.user_set.currentIndex()][0],
[self.user_set.currentIndex(), self.user_list_simple.rowCount(), 0] set_book[self.user_set.currentIndex()][1],
) ),
self.get_maa_config( )
[self.user_set.currentIndex(), self.user_list_simple.rowCount(), 1]
)
elif self.user_set.currentIndex() == 1:
self.cur.execute(
"INSERT INTO adminx VALUES('新用户','手机号码(官服)/B站IDB服','Official',-1,'y','2000-01-01','1-7','-','-','y','y','-',?,'',0,'beta',?)",
(
self.encryptx("未设置"),
self.user_list_beta.rowCount(),
),
)
self.get_maa_config(
[self.user_set.currentIndex(), self.user_list_beta.rowCount(), 0]
)
self.get_maa_config(
[self.user_set.currentIndex(), self.user_list_beta.rowCount(), 1]
)
self.db.commit() self.db.commit()
# 同步新用户至GUI # 同步新用户至GUI
@@ -1916,9 +1920,12 @@ class Main(QWidget):
), ),
) )
self.db.commit() self.db.commit()
shutil.rmtree( if os.path.exists(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}" f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}"
) ):
shutil.rmtree(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}"
)
# 后续用户补位 # 后续用户补位
if self.user_set.currentIndex() == 0: if self.user_set.currentIndex() == 0:
current_numb = self.user_list_simple.rowCount() current_numb = self.user_list_simple.rowCount()
@@ -1930,10 +1937,13 @@ class Main(QWidget):
(i - 1, self.user_mode_list[self.user_set.currentIndex()], i), (i - 1, self.user_mode_list[self.user_set.currentIndex()], i),
) )
self.db.commit() self.db.commit()
os.rename( if os.path.exists(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i}", f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i}"
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i - 1}", ):
) os.rename(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i}",
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i - 1}",
)
# 同步最终结果至GUI # 同步最终结果至GUI
self.update_user_info("normal") self.update_user_info("normal")
@@ -1988,10 +1998,13 @@ class Main(QWidget):
), ),
) )
self.db.commit() self.db.commit()
shutil.move( if os.path.exists(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}", f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}"
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[1 - self.user_set.currentIndex()]}/{other_numb}", ):
) shutil.move(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}",
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[1 - self.user_set.currentIndex()]}/{other_numb}",
)
# 后续用户补位 # 后续用户补位
for i in range(row + 1, current_numb): for i in range(row + 1, current_numb):
self.cur.execute( self.cur.execute(
@@ -1999,40 +2012,18 @@ class Main(QWidget):
(i - 1, self.user_mode_list[self.user_set.currentIndex()], i), (i - 1, self.user_mode_list[self.user_set.currentIndex()], i),
) )
self.db.commit() self.db.commit()
os.rename( if os.path.exists(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i}", f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i}"
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i - 1}", ):
) os.rename(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i}",
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{i - 1}",
)
self.update_user_info("normal") self.update_user_info("normal")
def change_user_set(self):
"""执行用户配置列表的进一步配置"""
if self.user_set.currentIndex() == 0:
if self.user_list_simple.currentColumn() in [10]:
self.get_maa_config([0, self.user_list_simple.currentRow(), 2])
else:
QMessageBox.critical(self.ui, "错误", "该项目无法进一步配置")
elif self.user_set.currentIndex() == 1:
if self.user_list_beta.currentColumn() in [4, 5]:
self.MaaRunner.get_json_path = [
self.user_set.currentIndex(),
self.user_list_beta.currentRow(),
self.user_list_beta.currentColumn() - 4,
]
self.maa_starter("设置MAA_用户")
else:
QMessageBox.critical(self.ui, "错误", "该项目无法进一步配置")
def get_maa_config(self, info): def get_maa_config(self, info):
"""获取MAA配置文件""" """获取MAA配置文件"""
set_book1 = ["simple", "beta"]
set_book2 = ["routine", "annihilation"]
# 获取全局MAA配置文件 # 获取全局MAA配置文件
if info == ["Default"]: if info == ["Default"]:
os.makedirs( os.makedirs(
@@ -2044,16 +2035,16 @@ class Main(QWidget):
f"{self.app_path}/data/MAAconfig/Default", f"{self.app_path}/data/MAAconfig/Default",
) )
# 获取基建配置文件 # 获取基建配置文件
elif info[2] == 2: elif info[2] == "infrastructure":
infrastructure_path = self.read("file_path_infrastructure") infrastructure_path = self.read("file_path_infrastructure")
if infrastructure_path: if infrastructure_path:
os.makedirs( os.makedirs(
f"{self.app_path}/data/MAAconfig/{set_book1[info[0]]}/{info[1]}/infrastructure", f"{self.app_path}/data/MAAconfig/{self.user_mode_list[info[0]]}/{info[1]}/infrastructure",
exist_ok=True, exist_ok=True,
) )
shutil.copy( shutil.copy(
infrastructure_path, infrastructure_path,
f"{self.app_path}/data/MAAconfig/{set_book1[info[0]]}/{info[1]}/infrastructure/infrastructure.json", f"{self.app_path}/data/MAAconfig/{self.user_mode_list[info[0]]}/{info[1]}/infrastructure/infrastructure.json",
) )
return True return True
else: else:
@@ -2064,14 +2055,14 @@ class Main(QWidget):
) )
return False return False
# 获取高级用户MAA配置文件 # 获取高级用户MAA配置文件
else: elif info[2] in ["routine", "annihilation"]:
os.makedirs( os.makedirs(
f"{self.app_path}/data/MAAconfig/{set_book1[info[0]]}/{info[1]}/{set_book2[info[2]]}", f"{self.app_path}/data/MAAconfig/{self.user_mode_list[info[0]]}/{info[1]}/{info[2]}",
exist_ok=True, exist_ok=True,
) )
shutil.copy( shutil.copy(
f"{self.config["Default"]["MaaSet.path"]}/config/gui.json", f"{self.config["Default"]["MaaSet.path"]}/config/gui.json",
f"{self.app_path}/data/MAAconfig/{set_book1[info[0]]}/{info[1]}/{set_book2[info[2]]}", f"{self.app_path}/data/MAAconfig/{self.user_mode_list[info[0]]}/{info[1]}/{info[2]}",
) )
def change_user_Item(self, item, mode): def change_user_Item(self, item, mode):
@@ -2140,19 +2131,45 @@ class Main(QWidget):
if not self.if_update_database: if not self.if_update_database:
return None return None
# 初次开启自定义基建时选择配置文件 # 初次开启自定义基建或选择修改配置文件时选择配置文件
if ( if (
self.user_set.currentIndex() == 0 self.user_set.currentIndex() == 0
and column == "infrastructure" and column == "infrastructure"
and index == 0 and (
and not os.path.exists( index == 2
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}/infrastructure/infrastructure.json", or (
index == 0
and not os.path.exists(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}/infrastructure/infrastructure.json",
)
)
) )
): ):
result = self.get_maa_config([0, row, 2]) result = self.get_maa_config([0, row, "infrastructure"])
if not result: if index == 0 and not result:
index = 1 index = 1
# 初次开启自定义MAA配置或选择修改MAA配置时调起MAA配置任务
if (
self.user_set.currentIndex() == 1
and column in ["routine", "annihilation"]
and (
index == 2
or (
index == 0
and not os.path.exists(
f"{self.app_path}/data/MAAconfig/{self.user_mode_list[self.user_set.currentIndex()]}/{row}/{column}/gui.json",
)
)
)
):
self.MaaRunner.get_json_path = [
self.user_set.currentIndex(),
row,
column,
]
self.maa_starter("设置MAA_用户")
# 服务器 # 服务器
if self.user_set.currentIndex() == 0 and column == "server": if self.user_set.currentIndex() == 0 and column == "server":
server_list = ["Official", "Bilibili"] server_list = ["Official", "Bilibili"]
@@ -2160,8 +2177,8 @@ class Main(QWidget):
f"UPDATE adminx SET server = ? WHERE mode = 'simple' AND uid = ?", f"UPDATE adminx SET server = ? WHERE mode = 'simple' AND uid = ?",
(server_list[index], row), (server_list[index], row),
) )
# 其它 # 其它(启用/禁用)
else: elif index in [0, 1]:
index_list = ["y", "n"] index_list = ["y", "n"]
self.cur.execute( self.cur.execute(
f"UPDATE adminx SET {column} = ? WHERE mode = ? AND uid = ?", f"UPDATE adminx SET {column} = ? WHERE mode = ? AND uid = ?",
@@ -2208,17 +2225,25 @@ class Main(QWidget):
if not self.if_update_config: if not self.if_update_config:
return None return None
# 写入并验证MAA路径 # 验证MAA路径
self.config["Default"]["MaaSet.path"] = self.maa_path.text().replace("\\", "/") if self.config["Default"]["MaaSet.path"] != self.maa_path.text().replace(
if not self.check_maa_path(): "\\", "/"
self.config["Default"]["MaaSet.path"] = "" ):
with open(self.config_path, "w", encoding="utf-8") as f: if os.path.exists(
json.dump(self.config, f, indent=4) f"{self.maa_path.text().replace("\\", "/")}/MAA.exe"
self.update_config() ) and os.path.exists(
QMessageBox.critical( f"{self.maa_path.text().replace("\\", "/")}/config/gui.json"
self.ui, "错误", "未找到MAA.exe或MAA配置文件请重新设置MAA路径" ):
) self.config["Default"]["MaaSet.path"] = self.maa_path.text().replace(
return None "\\", "/"
)
self.get_maa_config(["Default"])
else:
QMessageBox.critical(
self.ui,
"错误",
"该路径下未找到MAA.exe或MAA配置文件请重新设置MAA路径",
)
self.config["Default"]["SelfSet.MainIndex"] = self.main_tab.currentIndex() self.config["Default"]["SelfSet.MainIndex"] = self.main_tab.currentIndex()
@@ -2325,19 +2350,6 @@ class Main(QWidget):
) )
return file_path return file_path
def check_maa_path(self):
"""检查MAA路径是否可用"""
if os.path.exists(
f"{self.config["Default"]["MaaSet.path"]}/MAA.exe"
) and os.path.exists(
f"{self.config["Default"]["MaaSet.path"]}/config/gui.json"
):
self.get_maa_config(["Default"])
return True
else:
return False
def set_system(self): def set_system(self):
"""设置系统相关配置""" """设置系统相关配置"""
@@ -2416,7 +2428,12 @@ class Main(QWidget):
"""启动MaaRunner线程运行任务""" """启动MaaRunner线程运行任务"""
# 检查MAA路径是否可用 # 检查MAA路径是否可用
if not self.check_maa_path(): if not (
os.path.exists(f"{self.config["Default"]["MaaSet.path"]}/MAA.exe")
and os.path.exists(
f"{self.config["Default"]["MaaSet.path"]}/config/gui.json"
)
):
QMessageBox.critical(self.ui, "错误", "您还未正确配置MAA路径") QMessageBox.critical(self.ui, "错误", "您还未正确配置MAA路径")
return None return None
@@ -2449,9 +2466,9 @@ class Main(QWidget):
self.user_add.setEnabled(False) self.user_add.setEnabled(False)
self.user_del.setEnabled(False) self.user_del.setEnabled(False)
self.user_switch.setEnabled(False) self.user_switch.setEnabled(False)
self.user_changeset.setEnabled(False)
self.set_maa.setEnabled(False) self.set_maa.setEnabled(False)
# self.update_user_info("read_only")
self.update_user_info("read_only")
if mode == "日常代理_开始": if mode == "日常代理_开始":
self.MaaRunner.accomplish.connect( self.MaaRunner.accomplish.connect(
@@ -2489,9 +2506,9 @@ class Main(QWidget):
self.user_add.setEnabled(True) self.user_add.setEnabled(True)
self.user_del.setEnabled(True) self.user_del.setEnabled(True)
self.user_switch.setEnabled(True) self.user_switch.setEnabled(True)
self.user_changeset.setEnabled(True)
self.set_maa.setEnabled(True) self.set_maa.setEnabled(True)
# self.update_user_info("editable")
self.update_user_info("editable")
if mode == "日常代理_结束": if mode == "日常代理_结束":
@@ -2619,6 +2636,7 @@ class Main(QWidget):
"""使用官方专用邮箱推送邮件通知""" """使用官方专用邮箱推送邮件通知"""
# 声明此邮箱为AUTO_MAA项目组资产未经授权不得私自使用 # 声明此邮箱为AUTO_MAA项目组资产未经授权不得私自使用
# 注意此声明注释只有使用者更换发信邮箱时才能删除本条规则优先级高于GPLv3
# 第三方 SMTP 服务配置 # 第三方 SMTP 服务配置
mail_host = "smtp.163.com" # 设置服务器 mail_host = "smtp.163.com" # 设置服务器

View File

@@ -59,13 +59,6 @@
</property> </property>
</widget> </widget>
</item> </item>
<item>
<widget class="QPushButton" name="pushButton_changeset">
<property name="text">
<string>修改配置</string>
</property>
</widget>
</item>
<item> <item>
<spacer name="horizontalSpacer"> <spacer name="horizontalSpacer">
<property name="orientation"> <property name="orientation">
@@ -1378,6 +1371,8 @@ li.checked::marker { content: &quot;\2612&quot;; }
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt; 官方QQ交流群957750551&lt;/p&gt; &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt; 官方QQ交流群957750551&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt; 友情推荐项目:&lt;a href=&quot;https://git.zhaozuohong.vip/mower-ng&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#004194;&quot;&gt;zhaozuohong/mower-ng&lt;/span&gt;&lt;/a&gt; 、 &lt;a href=&quot;https://github.com/AegirTech/ArkLights&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#004194;&quot;&gt;AegirTech/ArkLights&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;right&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;DLmaster&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> &lt;p align=&quot;right&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;DLmaster&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
</widget> </widget>
@@ -1385,7 +1380,7 @@ li.checked::marker { content: &quot;\2612&quot;; }
<item> <item>
<widget class="QLabel" name="label_notice"> <widget class="QLabel" name="label_notice">
<property name="text"> <property name="text">
<string>注意:在用户管理页与设置页执行的所有更改,不会对正在执行的任务生效。</string> <string>注意:在设置页执行的所有更改,不会对正在执行的任务生效;正在执行任务时,用户管理页无法编辑。</string>
</property> </property>
</widget> </widget>
</item> </item>

View File

@@ -1,7 +1,7 @@
{ {
"main_version": "4.1.3.4", "main_version": "4.1.3.5",
"main_download_url": "https://ghp.ci/https://github.com/DLmaster361/AUTO_MAA/releases/download/v4.1.3_beta/AUTO_MAA_v4.1.3_beta.zip", "main_download_url": "https://ghp.ci/https://github.com/DLmaster361/AUTO_MAA/releases/download/v4.1.3_beta/AUTO_MAA_v4.1.3_beta.zip",
"updater_version": "1.0.5.0", "updater_version": "1.0.5.0",
"updater_download_url": "https://ghp.ci/https://github.com/DLmaster361/AUTO_MAA/releases/download/v4.1.3_beta/Updater_v1.0.5.zip", "updater_download_url": "https://ghp.ci/https://github.com/DLmaster361/AUTO_MAA/releases/download/v4.1.3_beta/Updater_v1.0.5.zip",
"announcement": "\n## 新增功能\n- 添加托盘中止当前任务选项\n## 修复BUG\n- 修复深色模式下UI异常 #10\n## 程序优化\n- MainTimer逻辑实现优化" "announcement": "\n# 测试版本遇BUG速速上报谢谢~\n## 新增功能\n- 添加托盘中止当前任务选项\n## 修复BUG\n- 修复深色模式下UI异常 #10\n## 程序优化\n- MainTimer逻辑实现优化\n- 修改配置方法优化\n- 代理逻辑优化"
} }