Skip to content

Commit

Permalink
Merge remote-tracking branch 'einsiedler90/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
adrelanos committed Jul 29, 2024
2 parents a51e3cf + 5e52d6f commit 4162d72
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
18 changes: 10 additions & 8 deletions src/whonixinstaller_main.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ object InstallerForm: TInstallerForm
Height = 384
Top = 176
Width = 625
ActivePage = TabSheetInstallation
ActivePage = TabSheetConfiguration
Align = alClient
BorderSpacing.Around = 10
TabIndex = 2
TabIndex = 1
TabOrder = 0
OnChange = PageControlChange
object TabSheetLicense: TTabSheet
Expand Down Expand Up @@ -94,19 +94,19 @@ object InstallerForm: TInstallerForm
end
object LabelConfigurationDesc: TLabel
Left = 15
Height = 17
Height = 34
Top = 47
Width = 585
Align = alTop
BorderSpacing.Around = 15
Caption = 'Please select one of the installation types listed below.'
Caption = 'Please select one of the installation types listed below and click the "Execute" button to start the installation.'
ParentColor = False
WordWrap = True
end
object RadioButtonConfigFull: TRadioButton
Left = 15
Height = 23
Top = 89
Top = 106
Width = 585
Align = alTop
BorderSpacing.Top = 10
Expand All @@ -122,7 +122,7 @@ object InstallerForm: TInstallerForm
object RadioButtonConfigMinimal: TRadioButton
Left = 15
Height = 23
Top = 186
Top = 203
Width = 585
Align = alTop
BorderSpacing.Top = 10
Expand All @@ -131,11 +131,12 @@ object InstallerForm: TInstallerForm
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
Visible = False
end
object LabelConfigFullDesc: TLabel
Left = 31
Height = 34
Top = 127
Top = 144
Width = 569
Align = alTop
BorderSpacing.Left = 16
Expand All @@ -147,13 +148,14 @@ object InstallerForm: TInstallerForm
object LabelConfigMinimalDesc: TLabel
Left = 31
Height = 34
Top = 224
Top = 241
Width = 569
Align = alTop
BorderSpacing.Left = 16
BorderSpacing.Around = 15
Caption = 'This option installs the minimal requirements to launch Whonix on your computer. This means only VirtualBox and the Whonix VMs will be installed.'
ParentColor = False
Visible = False
WordWrap = True
end
end
Expand Down
4 changes: 2 additions & 2 deletions src/whonixinstaller_main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,10 @@ procedure TInstallerForm.InstallationBuildIn;
const
{$IFDEF WINDOWS}
defaultVBoxManagePath = 'C:\Program Files\Oracle\VirtualBox\VBoxManage.exe';
defaultWhonixStarterPath = 'C:\Program Files\Whonix\Whonix.exe';
defaultWhonixStarterPath = 'C:\Program Files\WhonixStarter\WhonixStarter.exe';
{$ELSE}
defaultVBoxManagePath = '/usr/bin/VBoxManage';
defaultWhonixStarterPath = '/usr/bin/Whonix';
defaultWhonixStarterPath = '/usr/bin/WhonixStarter';
{$ENDIF}
var
CurrentVBoxManagePath, CurrentWhonixStarterPath: string;
Expand Down

0 comments on commit 4162d72

Please sign in to comment.