Skip to content

Commit

Permalink
[*]Fix iss (final
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami committed Dec 26, 2023
1 parent 983fdd6 commit da15daa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions windows/packaging/exe/inno_setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,14 @@ PrivilegesRequiredOverridesAllowed=dialog
{% endfor %}

[Tasks]
Name: "{group}\{{INSTALL_DIR_NAME}}}"; Filename: "{app}\{{EXECUTABLE_NAME}}"
Name: "{group}\{cm:UninstallProgram,{{INSTALL_DIR_NAME}}}"; Filename: "{uninstallexe}"
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: {% if CREATE_DESKTOP_ICON != true %}unchecked{% else %}checkedonce{% endif %}
Name: "launchAtStartup"; Description: "{cm:AutoStartProgram,{{DISPLAY_NAME}}}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: {% if LAUNCH_AT_STARTUP != true %}unchecked{% else %}checkedonce{% endif %}
[Files]
Source: "{{SOURCE_DIR}}\\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{group}\{{INSTALL_DIR_NAME}}}"; Filename: "{app}\{{EXECUTABLE_NAME}}"
Name: "{autoprograms}\\{{DISPLAY_NAME}}"; Filename: "{app}\\{{EXECUTABLE_NAME}}"
Name: "{autodesktop}\\{{DISPLAY_NAME}}"; Filename: "{app}\\{{EXECUTABLE_NAME}}"; Tasks: desktopicon
Name: "{userstartup}\\{{DISPLAY_NAME}}"; Filename: "{app}\\{{EXECUTABLE_NAME}}"; WorkingDir: "{app}"; Tasks: launchAtStartup
Expand Down

0 comments on commit da15daa

Please sign in to comment.