diff --git a/GUI/gui.py b/GUI/gui.py
index 1f27d09..2f7fbc1 100644
--- a/GUI/gui.py
+++ b/GUI/gui.py
@@ -343,7 +343,7 @@ def page_turn(_p):
self.pageFrameClickCnt += 1
self.clean_temp_file()
if self.BrowserWindow and self.BrowserWindow.isRetain.isChecked():
- idxes = self.BrowserWindow.output
+ idxes = list(set(self.BrowserWindow.output) | set(transfer_input(self.chooseinput.text()[5:].strip())))
self.input_state.indexes = idxes
self.input_state.pageTurn = _p
self.Q('InputFieldQueue').send(self.input_state)
diff --git a/GUI/uic/ui_mainwindow.py b/GUI/uic/ui_mainwindow.py
index a68fa01..fae0bc2 100644
--- a/GUI/uic/ui_mainwindow.py
+++ b/GUI/uic/ui_mainwindow.py
@@ -476,7 +476,7 @@ def setupUi(self, MainWindow):
def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
- MainWindow.setWindowTitle(_translate("MainWindow", "ComicGUISpider v1.6.1"))
+ MainWindow.setWindowTitle(_translate("MainWindow", "ComicGUISpider v1.6.2"))
self.chooseBox.setToolTip(_translate("MainWindow", "选中网站后看状态栏有输入提示"))
self.chooseBox.setItemText(0, _translate("MainWindow", "点选一个网站"))
self.chooseBox.setItemText(1, _translate("MainWindow", "1、拷贝漫画"))
diff --git a/README.md b/README.md
index f9554c0..88bcb10 100644
--- a/README.md
+++ b/README.md
@@ -54,14 +54,11 @@
## 📢更新
-### V1.6.1 | 2024-12-08
+### V1.6.2 | 2024-11-26 ~ 2024-12-08
+ 增加域名缓存机制(针对最近wnacg发布页的10056
10060错误),每12小时才刷新可用域名,缓存文件为`scripts/__temp/xxx_domain.txt`,可删可改
+ 处理部分用户环境无法显示ui图标相关资源问题(如对比动图/视频仍有ui图标没显示,请反馈)
-
-### V1.6.1 | 2024-11-26
-
+ 修复retry前的预览窗口已选序号残留给retry后的序号选择框叠加(相应QA第五条已改)
+ 处理jm域名重定向
diff --git a/assets/res/__init__.py b/assets/res/__init__.py
index 94c0634..d7199bf 100644
--- a/assets/res/__init__.py
+++ b/assets/res/__init__.py
@@ -12,7 +12,7 @@ class GUI:
DESC1 = "1、首次使用请查阅 CGS-使用说明
,内有配置/GUI视频使用指南等说明"
DESC2 = "2、在使用说明下方有问答记录 Q & A
,使用遇阻时可以先查阅看能否解决疑惑 "
DESC_ELSE = "若有其他问题/功能建议等到群反映/提issue"
- DESC_NEW = "☆ 1.6.1 版本新增读剪贴板功能,相关细则查看`使用说明`的更新部分"
+ DESC_NEW = "☆ 1.6.2 修复优化多处,相关细则查看`使用说明`的更新部分 或 最新release说明"
BrowserWindow_ensure_warning = "需要返回选择页,并确保有选择的情况下使用"
diff --git a/deploy/packer.py b/deploy/packer.py
index 4878f8d..e1e831d 100644
--- a/deploy/packer.py
+++ b/deploy/packer.py
@@ -54,7 +54,7 @@
### 🎁 Features
+ 新增读剪贴板功能(d3c1b690de50a5bb5ee2a1491f5dd71b966d9b75) , closes #20
-> 此`1.6.1`版本并没进行环境更新或大bug,运行`CGS-更新`即可(即使下载这release的绿色包也是)
+> 升级至v1.6.2需要运行CGS-更新(即使下载这release下的绿色包也要更新)
开箱即用说明(点击展开)
@@ -207,7 +207,7 @@ def upload(zip_file):
release.upload_asset(str(path.joinpath(zip_file)), name=zip_file)
# update release
text = release_desc
- release.update_release(name=f"{date_now} - v1.6.1", message=text)
+ release.update_release(name=f"{date_now} - v1.6.2", message=text)
def clean():