Skip to content

Commit c28a018

Browse files
committed
chore: 🔖 Release 12.4.1
1 parent e211c63 commit c28a018

8 files changed

Lines changed: 939 additions & 342 deletions

File tree

ComicRead-AdGuard.user.js

Lines changed: 308 additions & 113 deletions
Large diffs are not rendered by default.

ComicRead-jsDelivr.user.js

Lines changed: 306 additions & 110 deletions
Large diffs are not rendered by default.

ComicRead.user.js

Lines changed: 306 additions & 110 deletions
Large diffs are not rendered by default.

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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [12.4.1](https://github.com/hymbz/ComicReadScript/compare/v12.4.0...v12.4.1) (2026-01-23)
4+
5+
### Bug Fixes
6+
7+
* :bug: 修复 ehentai 广告识别失效的 bug ([c56b09f](https://github.com/hymbz/ComicReadScript/commit/c56b09f486b260643e97bfeddb9b87c24e9b517d))
8+
* :bug: 修复 hdoujin 的加载 bug ([e09f1e6](https://github.com/hymbz/ComicReadScript/commit/e09f1e6950e97fcd2fdf7c0c5dadc4c7abb3cc37))
9+
* :bug: 修复 welovemanga 系网站失效的 bug ([e211c63](https://github.com/hymbz/ComicReadScript/commit/e211c63bcae84b2741baf54fb5906505699ca016))
10+
* :bug: 修复绅士漫画改版后失效的 bug ([7fde4de](https://github.com/hymbz/ComicReadScript/commit/7fde4de4f7687fff44b05c35d42f4ee77f6d4d43)), closes [#314](https://github.com/hymbz/ComicReadScript/issues/314) [#315](https://github.com/hymbz/ComicReadScript/issues/315)
11+
312
## [12.4.0](///compare/v12.3.5...v12.4.0) (2025-12-07)
413

514
### Features

docs/.other/LatestChange.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## [12.4.0](///compare/v12.3.5...v12.4.0) (2025-12-07)
1+
## [12.4.1](https://github.com/hymbz/ComicReadScript/compare/v12.4.0...v12.4.1) (2026-01-23)
22

3-
### Features
3+
### Bug Fixes
44

5-
* :sparkles: 增加「跳至上/下一话」快捷键 6d18613
6-
* :sparkles: 支持 hanime1 a8f269e, closes #300
7-
* :sparkles: 支持 hdoujin 0528c2d, closes #301
8-
* :sparkles: 支持 hentaienvy 和 hentaiera abc26b4
5+
* :bug: 修复 ehentai 广告识别失效的 bug ([c56b09f](https://github.com/hymbz/ComicReadScript/commit/c56b09f486b260643e97bfeddb9b87c24e9b517d))
6+
* :bug: 修复 hdoujin 的加载 bug ([e09f1e6](https://github.com/hymbz/ComicReadScript/commit/e09f1e6950e97fcd2fdf7c0c5dadc4c7abb3cc37))
7+
* :bug: 修复 welovemanga 系网站失效的 bug ([e211c63](https://github.com/hymbz/ComicReadScript/commit/e211c63bcae84b2741baf54fb5906505699ca016))
8+
* :bug: 修复绅士漫画改版后失效的 bug ([7fde4de](https://github.com/hymbz/ComicReadScript/commit/7fde4de4f7687fff44b05c35d42f4ee77f6d4d43)), closes [#314](https://github.com/hymbz/ComicReadScript/issues/314) [#315](https://github.com/hymbz/ComicReadScript/issues/315)

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.4.0",
3+
"version": "12.4.1",
44
"description": "为漫画站增加双页阅读、翻译等优化体验的增强功能的油猴脚本",
55
"author": "hymbz",
66
"license": "AGPL-3.0-or-later",

src/components/Manga/components/ComicImg.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ export const ComicImg: Component<_ComicImg & { index: number }> = (img) => {
4545

4646
const styles = createMemo(() => ({
4747
img: {
48-
'grid-area': isAbreastMode() && !store.gridMode ? 'none' : `_${img.index}`,
48+
'grid-area':
49+
isAbreastMode() && !store.gridMode ? 'none' : `_${img.index}`,
4950
'background-color': isEnableBg() ? img.background : undefined,
5051
},
5152
picture: {

0 commit comments

Comments
 (0)