- Small aesthetic changes to the install form
This commit is contained in:
pointfeev 2022-01-17 16:30:15 -06:00
parent 4e0eaba531
commit 83a4c5b888
3 changed files with 6 additions and 6 deletions

View file

@ -5,7 +5,7 @@
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Resources\ini.ico</ApplicationIcon>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<Version>2.1.0.0</Version>
<Version>2.1.0.1</Version>
<PackageIcon>Resources\ini.ico</PackageIcon>
<PackageIconUrl />
<Description>Automatically generates and installs CreamAPI files for Steam games on the user's computer. It can also generate and install CreamAPI for the Paradox Launcher should the user select a Paradox Interactive game.</Description>

View file

@ -217,11 +217,11 @@ namespace CreamInstaller
try
{
await Operate();
UpdateUser("CreamAPI successfully installed and generated for " + ProgramCount + " program(s).", InstallationLog.Success);
UpdateUser($"CreamAPI successfully {(Uninstalling ? "uninstalled" : "installed and generated")} for " + ProgramCount + " program(s).", InstallationLog.Success);
}
catch (Exception exception)
{
UpdateUser("CreamAPI installation and/or generation failed: " + exception.ToString(), InstallationLog.Error);
UpdateUser($"CreamAPI {(Uninstalling ? "uninstallation" : "installation and/or generation")} failed: " + exception.ToString(), InstallationLog.Error);
retryButton.Enabled = true;
}
userProgressBar.Value = userProgressBar.Maximum;

View file

@ -190,7 +190,7 @@ namespace CreamInstaller
//
this.scanButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.scanButton.Enabled = false;
this.scanButton.Location = new System.Drawing.Point(155, 326);
this.scanButton.Location = new System.Drawing.Point(140, 326);
this.scanButton.Name = "scanButton";
this.scanButton.Size = new System.Drawing.Size(180, 23);
this.scanButton.TabIndex = 10001;
@ -225,9 +225,9 @@ namespace CreamInstaller
//
this.uninstallButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.uninstallButton.Enabled = false;
this.uninstallButton.Location = new System.Drawing.Point(341, 326);
this.uninstallButton.Location = new System.Drawing.Point(326, 326);
this.uninstallButton.Name = "uninstallButton";
this.uninstallButton.Size = new System.Drawing.Size(75, 23);
this.uninstallButton.Size = new System.Drawing.Size(90, 23);
this.uninstallButton.TabIndex = 10002;
this.uninstallButton.Text = "Uninstall";
this.uninstallButton.UseVisualStyleBackColor = true;