Add configurable default shift and confirmation dialog

This commit is contained in:
PANDA Project
2026-08-07 15:07:52 +02:00
parent 19e86bad61
commit 4bbdd85ae1
8 changed files with 320 additions and 11 deletions
+4 -4
View File
@@ -11,8 +11,8 @@ using Microsoft.Win32;
[assembly: AssemblyDescription("Installer für PANDA")]
[assembly: AssemblyProduct("PANDA")]
[assembly: AssemblyCompany("PANDA")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
namespace PandaSetup
{
@@ -143,7 +143,7 @@ namespace PandaSetup
});
heading.Controls.Add(new Label
{
Text = "Version 1.3.0 • Installation für den aktuellen Windows-Benutzer",
Text = "Version 1.4.0 • Installation für den aktuellen Windows-Benutzer",
ForeColor = Blue,
AutoSize = true,
Location = new Point(2, 73)
@@ -329,7 +329,7 @@ namespace PandaSetup
using (RegistryKey key = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Uninstall\PANDA"))
{
key.SetValue("DisplayName", "PANDA");
key.SetValue("DisplayVersion", "1.3.0");
key.SetValue("DisplayVersion", "1.4.0");
key.SetValue("DisplayIcon", applicationPath);
key.SetValue("Publisher", "PANDA");
key.SetValue("InstallLocation", target);