Skip to content

Commit 1db7b22

Browse files
committed
v2.0.8
1 parent 2caa111 commit 1db7b22

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ We really like people helping us with the project. Nevertheless, take your time
3030

3131
## ChangeLog
3232

33+
<details open="open"><summary>v2.0.8</summary>
34+
35+
>- dotnet update to 8.0.15
36+
>- Maui Replay Import improved
37+
>- Maui Import 'Robust Import' - saving replays one by one
38+
39+
</details>
40+
3341
<details open="open"><summary>v2.0.7</summary>
3442

3543
>- s2protocol 5.0.14.93333.0 (s2protocol.NET v0.8.4)

src/dsstats.db8services/Import/ImportService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public async Task Init()
3838
await initSs.WaitAsync();
3939
if (IsInit)
4040
{
41+
initSs.Release();
4142
return;
4243
}
4344
try

src/dsstats.maui/dsstats.maui8/Services/DsstatsService.DecodeJob.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
using dsstats.db8;
2-
using dsstats.db8services;
3-
using dsstats.db8services.Import;
1+
using dsstats.db8services;
42
using dsstats.shared;
53
using dsstats.shared.Interfaces;
6-
using Microsoft.EntityFrameworkCore;
74
using pax.dsstats.parser;
85
using s2protocol.NET;
96
using System.Collections.Concurrent;
@@ -126,6 +123,7 @@ public async Task Decode(List<string> replayFiles, CancellationToken token, bool
126123
}
127124
});
128125
}
126+
await ImportReplays(true);
129127
}
130128

131129
private async Task SaveReplay(ReplayDto replayDto, bool singleSave)

0 commit comments

Comments
 (0)