2022-03-13 22:47:30 +00:00
|
|
|
using System;
|
|
|
|
using Wabbajack.Paths;
|
|
|
|
using Wabbajack.Paths.IO;
|
|
|
|
|
|
|
|
namespace Wabbajack;
|
|
|
|
|
|
|
|
public static class Consts
|
|
|
|
{
|
|
|
|
public static RelativePath MO2IniName = "ModOrganizer.ini".ToRelativePath();
|
|
|
|
public static string AppName = "Wabbajack";
|
|
|
|
public static Uri WabbajackBuildServerUri => new("https://build.wabbajack.org");
|
|
|
|
public static Version CurrentMinimumWabbajackVersion { get; set; } = Version.Parse("2.3.0.0");
|
|
|
|
public static bool UseNetworkWorkaroundMode { get; set; } = false;
|
|
|
|
public static AbsolutePath CefCacheLocation { get; } = KnownFolders.WabbajackAppLocal.Combine("Cef");
|
2022-07-14 13:24:47 +00:00
|
|
|
public static RelativePath ModListTxt { get; } = "modlist.txt".ToRelativePath();
|
|
|
|
public static RelativePath CompilerSettings { get; } = "compiler_settings.json".ToRelativePath();
|
2022-03-13 22:47:30 +00:00
|
|
|
|
|
|
|
public static byte SettingsVersion = 0;
|
|
|
|
|
|
|
|
public static RelativePath NativeSettingsJson = "native_settings.json".ToRelativePath();
|
|
|
|
}
|