Skip to content

Commit ae88958

Browse files
committed
bump analyzer bersion
1 parent 6ac8567 commit ae88958

File tree

4 files changed

+46
-1
lines changed

4 files changed

+46
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33

4+
## 0.0.35 (13 Jan 2025)
5+
- Update analyser library
6+
47
## 0.0.34 (13 Jan 2025)
58
- Fix Override Pin name and location
69

Remnant2SaveAnalyzer-dev.sln.DotSettings

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
<s:Boolean x:Key="/Default/UserDictionary/Words/=sigils/@EntryIndexedValue">True</s:Boolean>
5757
<s:Boolean x:Key="/Default/UserDictionary/Words/=specialmod/@EntryIndexedValue">True</s:Boolean>
5858
<s:Boolean x:Key="/Default/UserDictionary/Words/=steamapps/@EntryIndexedValue">True</s:Boolean>
59+
<s:Boolean x:Key="/Default/UserDictionary/Words/=Stringified/@EntryIndexedValue">True</s:Boolean>
5960
<s:Boolean x:Key="/Default/UserDictionary/Words/=Taura/@EntryIndexedValue">True</s:Boolean>
6061
<s:Boolean x:Key="/Default/UserDictionary/Words/=thaen/@EntryIndexedValue">True</s:Boolean>
6162
<s:Boolean x:Key="/Default/UserDictionary/Words/=Yaesha/@EntryIndexedValue">True</s:Boolean>

Remnant2SaveAnalyzer/Remnant2SaveAnalyzer.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="lib.remnant2.analyzer" Version="0.0.36" />
19+
<PackageReference Include="lib.remnant2.analyzer" Version="0.0.37" />
2020
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
2121
<PackageReference Include="Serilog" Version="4.1.0" />
2222
<PackageReference Include="Serilog.Expressions" Version="5.0.0" />

Remnant2SaveAnalyzer/RemnantSave.cs

+41
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,20 @@ private void ReportPlayerInfo()
341341
}
342342
logger.Information($"END Quick slots, Character {index + 1} (save_{character.Index})");
343343

344+
// Thaen fruit
345+
if (character.Save.ThaenFruit == null)
346+
{
347+
logger.Information("Thaen fruit data not found");
348+
}
349+
else
350+
{
351+
logger.Information("Thaen fruit data");
352+
foreach (KeyValuePair<string, string> pair in character.Save.ThaenFruit.StringifiedRawData)
353+
{
354+
logger.Information($" {pair.Key}: {pair.Value}");
355+
}
356+
}
357+
344358
// Campaign ------------------------------------------------------------
345359
logger.Information($"Save play time: {Utils.FormatPlaytime(character.Save.Playtime)}");
346360
foreach (Zone z in character.Save.Campaign.Zones)
@@ -352,6 +366,19 @@ private void ReportPlayerInfo()
352366
string respawnPoint = character.Save.Campaign.RespawnPoint == null ? "Unknown" : character.Save.Campaign.RespawnPoint.ToString();
353367
logger.Information($"Campaign respawn point: {respawnPoint}");
354368

369+
// Blood Moon
370+
if (character.Save.Campaign.BloodMoon == null)
371+
{
372+
logger.Information("Blood moon data not found");
373+
}
374+
else
375+
{
376+
logger.Information("Blood moon data");
377+
foreach (KeyValuePair<string, string> pair in character.Save.Campaign.BloodMoon.StringifiedRawData)
378+
{
379+
logger.Information($" {pair.Key}: {pair.Value}");
380+
}
381+
}
355382

356383
// Campaign Quest Inventory ------------------------------------------------------------
357384
logger.Information($"BEGIN Quest inventory, Character {index+1} (save_{character.Index}), mode: campaign");
@@ -378,6 +405,20 @@ private void ReportPlayerInfo()
378405
respawnPoint = character.Save.Adventure.RespawnPoint == null ? "Unknown" : character.Save.Adventure.RespawnPoint.ToString();
379406
logger.Information($"Adventure respawn point: {respawnPoint}");
380407

408+
// Blood Moon
409+
if (character.Save.Adventure.BloodMoon == null)
410+
{
411+
logger.Information("Blood moon information not found");
412+
}
413+
else
414+
{
415+
logger.Information("Blood moon data");
416+
foreach (KeyValuePair<string, string> pair in character.Save.Adventure.BloodMoon.StringifiedRawData)
417+
{
418+
logger.Information($" {pair.Key}: {pair.Value}");
419+
}
420+
}
421+
381422
// Adventure Quest Inventory ------------------------------------------------------------
382423
logger.Information($"BEGIN Quest inventory, Character {index+1} (save_{character.Index}), mode: adventure");
383424
lootItems = character.Save.Adventure.QuestInventory.Select(x => ItemDb.GetItemByProfileId(x.ProfileId)).Where(x => x != null).OrderBy(x => x!.Name)!;

0 commit comments

Comments
 (0)