Conversation
Co-authored-by: Jakub Szczyrk <Jakub Szczyrk>
Co-authored-by: Jakub Szczyrk <Jakub Szczyrk>
Co-authored-by: Jakub Szczyrk <Jakub Szczyrk>
* Fix repair cost - consider block size. Decision repair always when invalid files. * Refactoring * Refactoring Co-authored-by: Jakub Szczyrk <Jakub Szczyrk>
* Restriction of hash repair for a large number of files * Refactoring * Refactoring Co-authored-by: Jakub Szczyrk <Jakub Szczyrk>
* Remove check version for diff * VersionIntegrity was used instead of ICheckVersionIntegrityCommand Co-authored-by: Jakub Szczyrk <Jakub Szczyrk>
* Unpacking only added and modified files. For unchanged files only entry change at app_data.json. Refactoring LocalMetaData * Refactoring * Refactoring Co-authored-by: Jakub Szczyrk <Jakub Szczyrk>
…s to install files during diff. Added caching of broken files during diff and a subsequent attempt to repair these files.
|
|
||
| ## [3.17.10.0] | ||
| ### Added | ||
| - Caching for diff and content app summary |
There was a problem hiding this comment.
Caching is only a way to achieve an improvement - changelog should describe the effect. For instance, this one should be listed under Changed category as Improve speed of getting API data by caching it.
| ### Added | ||
| - Caching for diff and content app summary | ||
| - Restriction of hash repair for a large number of files | ||
| - Reduced number of events sent for version integration check |
There was a problem hiding this comment.
Should be listed under Changed category.
| - Processing of contnet summary files during diff | ||
|
|
||
| ### Fixed | ||
| - The retry button resumes the update |
There was a problem hiding this comment.
Should be Retrying the failed operation from error dialog.
| - Check version for diff | ||
| - Processing of contnet summary files during diff | ||
|
|
||
| ### Fixed |
There was a problem hiding this comment.
Multiple Fixed changelog category.
| ## [3.17.10.0] | ||
| ### Added | ||
| - Caching for diff and content app summary | ||
| - Restriction of hash repair for a large number of files |
There was a problem hiding this comment.
Should be under Changed category as Disable checking hashes for repairing after failed installation if files count is over 10000.
| - Caching of broken files during diff and a subsequent attempt to repair these files. | ||
|
|
||
| ### Changed | ||
| - Repair cost and decision |
There was a problem hiding this comment.
Should be listed under Fixed category as Wrong cost calculation of repairing while making installation decision.
| ### Fixed | ||
| - The retry button resumes the update |
| - The retry button resumes the update | ||
|
|
||
| ### Removed | ||
| - Check version for diff |
There was a problem hiding this comment.
Should be under Changed category as Optimize diff installation time by reusing version integrity check results.
| The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
| and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
|
||
| ## [3.17.10.0] |
There was a problem hiding this comment.
Missing changelog for Changed - Optimize diff installation by leveraging information about unchanged files.
| public const int DefaultTryCount = 10; | ||
| public const int DefaultDelayMsec = 500; | ||
| public const int DefaultTryCount = 5; | ||
| public const int DefaultDelayMsec = 10; |
There was a problem hiding this comment.
Isn't RetryStrategy used somewhere else where this change might break previous behaviour?
No description provided.