Skip to content

Commit

Permalink
installer
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciussanchez committed Nov 26, 2021
1 parent f6049f1 commit 02e9047
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const XmlTagNameCompilerOptions string = "CompilerOptions"
const XmlTagNameSearchPaths string = "SearchPaths"
const XmlTagNameOtherUnitFiles string = "OtherUnitFiles"

const Version string = "v3.0.5"
const Version string = "3.0.5"

const BossInternalDir = "internal."
const BossInternalDirOld = "{internal}"
Expand Down
9 changes: 7 additions & 2 deletions installer/boss.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define BossName "Boss"
#define BossVersion "3.0.3"
#define BossVersion "3.0.5"
#define BossPublisher "Hashload"
#define BossURL "https://github.com/HashLoad/boss"

Expand All @@ -22,6 +22,11 @@ OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes

;"ArchitecturesAllowed=x64" specifies that Setup cannot run on anything but x64.
ArchitecturesAllowed=x64
;"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.
ArchitecturesInstallIn64BitMode=x64

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Name: "brazilianportuguese"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl"
Expand Down Expand Up @@ -69,7 +74,7 @@ end;
Name: "{app}"; Permissions: everyone-full

[Files]
Source: "..\boss.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "boss.exe"; DestDir: "{app}"; Flags: ignoreversion

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

0 comments on commit 02e9047

Please sign in to comment.