Skip to content

Commit

Permalink
v1.2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed Aug 23, 2022
1 parent 6fdf625 commit 8bbaabe
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 26 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.12
v1.2.13
28 changes: 6 additions & 22 deletions ci/version.info.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,11 @@
v1.2.12

- [x] 修复收藏夹

v1.2.11
计划中

- [x] TG群炸了, 换成新的, 在这里通知一下
- [x] 更新发电功能, 点击小闪电点我发过电, 不捐助可以发电到8月
- [x] 安卓的导出不了文件请从Download文件夹内, 新建一个文件夹导出, 导出完看不见请下载X-plore文件管理器查看, Android12权限还未能完全适配
- [ ] 收藏夹分类

v1.2.10
v1.2.13

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

v1.2.9

- [x] 多线程下载 下载速度极大提高
- [x] 快捷搜索优化 解决输入法闪烁

v1.2.8
v1.2.12

- [x] Apple aarch64 系统原生适配
- [x] 导入导出
- [x] 跳页
- [x] 发电
- [x] 下载状态显示
- [x] 数据库优化
- [x] 修复收藏夹
11 changes: 11 additions & 0 deletions lib/screens/about_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ class _AboutState extends State<AboutScreen> {
const Divider(),
androidDisplayModeSetting(),
const Divider(),
_buildIssues(),
const Divider(),
],
),
);
Expand Down Expand Up @@ -143,4 +145,13 @@ class _AboutState extends State<AboutScreen> {
child: SelectableText(info ?? ""),
);
}

Widget _buildIssues() {
return ListTile(
title: const Text("意见反馈"),
onTap: () {
openUrl("https://github.com/niuhuan/jasmine/issues/");
},
);
}
}
37 changes: 35 additions & 2 deletions lib/screens/user_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ class _UserScreenState extends State<UserScreen>
const Divider(),
_buildComments(),
const Divider(),
_buildFdT(),
const Divider(),
_buildAboutT(),
const Divider(),
Container(height: 30),
],
),
Expand Down Expand Up @@ -235,8 +239,37 @@ class _UserScreenState extends State<UserScreen>
));
},
icon: const VersionBadged(
child: Padding(
padding: EdgeInsets.all(1), child: Icon(Icons.info_outlined))),
child: Padding(
padding: EdgeInsets.all(1), child: Icon(Icons.info_outlined)),
),
);
}

Widget _buildFdT() {
return ListTile(
title: const Text("发电"),
onTap: () {
Navigator.of(context).push(MaterialPageRoute(
builder: (BuildContext context) {
return const ProScreen();
},
));
},
);
}

Widget _buildAboutT() {
return ListTile(
title: const VersionBadged(
child: Text("关于"),
),
onTap: () {
Navigator.of(context).push(MaterialPageRoute(
builder: (BuildContext context) {
return const AboutScreen();
},
));
},
);
}
}
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: jasmine comic browser

publish_to: 'none'

version: 1.0.0+1
version: 1.2.13+2

environment:
sdk: ">=2.15.1 <3.0.0"
Expand Down

0 comments on commit 8bbaabe

Please sign in to comment.