Skip to content

Commit

Permalink
feat: Install recommended config via setup by default
Browse files Browse the repository at this point in the history
  • Loading branch information
cetteup committed Feb 15, 2023
1 parent 55c6982 commit f5f79d7
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions cmd/joinme.click-launcher/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,18 @@ PrivilegesRequired=lowest
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"

[Types]
Name: "full"; Description: "Full installation"
Name: "custom"; Description: "Custom installation"; Flags: iscustom

[Components]
Name: "launcher"; Description: "Launcher"; Types: full custom; Flags: fixed
Name: "config"; Description: "Recommended configuration"; Types: full

[Files]
Source: "joinme.click-launcher.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "resource\icon.ico"; DestDir: "{app}"; Flags: ignoreversion
Source: "joinme.click-launcher.exe"; DestDir: "{app}"; Flags: ignoreversion; Components: "launcher"
Source: "resource\icon.ico"; DestDir: "{app}"; Flags: ignoreversion; Components: "launcher"
Source: "..\..\config.recommended.yaml"; DestDir: "{app}"; DestName: "config.yaml"; Flags: ignoreversion; Components: "config"

[Run]
Filename: "{app}\joinme.click-launcher.exe"; Parameters: "-quiet"
Expand Down

0 comments on commit f5f79d7

Please sign in to comment.