Skip to content

Commit

Permalink
Sets the app version in the setup to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGilbert committed Feb 16, 2015
1 parent 21b1161 commit 5c9bf95
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Setup/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "dgMicMute"
#define MyAppVersion "0.9"
#define MyAppVersion "1.1"
#define MyAppPublisher "Daniel Gilbert"
#define MyAppURL "http://tools.danielgilbert.de/windows/dgmicmute"
#define MyAppExeName "dgMicMute.exe"
Expand All @@ -22,8 +22,8 @@ AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
LicenseFile=D:\Entwicklung\C#\dgMicMute\dgMicMute\bin\Release\License.txt
OutputDir=D:\Entwicklung\C#\dgMicMute\Setup
LicenseFile=L:\Entwicklung\Windows\dgMicMute\dgMicMute\bin\Release\License.txt
OutputDir=L:\Entwicklung\Windows\dgMicMute\Setup
OutputBaseFilename=dgMicMute_Setup
Compression=lzma
SolidCompression=yes
Expand All @@ -34,17 +34,15 @@ Name: "german"; MessagesFile: "compiler:Languages\German.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
Name: "startup"; Description: "{cm:AutoStartFolder,{#StringChange(MyAppName, '&', '&&')}}"; GroupDescription: "{cm:AdditionalIcons}"

[Files]
Source: "D:\Entwicklung\C#\dgMicMute\dgMicMute\bin\Release\dgMicMute.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "D:\Entwicklung\C#\dgMicMute\dgMicMute\bin\Release\Hardcodet.Wpf.TaskbarNotification.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "L:\Entwicklung\Windows\dgMicMute\dgMicMute\bin\Release\dgMicMute.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "L:\Entwicklung\Windows\dgMicMute\dgMicMute\bin\Release\Hardcodet.Wpf.TaskbarNotification.dll"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
Name: "{userstartup}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: startup

[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

0 comments on commit 5c9bf95

Please sign in to comment.