Skip to content

Important Bug Fix!

Compare
Choose a tag to compare
@laolarou726 laolarou726 released this 02 Jul 06:53
· 654 commits to master since this release

V1.0.3.5

Changes And Improvements (Important bug fix)

!!! We recommend that all users install the new version !!!

  • Now the MultiPartDownload methods in can provide more accurate download progress!

  • We fixed some bugs in the download methods.

  • Due to the limitation of the default number of connections in .NET, you need to manually override the default number of connections to ensure that some methods in are executed normally. You can add the following code in App.xaml.cs or the entry point of the program to complete the modification (The maximum value should not exceed 1024)

    using System.Net;
    
    ServicePointManager.DefaultConnectionLimit = 512;