Skip to content

Commit

Permalink
update: v1.6.2;
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoneri committed Dec 8, 2024
1 parent ea752ad commit dcecd9a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion GUI/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion GUI/uic/ui_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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、拷贝漫画"))
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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域名重定向

Expand Down
2 changes: 1 addition & 1 deletion assets/res/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class GUI:
DESC1 = "1、首次使用请查阅 <code>CGS-使用说明</code> ,内有配置/GUI视频使用指南等说明"
DESC2 = "2、在使用说明下方有问答记录 <code>Q & A</code>,使用遇阻时可以先查阅看能否解决疑惑 "
DESC_ELSE = "若有其他问题/功能建议等到群反映/提issue"
DESC_NEW = "☆ 1.6.1 版本新增读剪贴板功能,相关细则查看`使用说明`的更新部分"
DESC_NEW = "☆ 1.6.2 修复优化多处,相关细则查看`使用说明`的更新部分 或 最新release说明"

BrowserWindow_ensure_warning = "需要返回选择页,并确保有选择的情况下使用"

Expand Down
4 changes: 2 additions & 2 deletions deploy/packer.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
### 🎁 Features
+ 新增读剪贴板功能(d3c1b690de50a5bb5ee2a1491f5dd71b966d9b75) , closes #20
> 此`1.6.1`版本并没进行环境更新或大bug,运行`CGS-更新`即可(即使下载这release的绿色包也是
> 升级至v1.6.2需要运行CGS-更新(即使下载这release下的绿色包也要更新
<details>
<summary>开箱即用说明(点击展开)</summary>
Expand Down Expand Up @@ -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():
Expand Down

0 comments on commit dcecd9a

Please sign in to comment.