Skip to content

Commit

Permalink
Adding registry key to enable TLS 1.2 support. Fixes #32
Browse files Browse the repository at this point in the history
  • Loading branch information
thommcgrath committed Feb 28, 2017
1 parent ea7d9b4 commit 206478d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Installers/Windows/Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ AllowNoIcons=yes
OutputBaseFilename=Install {#MyAppName}
Compression=lzma
SolidCompression=yes
MinVersion=6.1.7601

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Expand All @@ -40,5 +41,9 @@ Source: "..\..\Project\Builds - Beacon.xojo_project\Mac OS X (Cocoa Intel)\Beaco
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"

[Registry]
Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp"; ValueType: dword; ValueName: "DefaultSecureProtocols"; ValueData: 2560; Flags: createvalueifdoesntexist; OnlyBelowVersion: 6.2
Root: HKLM; Subkey: "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp"; ValueType: dword; ValueName: "DefaultSecureProtocols"; ValueData: 2560; Flags: createvalueifdoesntexist; Check: IsWin64; OnlyBelowVersion: 6.2

[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

0 comments on commit 206478d

Please sign in to comment.