Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,8 @@ private void ProcessModifiedFiles(string packageDirPath, string suffix, Temporar

private long GetTotalSizeModifiedFiles()
{
IEnumerable<string> modifiedFiles = _diffSummary.ModifiedFiles.Where(f => !_diffSummary.UnchangedFiles.Contains(f));
var unchangedFiles = new HashSet<string>(_diffSummary.UnchangedFiles);
var modifiedFiles = new HashSet<string>(_diffSummary.ModifiedFiles).Where(f => !unchangedFiles.Contains(f));
return _contentSummary.Files.Where(f => modifiedFiles.Contains(f.Path)).Sum(f => f.Size);
}

Expand Down
2 changes: 1 addition & 1 deletion Assets/PatchKit Patcher/Scripts/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public static class Version
public const int Major = 3;
public const int Minor = 17;
public const int Patch = 12;
public const int Hotfix = 0;
public const int Hotfix = 1;

public static string Value
{
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [3.17.12.1]
### Fixed
- Crash during patching operation

## [3.17.12.0]
### Fixed
- Displaying the progress bar for patching files for large files
Expand Down