diff --git a/Dalamud/Dalamud.csproj b/Dalamud/Dalamud.csproj index 95ddc2ad5..a64f4f936 100644 --- a/Dalamud/Dalamud.csproj +++ b/Dalamud/Dalamud.csproj @@ -8,7 +8,7 @@ - 5.2.7.0 + 6.0.0.0 XIV Launcher addon framework $(DalamudVersion) $(DalamudVersion) diff --git a/Dalamud/Troubleshooting.cs b/Dalamud/Troubleshooting.cs index 53d5a4b96..70b80cb5e 100644 --- a/Dalamud/Troubleshooting.cs +++ b/Dalamud/Troubleshooting.cs @@ -29,6 +29,7 @@ namespace Dalamud { LoadedPlugins = dalamud.PluginManager.InstalledPlugins.Select(x => x.Manifest).ToArray(), DalamudVersion = Util.AssemblyVersion, + DalamudGitHash = Util.GetGitHash(), GameVersion = dalamud.StartInfo.GameVersion.ToString(), Language = dalamud.StartInfo.Language.ToString(), DoDalamudTest = dalamud.Configuration.DoDalamudTest, @@ -51,6 +52,8 @@ namespace Dalamud public PluginManifest[] LoadedPlugins { get; set; } public string DalamudVersion { get; set; } + + public string DalamudGitHash { get; set; } public string GameVersion { get; set; }