From 93c28a674c0d78183eb37cb386c0bd2b45c4185f Mon Sep 17 00:00:00 2001 From: pointfeev Date: Tue, 15 Mar 2022 06:28:13 -0400 Subject: [PATCH] v3.3.0.1 - Fixed pre-scan dialog tab indexes - Changed pre-scan dialog group box text for clarification --- CreamInstaller/CreamInstaller.csproj | 2 +- CreamInstaller/Forms/SelectForm.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CreamInstaller/CreamInstaller.csproj b/CreamInstaller/CreamInstaller.csproj index 81b5ae9..b96d52f 100644 --- a/CreamInstaller/CreamInstaller.csproj +++ b/CreamInstaller/CreamInstaller.csproj @@ -5,7 +5,7 @@ True Resources\ini.ico true - 3.3.0.0 + 3.3.0.1 Resources\ini.ico LICENSE 2021, pointfeev (https://github.com/pointfeev) diff --git a/CreamInstaller/Forms/SelectForm.cs b/CreamInstaller/Forms/SelectForm.cs index 2a96787..43aafd6 100644 --- a/CreamInstaller/Forms/SelectForm.cs +++ b/CreamInstaller/Forms/SelectForm.cs @@ -416,7 +416,7 @@ internal partial class SelectForm : CustomForm if (gameChoices.Any()) { using SelectDialogForm form = new(this); - List<(string platform, string id, string name)> choices = form.QueryUser("Choose which programs/games to scan:", gameChoices); + List<(string platform, string id, string name)> choices = form.QueryUser("Choose which programs/games to scan for DLC:", gameChoices); if (choices is not null) ProgramsToScan = choices; noneFoundLabel.Text = "None of the chosen programs/games were CreamAPI-applicable or ScreamAPI-applicable!\n\nPress the \"Rescan Programs / Games\" button to re-choose."; }