Skip to content

Commit

Permalink
v0023
Browse files Browse the repository at this point in the history
日常,更新后总是要修复一下
  • Loading branch information
user1121114685 committed Jun 12, 2022
1 parent 2a46807 commit 2b01659
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Future main() async {
// 上面两个必须是同一类型....
// E:\Flutter_project\wallpaper_engine_workshop_downloader\windows\runner\main.cpp 改名字

String VerSion = "V022";
String VerSion = "V023";
// List LogText = ["版本号:" + VerSion];
/// 第一步 定义 ValueNotifier
List<String> LogText = ["版本号:" + VerSion];
Expand Down Expand Up @@ -414,6 +414,9 @@ Future toDownItem(String downfileid) async {
if (ids.isNotEmpty && i_down_num != ids.length - 1) {
i_down_num++;
toDownItem(ids[i_down_num]);
} else {
ids = [];
i_down_num = 0;
}

// 准备做 自动打开 感觉没必要 就删了
Expand Down Expand Up @@ -441,9 +444,8 @@ Future multiDownFile() async {
continue;
}

String fileid = m[0]!;
ids.add(fileid);
print(fileid);
ids.add(m[0]!);
print(m[0]!);
}

toDownItem(ids[i_down_num]);
Expand Down

0 comments on commit 2b01659

Please sign in to comment.