From 87a1f10a6f90eeff712bee0ed0582d8e56c24262 Mon Sep 17 00:00:00 2001 From: Tomasz Jaworski Date: Fri, 1 Mar 2019 11:32:03 +0000 Subject: [PATCH 1/3] Change repair status messages --- .../Scripts/AppUpdater/Commands/RepairFilesCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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."); From 50648bbb301b1ce447f135a2fe44d450da3cd994 Mon Sep 17 00:00:00 2001 From: Tomasz Jaworski Date: Fri, 1 Mar 2019 13:39:49 +0100 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab9d6d17..a5b4d204 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) ## [3.11.0] ### Added From 8e4627ae5e3c6801cd58c1b907c906fac8803b12 Mon Sep 17 00:00:00 2001 From: Tomasz Jaworski Date: Fri, 1 Mar 2019 13:40:54 +0100 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5b4d204..811471da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Changed -- New status messages for repairing process (more user-friendly) +- New status messages for repairing process (more user-friendly) (#1177) ## [3.11.0] ### Added