Skip to content

Commit

Permalink
🐛 fix next ep
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed Sep 30, 2024
1 parent 473ceb0 commit c6c00cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ci/version.code.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.22
v0.1.23
3 changes: 3 additions & 0 deletions ci/version.info.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
计划
- [x] 下载? / / 高清画质? / / 通过点击进行上一页下一页?

v0.1.23
- [x] ♻️ 修复下一章不能用的问题

v0.1.22
- [x] ✨ 漫画双页阅读器
- [x] ✨ 设置双页阅读器的方向
Expand Down
10 changes: 5 additions & 5 deletions lib/screens/comic_reader_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -789,11 +789,11 @@ abstract class _ComicReaderState extends State<_ComicReader> {
// 确定分卷
ComicChapter? v;
ComicChapterInfo? c;
for (var v in widget.comic.chapters) {
for (var c in v.data) {
if (c.chapterId == widget.chapter.chapterId) {
v = v;
c = c;
for (var _v in widget.comic.chapters) {
for (var _c in _v.data) {
if (_c.chapterId == widget.chapter.chapterId) {
v = _v;
c = _c;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A comic reader.

publish_to: 'none'

version: 1.0.0+1
version: 0.1.23+1


environment:
Expand Down

0 comments on commit c6c00cd

Please sign in to comment.