Skip to content

Commit 4bb8ec7

Browse files
author
unknown
committed
Merge branch 'dev/v3.10.x' into freezed
2 parents a33e85b + b7a1899 commit 4bb8ec7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Assets/PatchKit Patcher/Scripts/AppData/Remote/Downloaders/BaseHttpDownloader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public sealed class BaseHttpDownloader : IBaseHttpDownloader
1313
{
1414
private readonly ILogger _logger;
1515

16-
private const int BufferSize = 1024;
16+
private const int BufferSize = 5 * 1024 * 1024;
1717

1818
private readonly string _url;
1919
private readonly int _timeout;

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1313
### Changed
1414
- Patcher will timeout if the downloading stopped sooner than after 5 minutes
1515

16+
## [3.10.1p2]
17+
### Fixed
18+
- Slow download performance due to small buffer size
19+
1620
## [3.10.1p1]
1721
### Fixed
1822
- Missing unpacking suffix when repairing files (3.10.1 failed to fix this issue)

0 commit comments

Comments
 (0)