diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index a57a3f69..a9629e66 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -9,7 +9,9 @@ sometimes have minor differences that require extra effort to offer compatibilit Note that alpha versions, while being compatible, have a higher likelihood of having bugs. ## Valheim 0.218 +* ✅ - `Valheim 0.218.16 (n-28)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.14.0-alpha01` +### Valheim 0.218.15 * ✅ - `Valheim 0.218.15 (n-27)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.13.0` * ✅ - `Valheim 0.218.14 (n-26)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.13.0-alpha02` * ✅ - `Valheim 0.218.11 (n-24)` + `BepInExPack_Valheim 5.4.2202` + `ValheimPlus 0.9.13.0-alpha01` diff --git a/ValheimPlus/ValheimPlus.cs b/ValheimPlus/ValheimPlus.cs index bfd90077..f02810f0 100644 --- a/ValheimPlus/ValheimPlus.cs +++ b/ValheimPlus/ValheimPlus.cs @@ -22,10 +22,10 @@ namespace ValheimPlus public class ValheimPlusPlugin : BaseUnityPlugin { // Version used when numeric is required (assembly info, bepinex, System.Version parsing). - public const string numericVersion = "0.9.13.0"; + public const string numericVersion = "0.9.14.0"; // Extra version, like alpha/beta/rc/stable. Can leave blank if a stable release. - public const string versionExtra = ""; + public const string versionExtra = "-alpha01"; // Version used when numeric is NOT required (Logging, config file lookup) public const string fullVersion = numericVersion + versionExtra; @@ -34,10 +34,10 @@ public class ValheimPlusPlugin : BaseUnityPlugin public const string minRequiredNumericVersion = numericVersion; // The lowest game version this version of V+ is known to work with. - public static readonly GameVersion minSupportedGameVersion = new GameVersion(0, 218, 11); + public static readonly GameVersion minSupportedGameVersion = new GameVersion(0, 218, 16); // The game version this version of V+ was compiled against. - public static readonly GameVersion targetGameVersion = new GameVersion(0, 218, 15); + public static readonly GameVersion targetGameVersion = new GameVersion(0, 218, 16); public static string newestVersion = ""; public static bool isUpToDate = false;