Skip to content

Commit

Permalink
Increment build number, add windows installer script.
Browse files Browse the repository at this point in the history
  • Loading branch information
thommcgrath committed Sep 27, 2016
1 parent 58417bf commit 2458063
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
1 change: 1 addition & 0 deletions Installers/Windows/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Output
44 changes: 44 additions & 0 deletions Installers/Windows/Setup.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Beacon"
#define MyAppVersion "1.0.0a3"
#define MyAppPublisher "The ZAZ Studios"
#define MyAppURL "https://thezaz.com/beacon"
#define MyAppExeName "Beacon.exe"

[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={{E58BA263-A23C-484E-99DF-319D5BD1399F}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
OutputBaseFilename=SetupBeacon
Compression=lzma
SolidCompression=yes

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

[Files]
Source: "\\vmware-host\Shared Folders\Beacon\Project\Builds - Beacon.xojo_project\Windows\Beacon\Beacon.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "\\vmware-host\Shared Folders\Beacon\Project\Builds - Beacon.xojo_project\Windows\Beacon\Beacon Libs\*"; DestDir: "{app}\Libs"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "\\vmware-host\Shared Folders\Beacon\Project\Builds - Beacon.xojo_project\Windows\Beacon\Beacon Resources\*"; DestDir: "{app}\Resources"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"

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

2 changes: 1 addition & 1 deletion Project/Beacon.xojo_project
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ AppMenuBar=MainMenuBar
MajorVersion=1
MinorVersion=0
SubVersion=0
NonRelease=2
NonRelease=3
Release=1
InfoVersion=Beacon for Ark by The ZAZ
LongVersion=Beacon 1.0.0 © 2016 Thom McGrath
Expand Down

0 comments on commit 2458063

Please sign in to comment.