Skip to content

Commit

Permalink
Merge pull request #76 from AlexAltea/patch-1
Browse files Browse the repository at this point in the history
Fix typo in installer
  • Loading branch information
anthonylavado authored Nov 30, 2022
2 parents 51f85b8 + ca38b3a commit 6f964e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nsis/dialogs/service-config.nsddef
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Do not edit manually!
-->
<Dialog Name="service_config" Title="CoOnfigure the service" Subtitle="This controls what type of access the server gets to this system." GenerateShowFunction="False">
<CheckBox Name="StartServiceAfterInstall" Location="12, 192" Size="426, 24" Text="Start Service after Install" Checked="True" TabIndex="0" />
<Label Name="LocalSystemAccountLabel" Location="12, 115" Size="426, 46" Text="The Local System account has full access to every resource and file on the system. This can have very real security implications. Do not use unless absolutely neseccary." TabIndex="1" />
<Label Name="LocalSystemAccountLabel" Location="12, 115" Size="426, 46" Text="The Local System account has full access to every resource and file on the system. This can have very real security implications. Do not use unless absolutely necessary." TabIndex="1" />
<Label Name="NetworkServiceAccountLabel" Location="12, 39" Size="426, 46" Text="The NetworkService account is a predefined local account used by the service control manager. It is the recommended way to install the Jellyfin Server service." TabIndex="2" />
<RadioButton Name="UseLocalSystemAccount" Location="12, 88" Size="426, 24" Text="Use Local System account" TabIndex="3" />
<RadioButton Name="UseNetworkServiceAccount" Location="12, 12" Size="426, 24" Text="Use Network Service account (Recommended)" Font="Microsoft Sans Serif, 8.25pt, style=Bold" Checked="True" TabIndex="4" />
Expand Down
2 changes: 1 addition & 1 deletion nsis/dialogs/service-config.nsdinc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Function fnc_service_config_Create
${NSD_Check} $hCtl_service_config_StartServiceAfterInstall

; === LocalSystemAccountLabel (type: Label) ===
${NSD_CreateLabel} 8u 71u 280u 28u "The Local System account has full access to every resource and file on the system. This can have very real security implications. Do not use unless absolutely neseccary."
${NSD_CreateLabel} 8u 71u 280u 28u "The Local System account has full access to every resource and file on the system. This can have very real security implications. Do not use unless absolutely necessary."
Pop $hCtl_service_config_LocalSystemAccountLabel

; === NetworkServiceAccountLabel (type: Label) ===
Expand Down

0 comments on commit 6f964e6

Please sign in to comment.