diff --git a/lib/LauncherInfo.dart b/lib/LauncherInfo.dart index 5911a290..8bea90f8 100644 --- a/lib/LauncherInfo.dart +++ b/lib/LauncherInfo.dart @@ -27,7 +27,7 @@ class LauncherInfo { String type = const String.fromEnvironment('version_type'); VersionTypes VersionType = Updater.getVersionTypeFromString(type); - return VersionTypes.stable; + return VersionType; } static Text getVersionTypeText() { @@ -55,6 +55,6 @@ class LauncherInfo { } static int getVersionCode() { - return 486; + return const int.fromEnvironment('build_id'); } }