Skip to content

Commit 0522872

Browse files
committed
Merge branch 'master' into dev/v3.10.x
2 parents 62d83d2 + 5beb03d commit 0522872

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Assets/PatchKit Patcher/Scripts/AppUpdater/Commands/RepairFilesCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public override void Execute(CancellationToken cancellationToken)
122122

123123
unarchiver.UnarchiveSingleFile(entry, cancellationToken);
124124

125-
EmplaceFile(Path.Combine(unarchivePath, entry.Name), Path.Combine(_localData.Path, entry.Name));
125+
EmplaceFile(Path.Combine(unarchivePath, entry.Name + _unpackingSuffix), Path.Combine(_localData.Path, entry.Name));
126126

127127
repairStatus.IsActive.Value = false;
128128
});

Assets/PatchKit Patcher/Scripts/Version.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ public static class Version
44
{
55
public const int Major = 3;
66
public const int Minor = 10;
7-
public const int Release = 0;
7+
public const int Release = 1;
88

99
public static string Value
1010
{
1111
get { return string.Format("v{0}.{1}.{2}", Major, Minor, Release); }
1212
}
1313
}
14-
}
14+
}

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.1p1]
17+
### Fixed
18+
- Missing unpacking suffix when repairing files (3.10.1 failed to fix this issue)
19+
1620
## [3.10.1]
1721
### Fixed
1822
- Updated torrent-client to fix the issue with paths with spaces in them

0 commit comments

Comments
 (0)