Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
kosmo committed Jun 16, 2024
2 parents f2ab4a9 + 584a619 commit 07a9edb
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
Binary file modified ShyftSetup.exe
Binary file not shown.
48 changes: 48 additions & 0 deletions ShyftSetup.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Shyft"
#define MyAppVersion "0.1"
#define MyAppPublisher "ENCLAIM"
#define MyAppURL "https://github.com/kosmolebryce/shyft"
#define MyAppExeName "Shyft.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={{BEB25948-9805-4B1D-AE78-B054DC0F6257}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={commonpf}\{#MyAppName} ; Adjusted to use platform-dependent Program Files directory
DisableDirPage=yes
ArchitecturesAllowed=x64compatible
ArchitecturesInstallIn64BitMode=x64compatible
DisableProgramGroupPage=yes
LicenseFile=C:\Users\Kosmo\Downloads\Mozilla Public License, version 2.0.txt
InfoBeforeFile=C:\Users\Kosmo\Documents\GitHub\shyft\README.md
OutputBaseFilename=ShyftSetup
Compression=lzma
SolidCompression=yes
WizardStyle=modern

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

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

[Files]
Source: "C:\Users\Kosmo\Documents\GitHub\shyft\ShyftEXE\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\Kosmo\Documents\GitHub\shyft\ShyftEXE\_internal\*"; DestDir: "{app}\_internal"; Flags: ignoreversion recursesubdirs createallsubdirs

[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

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

0 comments on commit 07a9edb

Please sign in to comment.