Skip to content

Commit

Permalink
Improve inno setup config
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrussler committed Oct 15, 2020
1 parent fe08cca commit 647ae3b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions gradle/resources/innosetup.iss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "EMLtoPDFConverter"
#define MyAppPublisher "EML to PDF Converter"
#define MyAppURL "eml-to-pdf.com"
#define MyAppName "EmailToPDFConverter"
#define MyAppPublisher "Email to PDF Converter"
#define MyAppURL "https://github.com/nickrussler/email-to-pdf-converter"
#define MyAppExeName "EmailConverter.exe"

[Setup]
Expand All @@ -18,14 +18,15 @@ AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DefaultDirName={commonpf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputDir=..\..\build\innosetup\
OutputBaseFilename=setup
Compression=lzma
Compression=lzma2/max
SolidCompression=yes
WizardImageFile=WizLogo.bmp
WizardSmallImageFile=WizLogoSmall.bmp
WizardStyle=modern

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

0 comments on commit 647ae3b

Please sign in to comment.