Skip to content

Commit

Permalink
Manager: Fix instance logs not being reprocessed for fractal scale
Browse files Browse the repository at this point in the history
  • Loading branch information
Sejsel committed Jul 25, 2023
1 parent 806e5e0 commit 14da9f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ArcdpsLogManager/ArcdpsLogManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Each new log data update causes a revision increase.
See LogDataUpdater for the updates.
-->
<Version>1.9.0.2</Version>
<Version>1.9.0.3</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Eto.Forms" Version="2.6.1" />
Expand Down
4 changes: 4 additions & 0 deletions ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ x.Profession is Profession.Thief or Profession.Engineer or Profession.Ranger
&& log.Encounter == Encounter.Other
&& log.MapId == MapIds.SilentSurf,
"Add support for Silent Surf NM"),
new LogUpdate(log => log.ParsingVersion < new Version(1, 9, 0, 3)
&& (log.Encounter == Encounter.Map)
&& string.Compare(log.EvtcVersion, "EVTC20230716", StringComparison.OrdinalIgnoreCase) >= 0,
"Add support for fractal scale."),
// When adding a new update, you need to increase the revision (last value) of the version in the .csproj file
// unless the version changes more significantly, in that case it can be reset to 0.
};
Expand Down

0 comments on commit 14da9f3

Please sign in to comment.