Skip to content

Commit

Permalink
Cleanup Component Names
Browse files Browse the repository at this point in the history
  • Loading branch information
SE2Dev committed Nov 9, 2018
1 parent 0172ee2 commit 28bd860
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions installer/LinkerMod.iss
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@ Name: "GameMod"; Description: "Game Mod"; \
Flags: fixed

; exlusive flag makes them radio buttons
Name: "LinkerMod"; Description: "Mod Tools"; Types: full custom
Name: "LinkerMod\Utils"; Description: "Asset Utility"; Types: full; Flags:
Name: "LinkerMod\Mapping"; Description: "Radiant Mod"; Types: full; Flags:
Name: "LinkerMod\Assets"; Description: "Additional Assets"; Types: full; Flags: fixed
Name: "LinkerMod"; Description: "Mod Tools"; \
Types: full custom;
Name: "LinkerMod\Utils"; Description: "Asset Utility"; \
Types: full;
Name: "LinkerMod\Mapping"; Description: "Mapping Tools"; \
Types: full;
Name: "LinkerMod\Assets"; Description: "Additional Assets"; \
Types: full; \
Flags: fixed;

[Tasks]
Name: extract; Description: "Extract Assets"; \
Expand Down Expand Up @@ -90,7 +95,7 @@ Source: "{#BinSrcDir}\CoDWaWRadiant.exe"; DestDir: "{#BinDir}"; \
DestName: "CoDBORadiant.exe"; \
Components: LinkerMod\Mapping; \
Flags: ignoreversion; \
AfterInstall: PE_AddImport('radiant_mod.dll', '{#DEFAULT_EXPORT}');
AfterInstall: PE_AddImport('radiant_mod.dll', '{#DEFAULT_EXPORT}');

;
; Mod Tools asset files
Expand Down Expand Up @@ -153,7 +158,7 @@ end;
function NextButtonClick(curPageID:integer): boolean;
begin
// Automatically handle installation path validation
// If the given path isn't valid, we return false and the
// If the given path isn't valid, we return false and the
// installer won't continue to the next page
Result := Com_ValidateInstallPath(curPageID);
end;
Expand Down

0 comments on commit 28bd860

Please sign in to comment.