From e3dc316bb2fc95d29cccbd55030b78fad077dc9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20B?= <445742+Selenium@users.noreply.github.com> Date: Fri, 14 Jul 2023 09:43:25 +0200 Subject: [PATCH 1/2] Support BUILD_10_1_5 --- WoWDeveloperAssistant/Misc/Utils.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/WoWDeveloperAssistant/Misc/Utils.cs b/WoWDeveloperAssistant/Misc/Utils.cs index efc7e54..bf3dc00 100644 --- a/WoWDeveloperAssistant/Misc/Utils.cs +++ b/WoWDeveloperAssistant/Misc/Utils.cs @@ -34,6 +34,7 @@ public enum BuildVersions : uint BUILD_10_0_5, BUILD_10_0_7, BUILD_10_1_0, + BUILD_10_1_5, }; public static string GetValueWithoutComma(this float value) From 61ac508beb304ce6b913487d3abdf46f5f9ba576 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20B?= <445742+Selenium@users.noreply.github.com> Date: Fri, 14 Jul 2023 09:47:30 +0200 Subject: [PATCH 2/2] Update LineGetters.cs --- WoWDeveloperAssistant/Misc/LineGetters.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/WoWDeveloperAssistant/Misc/LineGetters.cs b/WoWDeveloperAssistant/Misc/LineGetters.cs index 06482f2..a4a03fc 100644 --- a/WoWDeveloperAssistant/Misc/LineGetters.cs +++ b/WoWDeveloperAssistant/Misc/LineGetters.cs @@ -187,6 +187,8 @@ public static BuildVersions GetBuildVersion(IEnumerable lines) return BuildVersions.BUILD_10_0_7; else if (line.Contains("V10_1_0")) return BuildVersions.BUILD_10_1_0; + else if (line.Contains("V10_1_5")) + return BuildVersions.BUILD_10_1_5; return BuildVersions.BUILD_UNKNOWN; }