2 Commits
Author SHA1 Message Date
l4kr d995dc3c48 Lower default strip concurrency to 3 2026-07-04 02:55:42 +02:00
l4kr 759d7e61d3 Ignore zip build artifacts 2026-07-04 02:37:24 +02:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -3,3 +3,4 @@ obj/
*.user *.user
history.json history.json
settings.json settings.json
*.zip
+1 -1
View File
@@ -16,7 +16,7 @@ namespace Futonizer;
public partial class MainWindow : FluentWindow public partial class MainWindow : FluentWindow
{ {
private const int MaxConcurrentScans = 10; private const int MaxConcurrentScans = 10;
private const int MaxConcurrentStrips = 5; private const int MaxConcurrentStrips = 3;
private AppSettings _settings = new(); private AppSettings _settings = new();
private readonly ObservableCollection<QueuedFileItem> _fileQueue = new(); private readonly ObservableCollection<QueuedFileItem> _fileQueue = new();