Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 968a9f5

Browse files
authored
Merge pull request #19 from Romanitho/uncheck-WAU-on-install
Uncheck "Install WAU" after "Install" is clicked
2 parents d7a725c + 2522d70 commit 968a9f5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Compiler/ps2exe_script.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ $InputFile = "$Path\Sources\Winget-Install-GUI.ps1"
77
$OutputFile = "$Path\Sources\WiGui.exe"
88
$Icon = "$Path\Sources\WiGui.ico"
99
$Title = "WiGui"
10-
$AppVersion = "1.4.0"
10+
$AppVersion = "1.4.1"
1111
Invoke-ps2exe -inputFile $InputFile -outputFile $OutputFile -noConsole -requireAdmin -title $Title -version $AppVersion -copyright "Romanitho" -product $Title -icon $Icon -noerror

Sources/Winget-Install-GUI.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ https://github.com/Romanitho/Winget-AllinOne
1111
#>
1212

1313
<# APP INFO #>
14-
$WiGuiVersion = "1.4.0"
14+
$WiGuiVersion = "1.4.1"
1515

1616
<# FUNCTIONS #>
1717

@@ -492,6 +492,8 @@ function Get-InstallGUI {
492492
$Script:WAUDoNotUpdate = $WAUDoNotUpdateCheckBox.Checked
493493
$Script:WAUDisableAU = $WAUDisableAUCheckBox.Checked
494494
Start-Installations
495+
$WAUCheckBox.Checked = $false
496+
$WAUgroupBox.Enabled = $false
495497
}
496498
})
497499

0 commit comments

Comments
 (0)