Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
UltimateZoneBuilder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
UltimateZoneBuilder
Commits
a66175b9
Commit
a66175b9
authored
1 year ago
by
sphere
Browse files
Options
Downloads
Patches
Plain Diff
Update installer to improve GPL screen
parent
388e206d
Branches
master
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Setup/UZBuilder_setup.iss
+21
-3
21 additions, 3 deletions
Setup/UZBuilder_setup.iss
with
21 additions
and
3 deletions
Setup/UZBuilder_setup.iss
+
21
−
3
View file @
a66175b9
...
@@ -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?
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment