Skip to content

Commit 866ea4a

Browse files
author
Quaxdrone(Nijo Fukushi)
authored
Merge pull request #10 from GangOfFloppa/Quaxdrone-patch-9
Add files via upload
2 parents a7fdb3c + 1069ba0 commit 866ea4a

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
; Script generated by the Inno Setup Script Wizard.
2+
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3+
4+
#define MyAppName "DearPyInjector-Installer"
5+
#define MyAppVersion "1.0"
6+
#define MyAppPublisher "Gang Of Floppa"
7+
#define MyAppURL "https://www.example.com/"
8+
#define MyAppExeName "DearPyInjectorRustClient.exe"
9+
10+
[Setup]
11+
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
12+
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
13+
AppId={{ACB2C5B3-CF95-4C1C-8C90-591B3A51F839}
14+
AppName={#MyAppName}
15+
AppVersion={#MyAppVersion}
16+
;AppVerName={#MyAppName} {#MyAppVersion}
17+
AppPublisher={#MyAppPublisher}
18+
AppPublisherURL={#MyAppURL}
19+
AppSupportURL={#MyAppURL}
20+
AppUpdatesURL={#MyAppURL}
21+
DefaultDirName={autopf}\DearPyInjector
22+
DefaultGroupName=DearPyInjector
23+
LicenseFile=C:\Users\fvc\Documents\MITLicense.txt
24+
InfoBeforeFile=C:\Users\fvc\Documents\Information.txt
25+
; Uncomment the following line to run in non administrative install mode (install for current user only.)
26+
;PrivilegesRequired=lowest
27+
OutputDir=C:\Users\fvc\InnoSetup\Projects\DearPyInstaller
28+
OutputBaseFilename=setup
29+
Compression=lzma
30+
SolidCompression=yes
31+
WizardStyle=modern
32+
33+
[Languages]
34+
Name: "english"; MessagesFile: "compiler:Default.isl"
35+
36+
[Tasks]
37+
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
38+
39+
[Files]
40+
Source: "D:\VSCode\Python\DearPyInjectorRustClient\dist\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
41+
Source: "D:\VSCode\Python\DearPyInjectorRustClient\*"; DestDir: "{app}"; Flags: recursesubdirs ignoreversion
42+
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
43+
44+
[Icons]
45+
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
46+
Name: "{group}\{cm:ProgramOnTheWeb,{#MyAppName}}"; Filename: "{#MyAppURL}"
47+
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
48+
49+
[Run]
50+
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
51+

0 commit comments

Comments
 (0)