Skip to content
Snippets Groups Projects
Commit a66175b9 authored by sphere's avatar sphere
Browse files

Update installer to improve GPL screen

parent 388e206d
Branches master
No related tags found
No related merge requests found
...@@ -24,8 +24,8 @@ AppVerName=Ultimate Zone Builder {#UZB_GetVersionString} ({#UZB_arch}) ...@@ -24,8 +24,8 @@ AppVerName=Ultimate Zone Builder {#UZB_GetVersionString} ({#UZB_arch})
VersionInfoVersion={#UZB_GetVersionString} VersionInfoVersion={#UZB_GetVersionString}
AppPublisher=Sonic Team Junior AppPublisher=Sonic Team Junior
AppPublisherURL=https://www.srb2.org/ AppPublisherURL=https://www.srb2.org/
AppSupportURL=https://git.do.srb2.org/STJr/UltimateZoneBuilder AppSupportURL=https://git.do.srb2.org/STJr/UltimateZoneBuilder/-/issues
AppUpdatesURL=https://git.do.srb2.org/STJr/UltimateZoneBuilder AppUpdatesURL=https://git.do.srb2.org/STJr/UltimateZoneBuilder/-/releases
DefaultDirName={commonpf}\Ultimate Zone Builder DefaultDirName={commonpf}\Ultimate Zone Builder
DefaultGroupName=Ultimate Zone Builder DefaultGroupName=Ultimate Zone Builder
AllowNoIcons=true AllowNoIcons=true
...@@ -141,7 +141,25 @@ procedure InitializeWizard(); ...@@ -141,7 +141,25 @@ procedure InitializeWizard();
begin begin
// .Net and VC Redistributables. Those come from CodeDependencies.iss // .Net and VC Redistributables. Those come from CodeDependencies.iss
Dependency_AddDotNet47; Dependency_AddDotNet47;
//Dependency_AddVC2015To2022; //Dependency_AddVC2015To2022;
// Hide radio buttons and pre-select "accept", to enable "next" button
WizardForm.LicenseAcceptedRadio.Checked := True;
WizardForm.LicenseAcceptedRadio.Visible := False;
WizardForm.LicenseNotAcceptedRadio.Visible := False;
WizardForm.LicenseMemo.Height :=
WizardForm.LicenseNotAcceptedRadio.Top +
WizardForm.LicenseNotAcceptedRadio.Height -
WizardForm.LicenseMemo.Top - ScaleY(5);
end;
procedure CurPageChanged(CurPageID: Integer);
begin
// Dubious, but you have asked for it
if CurPageID = wpLicense then
begin
WizardForm.NextButton.Caption := '&Next';
end;
end; end;
//Remove configs? //Remove configs?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment