Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed May 22, 2023
1 parent a218d00 commit e2ff23f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ wax
[![downloads](https://img.shields.io/github/downloads/niuhuan/wax/total)](https://github.com/niuhuan/wax/releases)

- 美观易用且无广告的漫画客户端, 能运行在Windows/MacOS/Linux/Android/IOS中。
- 此APP内容存在限制级别内容(例如 露骨/血腥/暴力/吸毒),18岁以下的用户需在监护人陪同下使用,并请您在遵守当地法律法规。
- 您的star和issue是对开发者的莫大鼓励, 可以源仓库下载最新的源码/安装包, 表示支持/提出建议。
- 源仓库地址 [https://github.com/niuhuan/wax](https://github.com/niuhuan/wax)


- 此APP只是个客户端,不包含任何内容。需要您自行寻找漫画源使用。
- 部分漫画源内容存在限制级别内容(例如 露骨/血腥/暴力/吸毒),18岁以下的用户需在监护人陪同下使用,并请您在遵守当地法律法规。
- 您的star是对开发者的莫大鼓励,源仓库地址 [https://github.com/niuhuan/wax](https://github.com/niuhuan/wax)

## 技术架构

Expand Down
2 changes: 1 addition & 1 deletion ci/version.code.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.12
v1.1.13
2 changes: 1 addition & 1 deletion ci/version.info.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
v1.1.12
v1.1.13
- [x] 🚀FF
5 changes: 5 additions & 0 deletions lib/configs/host.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ Future _updateHost(String choose) async {
Future chooseHost(BuildContext context) async {
var choose = await displayTextInputDialog(context, src: host);
if (choose != null) {
// 正则判断是否未网站uri
if (!RegExp(r"^https://[A-Za-z0-9\-_]+(\.[A-Za-z0-9\-_]+)+$").hasMatch(choose)) {
defaultToast(context, "请输入正确的网站地址, 必须以https开头, 结尾不能添加斜线。例如 https://aa.bb.cc");
return;
}
await _updateHost(choose);
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.1.12+12
version: 1.1.13+13

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

0 comments on commit e2ff23f

Please sign in to comment.