Skip to content

Commit

Permalink
v1.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed Jul 14, 2022
1 parent 28c8d6b commit 7af3a40
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/version.code.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.2.9
v1.2.10
4 changes: 4 additions & 0 deletions ci/version.info.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.2.10

- [x] 相对1.2.9只修改了注册地址, 解决注册连接打不开的问题, 如果仍然打不开请尝试科学上网

v1.2.9

- [x] 多线程下载 下载速度极大提高
Expand Down
18 changes: 16 additions & 2 deletions lib/configs/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,22 @@ class _LoginDialogState extends State<_LoginDialog> {
margin: const EdgeInsets.all(10),
child: MaterialButton(
color: Colors.orange.shade700,
onPressed: () {
openUrl("https://jmcomic1.cc/signup");
onPressed: () async {
String? fen = await chooseMapDialog(
context,
values: {
"注册分流1": "https://18comic.vip/signup",
"注册分流2": "https://18comic.org/signup",
"注册分流3": "https://jmcomic.me/signup",
"注册分流4": "https://jmcomic1.me/signup",
"注册分流5": "https://jmcomic.asia/signup",
"注册分流6": "https://jmcomic.city/signup",
},
title: "选择注册分流",
);
if (fen != null) {
openUrl(fen);
}
},
child: Container(
padding: const EdgeInsets.all(10),
Expand Down

0 comments on commit 7af3a40

Please sign in to comment.