2021-12-27 05:53:39 +00:00
|
|
|
using System;
|
2021-12-28 06:11:39 +00:00
|
|
|
using Wabbajack.Paths;
|
2021-12-27 05:53:39 +00:00
|
|
|
|
2021-12-30 00:15:37 +00:00
|
|
|
namespace Wabbajack;
|
2021-12-26 22:32:36 +00:00
|
|
|
|
|
|
|
public static class Consts
|
|
|
|
{
|
|
|
|
public static string AppName = "Wabbajack";
|
2021-12-27 05:53:39 +00:00
|
|
|
public static Uri WabbajackBuildServerUri => new("https://build.wabbajack.org");
|
2021-12-28 00:24:53 +00:00
|
|
|
public static Version CurrentMinimumWabbajackVersion { get; set; } = Version.Parse("2.3.0.0");
|
2021-12-28 20:13:00 +00:00
|
|
|
public static bool UseNetworkWorkaroundMode { get; set; } = false;
|
|
|
|
|
|
|
|
public static byte SettingsVersion = 0;
|
|
|
|
|
2021-12-28 06:11:39 +00:00
|
|
|
public static RelativePath NativeSettingsJson = "native_settings.json".ToRelativePath();
|
2021-12-26 22:32:36 +00:00
|
|
|
}
|