Skip to content

Commit e297037

Browse files
committed
chore: 🔖 Release 12.3.4
1 parent 524ca15 commit e297037

8 files changed

Lines changed: 1461 additions & 825 deletions

ComicRead-AdGuard.user.js

Lines changed: 480 additions & 272 deletions
Large diffs are not rendered by default.

ComicRead-jsDelivr.user.js

Lines changed: 480 additions & 272 deletions
Large diffs are not rendered by default.

ComicRead.user.js

Lines changed: 480 additions & 272 deletions
Large diffs are not rendered by default.

ComicReader.umd.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,8 @@ type PropState = {
253253
onHotkeysChange?: (hotkeys: Record<string, string[]>) => void | Promise<void>;
254254
/** 显示图片发生变化时触发的回调 */
255255
onShowImgsChange?: (showImgs: Set<number>, imgList: ComicImg[]) => void | Promise<void>;
256+
/** 每次加载范围改变后触发的回调,返回加载范围中等待 url 的图片的 index */
257+
onWaitUrlImgs?: (indexs: Set<number>, imgList: ComicImg[]) => void;
256258
editButtonList: (list: ToolbarButtonList) => ToolbarButtonList;
257259
editSettingList: (list: SettingList) => SettingList;
258260
};
@@ -410,6 +412,7 @@ declare const initComicReader: {
410412
onOptionChange?: (option: Partial<Option>) => void | Promise<void>;
411413
onHotkeysChange?: (hotkeys: Record<string, string[]>) => void | Promise<void>;
412414
onShowImgsChange?: (showImgs: Set<number>, imgList: components_Manga.ComicImg[]) => void | Promise<void>;
415+
onWaitUrlImgs?: (indexs: Set<number>, imgList: components_Manga.ComicImg[]) => void;
413416
editButtonList: (list: ToolbarButtonList) => ToolbarButtonList;
414417
editSettingList: (list: SettingList) => SettingList;
415418
};
@@ -478,6 +481,7 @@ declare const initComicReader: {
478481
onOptionChange?: (option: Partial<Option>) => void | Promise<void>;
479482
onHotkeysChange?: (hotkeys: Record<string, string[]>) => void | Promise<void>;
480483
onShowImgsChange?: (showImgs: Set<number>, imgList: components_Manga.ComicImg[]) => void | Promise<void>;
484+
onWaitUrlImgs?: (indexs: Set<number>, imgList: components_Manga.ComicImg[]) => void;
481485
editButtonList: (list: ToolbarButtonList) => ToolbarButtonList;
482486
editSettingList: (list: SettingList) => SettingList;
483487
};

ComicReader.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.other/CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
# Changelog
2-
1+
# Changelog
2+
3+
## [12.3.4](https://github.com/hymbz/ComicReadScript/compare/v12.3.3...v12.3.4) (2025-09-27)
4+
5+
### Bug Fixes
6+
7+
* :bug: 修复卷轴模式下网格模式点击跳转失效的 bug ([dc4245c](https://github.com/hymbz/ComicReadScript/commit/dc4245cb398d94a733395d372e953ea4f9c0d3b1)), closes [#290](https://github.com/hymbz/ComicReadScript/issues/290)
8+
* :bug: 修复在 ehentai 上会触发分辨率限制的 bug ([db72138](https://github.com/hymbz/ComicReadScript/commit/db7213881046681f104af2898e089dcaebdfbf57))
9+
310
## [12.3.3](https://github.com/hymbz/ComicReadScript/compare/v12.3.2...v12.3.3) (2025-09-23)
411

512
### Bug Fixes
613

7-
* :bug: 修复并排卷轴模式下使用滚轮调整缩放效果异常的 bug ([3379a32](https://github.com/hymbz/ComicReadScript/commit/3379a3225cb8af5a788a56e5136e7267747174d5))
8-
14+
* :bug: 修复并排卷轴模式下使用滚轮调整缩放效果异常的 bug ([3379a32](https://github.com/hymbz/ComicReadScript/commit/3379a3225cb8af5a788a56e5136e7267747174d5))
15+
916
## [12.3.2](https://github.com/hymbz/ComicReadScript/compare/v12.3.1...v12.3.2) (2025-09-22)
1017

1118
### Bug Fixes
@@ -2072,4 +2079,4 @@
20722079
### 修复
20732080

20742081
- 下载 Bug
2075-
- 上/下一话按钮显示位置错误的 Bug
2082+
- 上/下一话按钮显示位置错误的 Bug

docs/.other/LatestChange.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## [12.3.3](https://github.com/hymbz/ComicReadScript/compare/v12.3.2...v12.3.3) (2025-09-23)
1+
## [12.3.4](https://github.com/hymbz/ComicReadScript/compare/v12.3.3...v12.3.4) (2025-09-27)
22

33
### Bug Fixes
44

5-
* :bug: 修复并排卷轴模式下使用滚轮调整缩放效果异常的 bug ([3379a32](https://github.com/hymbz/ComicReadScript/commit/3379a3225cb8af5a788a56e5136e7267747174d5))
5+
* :bug: 修复卷轴模式下网格模式点击跳转失效的 bug ([dc4245c](https://github.com/hymbz/ComicReadScript/commit/dc4245cb398d94a733395d372e953ea4f9c0d3b1)), closes [#290](https://github.com/hymbz/ComicReadScript/issues/290)
6+
* :bug: 修复在 ehentai 上会触发分辨率限制的 bug ([db72138](https://github.com/hymbz/ComicReadScript/commit/db7213881046681f104af2898e089dcaebdfbf57))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hymbz/comic-read-script",
3-
"version": "12.3.3",
3+
"version": "12.3.4",
44
"description": "为漫画站增加双页阅读、翻译等优化体验的增强功能的油猴脚本",
55
"author": "hymbz",
66
"license": "AGPL-3.0-or-later",

0 commit comments

Comments
 (0)