Skip to content

Commit

Permalink
Manager: Fix wing 8 logs not being reprocessed
Browse files Browse the repository at this point in the history
  • Loading branch information
Sejsel committed Nov 23, 2024
1 parent f362aaa commit 5431236
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
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.13.0.1</Version>
<Version>1.13.1.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DebounceThrottle" Version="2.0.0" />
Expand Down
5 changes: 5 additions & 0 deletions ArcdpsLogManager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This is the full changelog of the arcdps Log Manager.

## Log Manager v1.13.1

#### Fixes
- Fixed wing 8 logs not being reprocessed automatically

## Log Manager v1.13

#### New features
Expand Down
4 changes: 2 additions & 2 deletions ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ x.Profession is Profession.Thief or Profession.Engineer or Profession.Ranger
new LogUpdate(log => log.ParsingVersion < new Version(1, 11, 1, 10)
&& log.Encounter == Encounter.SoullessHorror,
"Fix detection for Soulless Horror in case the encounter resets before all players are dead."),
new LogUpdate(log => log.ParsingVersion < new Version(1, 13, 0, 1)
&& log.Encounter is Encounter.Greer or Encounter.Decima or Encounter.Ura
new LogUpdate(log => log.ParsingVersion < new Version(1, 13, 1, 0)
&& log.Encounter == Encounter.Other
&& log.MapId == MapIds.RaidWing8,
"Added support for Greer, Decima and Ura in Mount Balrior."),
// When adding a new update, you need to increase the revision (last value) of the version in the .csproj file
Expand Down

0 comments on commit 5431236

Please sign in to comment.