Added exe build and tweaked some ui things

This commit is contained in:
Alessandro Autiero
2022-09-19 22:08:29 +02:00
parent 273214ceef
commit 5eea7ae71f
6 changed files with 80 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ import 'package:fluent_ui/fluent_ui.dart';
import 'package:flutter/foundation.dart';
import 'package:url_launcher/url_launcher.dart';
const String _discordLink = "https://discord.gg/rTzBQH3N";
const String _discordLink = "https://discord.gg/NJU4QjxSMF";
class InfoPage extends StatelessWidget {
const InfoPage({Key? key}) : super(key: key);
@@ -31,7 +31,7 @@ class InfoPage extends StatelessWidget {
),
const Expanded(
child: Align(
alignment: Alignment.bottomLeft, child: Text("Version 3.0${kDebugMode ? '-DEBUG' : ''}")))
alignment: Alignment.bottomLeft, child: Text("Version 3.1${kDebugMode ? '-DEBUG' : ''}")))
],
);
}

View File

@@ -15,7 +15,7 @@ const _userAgent =
final _cookieRegex = RegExp("cookie=\"(.*?);");
final _manifestSourceUrl = Uri.parse(
"https://github.com/VastBlast/FortniteManifestArchive/blob/main/README.md");
"https://github.com/VastBlast/FortniteManifestArchive/blob/main/INSTALLATION.md");
final _archiveCookieUrl = Uri.parse("http://allinstaller.xyz/rel");
final _archiveSourceUrl = Uri.parse("http://allinstaller.xyz/rel?i=1");

View File

@@ -8,7 +8,7 @@ import 'package:crypto/crypto.dart';
import 'package:shared_preferences/shared_preferences.dart';
const _rebootUrl =
"https://nightly.link/UWUFN/Universal-Walking-Simulator/workflows/msbuild/master/Release.zip";
"https://nightly.link/Milxnor/Universal-Walking-Simulator/workflows/msbuild/master/Release.zip";
final GetStorage _storage = GetStorage("update");
Future<DateTime?> _getLastUpdate() async {