Skip to content

Commit 02e9047

Browse files
installer
1 parent f6049f1 commit 02e9047

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

consts/consts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const XmlTagNameCompilerOptions string = "CompilerOptions"
4242
const XmlTagNameSearchPaths string = "SearchPaths"
4343
const XmlTagNameOtherUnitFiles string = "OtherUnitFiles"
4444

45-
const Version string = "v3.0.5"
45+
const Version string = "3.0.5"
4646

4747
const BossInternalDir = "internal."
4848
const BossInternalDirOld = "{internal}"

installer/boss.iss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define BossName "Boss"
2-
#define BossVersion "3.0.3"
2+
#define BossVersion "3.0.5"
33
#define BossPublisher "Hashload"
44
#define BossURL "https://github.com/HashLoad/boss"
55

@@ -22,6 +22,11 @@ OutputBaseFilename=setup
2222
Compression=lzma
2323
SolidCompression=yes
2424

25+
;"ArchitecturesAllowed=x64" specifies that Setup cannot run on anything but x64.
26+
ArchitecturesAllowed=x64
27+
;"ArchitecturesInstallIn64BitMode=x64" requests that the install be done in "64-bit mode" on x64, meaning it should use the native 64-bit Program Files directory and the 64-bit view of the registry.
28+
ArchitecturesInstallIn64BitMode=x64
29+
2530
[Languages]
2631
Name: "english"; MessagesFile: "compiler:Default.isl"
2732
Name: "brazilianportuguese"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl"
@@ -69,7 +74,7 @@ end;
6974
Name: "{app}"; Permissions: everyone-full
7075

7176
[Files]
72-
Source: "..\boss.exe"; DestDir: "{app}"; Flags: ignoreversion
77+
Source: "boss.exe"; DestDir: "{app}"; Flags: ignoreversion
7378

7479
[Registry]
7580
Root: HKLM; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app}"; Check: NeedsAddPath('{app}')

0 commit comments

Comments
 (0)