diff --git a/Assets/PatchKit Patcher/Scripts/AppUpdater/Commands/RepairFilesCommand.cs b/Assets/PatchKit Patcher/Scripts/AppUpdater/Commands/RepairFilesCommand.cs index adcb89c9..838a0829 100644 --- a/Assets/PatchKit Patcher/Scripts/AppUpdater/Commands/RepairFilesCommand.cs +++ b/Assets/PatchKit Patcher/Scripts/AppUpdater/Commands/RepairFilesCommand.cs @@ -97,7 +97,7 @@ public override void Execute(CancellationToken cancellationToken) downloadStatus.IsActive.Value = true; downloadStatus.TotalBytes.Value = totalData; - downloadStatus.Description.Value = "Downloading broken file..."; + downloadStatus.Description.Value = "Downloading fixes..."; downloadStatus.Bytes.Value = 0; downloader.DownloadProgressChanged += downloadedBytes => @@ -111,7 +111,7 @@ public override void Execute(CancellationToken cancellationToken) downloadStatus.IsActive.Value = false; repairStatus.IsActive.Value = true; - repairStatus.Description.Value = "Reparing broken file..."; + repairStatus.Description.Value = "Applying fixes..."; repairStatus.Progress.Value = 0.0; _logger.LogDebug("Unarchiving the package."); diff --git a/CHANGELOG.md b/CHANGELOG.md index ab9d6d17..811471da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ 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/). +## [Unreleased] +### Changed +- New status messages for repairing process (more user-friendly) (#1177) ## [3.11.0] ### Added