| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
							- ; Script generated by the Inno Setup Script Wizard.
 
- ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
 
- #define MyAppName "CyberX8_UI"
 
- #define MyAppVersion "1.0.3.1"
 
- #define MyAppPublisher "JET PLASMA"
 
- #define MyAppURL "http://www.jetplasma.com/"
 
- [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={{4A2E0497-2CC6-4FF7-BECB-B140EC9A541F}
 
- AppName={#MyAppName}
 
- AppVersion={#MyAppVersion}
 
- ;AppVerName={#MyAppName} {#MyAppVersion}
 
- AppPublisher={#MyAppPublisher}
 
- AppPublisherURL={#MyAppURL}
 
- AppSupportURL={#MyAppURL}
 
- AppUpdatesURL={#MyAppURL}
 
- DefaultDirName=C:\CyberX8\{#MyAppName}
 
- DefaultGroupName={#MyAppName}
 
- ; Uncomment the following line to run in non administrative install mode (install for current user only.)
 
- ;PrivilegesRequired=lowest
 
- OutputBaseFilename={#MyAppName}_{#MyAppVersion}
 
- Compression=lzma
 
- SolidCompression=yes
 
- WizardStyle=modern
 
- LicenseFile=License.txt
 
- UsePreviousAppDir=no
 
- [Languages]
 
- Name: "english"; MessagesFile: "compiler:Default.isl"
 
- [Files]
 
- Source: "..\CyberX8_UI\bin\Release\*";Excludes:"Config,{#MyAppName}.exe.config"; DestDir: "{app}"; Flags: recursesubdirs createallsubdirs
 
- Source: "..\CyberX8_UI\bin\Release\Config\*"; DestDir: "{app}\Config"; Flags: onlyifdoesntexist
 
- Source: "..\CyberX8_UI\bin\Release\{#MyAppName}.exe.config"; DestDir: "{app}"; Flags: onlyifdoesntexist
 
- Source: "..\CyberX8_UI\bin\Release\{#MyAppName}.exe"; DestDir: "{app}"; Flags: ignoreversion overwritereadonly confirmoverwrite
 
- Source: "..\CyberX8_UI\bin\Release\*.dll"; DestDir: "{app}"; Flags: ignoreversion overwritereadonly
 
- [Icons]
 
- Name: "{userdesktop}\{#MyAppName}";Filename: "{app}\{#MyAppName}.exe"; WorkingDir: "{app}"
 
 
  |