diff --git a/installer.iss b/installer.iss index 9b26df9..6b9ee9a 100644 --- a/installer.iss +++ b/installer.iss @@ -1,9 +1,9 @@ -#define MyAppName "CouchPotato" -#define MyAppVer "2.0.0.pre2" +#define MyAppName "CouchPotato" +#define MyAppVer "2.0.0.pre1" [Setup] AppName={#MyAppName} -AppVersion={#MyAppVer} +AppVersion=2 AppVerName={#MyAppName} DefaultDirName={pf}\{#MyAppName} DisableProgramGroupPage=yes @@ -15,11 +15,14 @@ AppPublisher=Your Mom AppPublisherURL=http://couchpota.to [Files] -Source: "./dist/{#MyAppName}-{#MyAppVer}.win32/*"; Flags: recursesubdirs; DestDir: "{app}" +Source: "./dist/{#MyAppName}-{#MyAppVer}.win32/*"; Flags: recursesubdirs; DestDir: "{app}" [Icons] Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe" -Name: "{userstartup}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe" +Name: "{userstartup}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe"; Tasks: startup [Tasks] -Name: "startup"; Description: "Run {#MyAppName} at startup"; Flags: unchecked \ No newline at end of file +Name: "startup"; Description: "Run {#MyAppName} at startup"; Flags: unchecked + +[UninstallDelete] +Type: filesandordirs; Name: "{app}\*.*" \ No newline at end of file