mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge branch 'feature/api_level_switch'
This commit is contained in:
commit
f97df582c6
2 changed files with 4 additions and 1 deletions
|
|
@ -8,7 +8,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Label="Feature">
|
||||
<DalamudVersion>5.2.7.0</DalamudVersion>
|
||||
<DalamudVersion>6.0.0.0</DalamudVersion>
|
||||
<Description>XIV Launcher addon framework</Description>
|
||||
<AssemblyVersion>$(DalamudVersion)</AssemblyVersion>
|
||||
<Version>$(DalamudVersion)</Version>
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue