Add a message when assembly version of Dalamud.dll changed

This commit is contained in:
goat 2019-11-24 22:58:22 +09:00
parent 0022c15fa1
commit 948b7b30b3
4 changed files with 17 additions and 3 deletions

View file

@ -118,6 +118,9 @@ namespace XIVLauncher.Dalamud
[CustomComboInfo("ES Painflare", "Change Energy Siphon into Painflare while you have Aetherflow stacks.", 27)]
SummonerESPainflareCombo = 1L << 40,
[CustomComboInfo("DWT", "DWT.", 27)]
SummonerDwtCombo = 1L << 50,
// SCHOLAR
[CustomComboInfo("Seraph Fey Blessing/Consolation", "Change Fey Blessing into Consolation when Seraph is out.", 28)]
ScholarSeraphConsolationFeature = 1L << 29,

View file

@ -25,6 +25,7 @@ namespace Dalamud
public List<FateInfo> Fates;
public string LastVersion { get; set; }
public static DalamudConfiguration Load(string path) {
return JsonConvert.DeserializeObject<DalamudConfiguration>(File.ReadAllText(path));