Add application icon for Inno Setup and web favicon - Create medi-wol.ico for Windows installer with blue circle and white W - Add favicon.ico, favicon.png, favicon-16x16.png for web app - Update Inno Setup script to use SetupIconFile and UninstallDisplayIcon - Add favicon links to HTML template head section - Icon features: MediSoftware blue theme, Wake-on-LAN W symbol, transparent background
This commit is contained in:
@ -21,6 +21,8 @@ AllowNoIcons=yes
|
||||
LicenseFile=..\LICENSE
|
||||
OutputDir=..\dist
|
||||
OutputBaseFilename=medi-wol-setup
|
||||
SetupIconFile=medi-wol.ico
|
||||
UninstallDisplayIcon={app}\{#MyAppExeName}
|
||||
Compression=lzma
|
||||
SolidCompression=yes
|
||||
WizardStyle=modern
|
||||
@ -46,10 +48,10 @@ Source: "..\LICENSE"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "..\README.md"; DestDir: "{app}"; Flags: ignoreversion
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||||
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; IconFilename: "{app}\{#MyAppExeName}"
|
||||
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
|
||||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
|
||||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; IconFilename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; IconFilename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
|
||||
|
||||
[Run]
|
||||
; Installiere Medi-WOL als Windows-Dienst mit NSSM
|
||||
|
||||
Reference in New Issue
Block a user