Skip to content

Commit

Permalink
Bump 1.7.0+544
Browse files Browse the repository at this point in the history
  • Loading branch information
3003h committed Oct 29, 2024
1 parent e6b3202 commit 7eb48bb
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
17 changes: 17 additions & 0 deletions changelog/v1.7.0+544.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## ✨ 功能

- 更新支持新的详情页缩略图解析 (感谢 @Indekkusu545)

## 🐞 Bug 修复

- 修复 MySetting Web设置页导航栏按钮无效

---

## ✨ Features

- Update to support new thumbnail parsing on the detail page. (Thanks to @Indekkusu545)

## 🐞 Bug Fixes

- Fix the invalid navigation button on the MySetting Web setting page
3 changes: 1 addition & 2 deletions lib/pages/setting/webview/eh_tagset_edit_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import 'package:flutter/cupertino.dart';
import 'package:get/get.dart';

class EhTagSetEditDialog extends StatelessWidget {
const EhTagSetEditDialog({Key? key, required this.text, required this.title})
: super(key: key);
const EhTagSetEditDialog({super.key, required this.text, required this.title});
final String title;
final String text;

Expand Down
6 changes: 3 additions & 3 deletions lib/pages/setting/webview/mytags_in.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class InWebMyTags extends StatelessWidget {

@override
Widget build(BuildContext context) {
InAppWebViewController? _controller;
InAppWebViewController? inAppWebViewController;

final CupertinoPageScaffold cpf = CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
Expand All @@ -30,7 +30,7 @@ class InWebMyTags extends StatelessWidget {
size: 22,
),
onPressed: () async {
_controller?.reload();
inAppWebViewController?.reload();
},
),
],
Expand All @@ -41,7 +41,7 @@ class InWebMyTags extends StatelessWidget {
initialUrlRequest:
URLRequest(url: WebUri('${Api.getBaseUrl()}/mytags')),
onWebViewCreated: (InAppWebViewController controller) {
_controller = controller;
inAppWebViewController = controller;
},
initialSettings: inAppWebViewSettings,
shouldOverrideUrlLoading: (controller, navigationAction) async {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: eros_fe
description: An unofficial e-hentai app

publish_to: 'none'
version: 1.6.3+543
version: 1.7.0+544

environment:
sdk: '>=3.0.0 <4.0.0'
Expand Down

0 comments on commit 7eb48bb

Please sign in to comment.