Skip to content

Commit

Permalink
version increase, added icon
Browse files Browse the repository at this point in the history
  • Loading branch information
yermak committed Feb 4, 2018
1 parent 175b18e commit 23613ea
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 1 deletion.
Binary file added AudioBookConverter.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>uk.yermak</groupId>
<artifactId>audiobookconverter</artifactId>
<version>2.0.0</version>
<version>2.1-alpha-1</version>


<properties>
Expand Down
Binary file not shown.
71 changes: 71 additions & 0 deletions src/main/deploy/package/windows/audiobookconverter-2.1-alpha-1.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppTitle "AudioBookConverterV2"
#define MyAppName "AudioBookConverter"
#define MyAppVersion "2.1-alpha-1"
#define MyAppPublisher "https://github.com/yermak"
#define MyAppURL "https://github.com/yermak/AudioBookConverter"
#define MyAppExeName "AudioBookConverter-2.1-alpha-1.exe"
#define MyAppIcoName "AudioBookConverter.ico"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{E2A5A133-127D-4267-927F-2A5DC99F0B89}
AppName={#MyAppTitle}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
SetupIconFile=C:\Users\Yermak\Projects\AudioBookConverter\AudioBookConverter.ico

PrivilegesRequired=lowest

InfoBeforeFile=C:\Users\Yermak\Projects\AudioBookConverter\README.md

DefaultDirName={commonappdata}\{#MyAppTitle}\{#MyAppName}-{#MyAppVersion}
DisableDirPage=No

DefaultGroupName={#MyAppTitle}
DisableProgramGroupPage=No


OutputBaseFilename={#MyAppName}-Installer-{#MyAppVersion}
Compression=lzma2/ultra64
SolidCompression=yes

DisableStartupPrompt=Yes
DisableReadyPage=No
DisableFinishedPage=Yes
DisableWelcomePage=Yes
AllowCancelDuringInstall=Yes
ArchitecturesInstallIn64BitMode=x64



[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "{#MyAppName}-{#MyAppVersion}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "{#MyAppName}-{#MyAppVersion}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "C:\Users\Yermak\Projects\AudioBookConverter\external\*"; DestDir: "{app}\app\external"; Flags: ignoreversion recursesubdirs createallsubdirs
; 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

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

[UninstallRun]
Filename: "{app}\{#MyAppExeName} "; Parameters: "-uninstall -svcName {#MyAppExeName} -stopOnUninstall";

0 comments on commit 23613ea

Please sign in to comment.