fix: resolve dashboard bugs (percentage precision, wrong title, and reading resumption)

This commit is contained in:
2026-05-10 19:09:14 +02:00
parent 2950e15633
commit 65e188b323
12 changed files with 33 additions and 12 deletions
@@ -5,7 +5,7 @@ namespace NexusReader.UI.Shared.Services;
public interface ISyncService
{
Task<Result> InitializeAsync();
Task<Result> UpdateProgressAsync(string pageId, Guid ebookId, double progress, string? chapterTitle);
Task<Result> UpdateProgressAsync(string pageId, Guid ebookId, double progress, string? chapterTitle, int chapterIndex);
event Func<string, DateTime, Task> OnProgressReceived;
Task DisposeAsync();
}