Skip to content

Commit 5431236

Browse files
committed
Manager: Fix wing 8 logs not being reprocessed
1 parent f362aaa commit 5431236

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

ArcdpsLogManager/ArcdpsLogManager.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Each new log data update causes a revision increase.
1818
See LogDataUpdater for the updates.
1919
-->
20-
<Version>1.13.0.1</Version>
20+
<Version>1.13.1.0</Version>
2121
</PropertyGroup>
2222
<ItemGroup>
2323
<PackageReference Include="DebounceThrottle" Version="2.0.0" />

ArcdpsLogManager/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
This is the full changelog of the arcdps Log Manager.
44

5+
## Log Manager v1.13.1
6+
7+
#### Fixes
8+
- Fixed wing 8 logs not being reprocessed automatically
9+
510
## Log Manager v1.13
611

712
#### New features

ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ x.Profession is Profession.Thief or Profession.Engineer or Profession.Ranger
216216
new LogUpdate(log => log.ParsingVersion < new Version(1, 11, 1, 10)
217217
&& log.Encounter == Encounter.SoullessHorror,
218218
"Fix detection for Soulless Horror in case the encounter resets before all players are dead."),
219-
new LogUpdate(log => log.ParsingVersion < new Version(1, 13, 0, 1)
220-
&& log.Encounter is Encounter.Greer or Encounter.Decima or Encounter.Ura
219+
new LogUpdate(log => log.ParsingVersion < new Version(1, 13, 1, 0)
220+
&& log.Encounter == Encounter.Other
221221
&& log.MapId == MapIds.RaidWing8,
222222
"Added support for Greer, Decima and Ura in Mount Balrior."),
223223
// When adding a new update, you need to increase the revision (last value) of the version in the .csproj file

0 commit comments

Comments
 (0)