Skip to content

Commit dfe6df3

Browse files
committed
installer: remove the "NEW!" label from quite a few things that are no longer new
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 072a158 commit dfe6df3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

installer/install.iss

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ Name: assoc; Description: Associate .git* configuration files with the default t
113113
Name: assoc_sh; Description: Associate .sh files to be run with Bash; Types: default
114114
Name: consolefont; Description: Use a TrueType font in all console windows; OnlyBelowVersion: 10.0
115115
Name: autoupdate; Description: Check daily for Git for Windows updates
116-
Name: windowsterminal; Description: "(NEW!) Add a Git Bash Profile to Windows Terminal"; MinVersion: 10.0.18362
116+
Name: windowsterminal; Description: "Add a Git Bash Profile to Windows Terminal"; MinVersion: 10.0.18362
117117
#ifdef WITH_SCALAR
118-
Name: scalar; Description: "(NEW!) Scalar (Git add-on to manage large-scale repositories)"; Types: default
118+
Name: scalar; Description: "Scalar (Git add-on to manage large-scale repositories)"; Types: default
119119
#endif
120120

121121

@@ -2068,13 +2068,13 @@ begin
20682068
// 9th choice
20692069
Top:=TopOfLabels;
20702070
CbbEditor.Items.Add('Use Notepad as Git'+#39+'s default editor');
2071-
CreateItemDescription(EditorPage,'<RED>(NEW!)</RED> Notepad is a simple GUI editor that comes with Windows.',Top,Left,LblEditor[GE_Notepad],False);
2071+
CreateItemDescription(EditorPage,'Notepad is a simple GUI editor that comes with Windows.',Top,Left,LblEditor[GE_Notepad],False);
20722072
EditorAvailable[GE_Notepad]:=True;
20732073
20742074
// 10th choice
20752075
Top:=TopOfLabels;
20762076
CbbEditor.Items.Add('Use Wordpad as Git'+#39+'s default editor');
2077-
CreateItemDescription(EditorPage,'<RED>(NEW!)</RED> Wordpad is a basic word processor that comes with Windows.'+#13+'It can also be used as a text editor.',Top,Left,LblEditor[GE_Wordpad],False);
2077+
CreateItemDescription(EditorPage,'Wordpad is a basic word processor that comes with Windows.'+#13+'It can also be used as a text editor.',Top,Left,LblEditor[GE_Wordpad],False);
20782078
EditorAvailable[GE_Wordpad]:=True;
20792079
20802080
// Custom choice
@@ -2164,7 +2164,7 @@ begin
21642164
RdbDefaultBranch[DB_Unspecified].OnClick:=@DefaultBranchOptionChanged;
21652165
21662166
// 2nd choice
2167-
RdbDefaultBranch[DB_Manual]:=CreateRadioButton(DefaultBranchPage,'Override the default branch name for new repositories','<RED>NEW!</RED> Many teams already renamed their default branches; common choices'+#13+'are "main", "trunk" and "development". Specify the name "git init" should use'+#13+'for the initial branch:',TabOrder,Top,Left);
2167+
RdbDefaultBranch[DB_Manual]:=CreateRadioButton(DefaultBranchPage,'Override the default branch name for new repositories','Many teams already renamed their default branches; common choices'+#13+'are "main", "trunk" and "development". Specify the name "git init" should use'+#13+'for the initial branch:',TabOrder,Top,Left);
21682168
RdbDefaultBranch[DB_Manual].OnClick:=@DefaultBranchOptionChanged;
21692169
21702170
// Text field for the overridden branch name
@@ -2297,7 +2297,7 @@ begin
22972297
22982298
// 3rd choice
22992299
RdbSSH[GS_ExternalOpenSSH]:=CreateRadioButton(SSHChoicePage,'Use external OpenSSH',
2300-
'<RED>NEW!</RED> This uses an external ssh.exe. Git will not install its own OpenSSH'+#13+
2300+
'This uses an external ssh.exe. Git will not install its own OpenSSH'+#13+
23012301
'(and related) binaries but use them as found on the PATH.',
23022302
TabOrder,Top,Left);
23032303
@@ -2491,21 +2491,21 @@ begin
24912491
#endif
24922492
24932493
#ifdef WITH_EXPERIMENTAL_BUILTIN_REBASE
2494-
RdbExperimentalOptions[GP_BuiltinRebase]:=CreateCheckBox(ExperimentalOptionsPage,'Enable experimental, built-in rebase','<RED>(NEW!)</RED> Use the experimental built-in rebase (about 70% faster, but only'+#13+'lightly tested).',TabOrder,Top,Left);
2494+
RdbExperimentalOptions[GP_BuiltinRebase]:=CreateCheckBox(ExperimentalOptionsPage,'Enable experimental, built-in rebase','Use the experimental built-in rebase (about 70% faster, but only'+#13+'lightly tested).',TabOrder,Top,Left);
24952495
24962496
// Restore the settings chosen during a previous install
24972497
RdbExperimentalOptions[GP_BuiltinRebase].Checked:=ReplayChoice('Enable Builtin Rebase','Auto')='Enabled';
24982498
#endif
24992499
25002500
#ifdef WITH_EXPERIMENTAL_BUILTIN_STASH
2501-
RdbExperimentalOptions[GP_BuiltinStash]:=CreateCheckBox(ExperimentalOptionsPage,'Enable experimental, built-in stash','<RED>(NEW!)</RED> Use the experimental built-in stash (about 90% faster, but only'+#13+'lightly tested).',TabOrder,Top,Left);
2501+
RdbExperimentalOptions[GP_BuiltinStash]:=CreateCheckBox(ExperimentalOptionsPage,'Enable experimental, built-in stash','Use the experimental built-in stash (about 90% faster, but only'+#13+'lightly tested).',TabOrder,Top,Left);
25022502
25032503
// Restore the settings chosen during a previous install
25042504
RdbExperimentalOptions[GP_BuiltinStash].Checked:=ReplayChoice('Enable Builtin Stash','Auto')='Enabled';
25052505
#endif
25062506
25072507
#ifdef WITH_EXPERIMENTAL_BUILTIN_ADD_I
2508-
RdbExperimentalOptions[GP_BuiltinAddI]:=CreateCheckBox(ExperimentalOptionsPage,'Enable experimental, built-in add -i/-p','<RED>(NEW!)</RED> Use the experimental built-in interactive add ("git add -i" or "git add -p").'+#13+'This makes it faster (especially the startup!), but it is not yet considered robust.',TabOrder,Top,Left);
2508+
RdbExperimentalOptions[GP_BuiltinAddI]:=CreateCheckBox(ExperimentalOptionsPage,'Enable experimental, built-in add -i/-p','Use the experimental built-in interactive add ("git add -i" or "git add -p").'+#13+'This makes it faster (especially the startup!), but it is not yet considered robust.',TabOrder,Top,Left);
25092509
25102510
// Restore the settings chosen during a previous install
25112511
RdbExperimentalOptions[GP_BuiltinAddI].Checked:=ReplayChoice('Enable Builtin Interactive Add','Auto')='Enabled';

0 commit comments

Comments
 (0)