Skip to content

Commit 545570f

Browse files
committed
fix: Cleanup
1 parent c7faa44 commit 545570f

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/windows.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ jobs:
4545
winget install --id JRSoftware.InnoSetup -e --accept-package-agreements --accept-source-agreements --disable-interactivity
4646
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
4747
[System.Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\Program Files (x86)\Inno Setup 6;%LOCALAPPDATA%\Programs\Inno Setup 6", "User")
48-
4948
- name: "Vcpkg"
5049
uses: johnwason/vcpkg-action@v7
5150
id: vcpkg

inno/setup.iss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
#define CurrentYear GetDateTimeString('yyyy','','')
1212

1313
[Setup]
14+
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
15+
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
1416
AppId={{C43542D3-74E2-4499-9484-89848ACF4B2F}
1517
AppName={#MyAppName}
1618
AppVersion={#MyAppVersion}
@@ -40,6 +42,8 @@ UsePreviousAppDir=no
4042
DefaultDirName={autopf}\{#MyAppName}
4143
DisableProgramGroupPage=yes
4244
LicenseFile=..\License.rtf
45+
; Uncomment the following line to run in non administrative install mode (install for current user only.)
46+
;PrivilegesRequired=lowest
4347
OutputDir=..\inno
4448
OutputBaseFilename=NickvisionApplicationSetup
4549
SetupIconFile=..\resources\org.nickvision.application.ico

0 commit comments

Comments
 (0)