Remove 'Experimental' label from Core Build Makefile projects. (#805)

Removed the 'Experimental' label in project creation wizard for Core
Build Makefile projects. Seven years after the inception it's time to
remove it. Core Build Makefile is now in a usable state. The
'Experimental' label scares users away from it, making them fall back
to the old Managed Build Makefile projects.
This commit is contained in:
ewaterlander 2024-05-30 15:25:37 +02:00 committed by GitHub
parent 4eb08c8554
commit d8328fb061
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.make.ui; singleton:=true
Bundle-Version: 8.3.0.qualifier
Bundle-Version: 8.3.100.qualifier
Bundle-Activator: org.eclipse.cdt.make.internal.ui.MakeUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -629,7 +629,7 @@
label="Makefile Project"
wizard="org.eclipse.cdt.make.internal.ui.wizards.NewMakefileProjectWizard">
<description>
(Experimental) Create a new project that builds with the&apos;make&apos; build tool using CDT&apos;s new Core Build System.
Create a Makefile project using CDT&apos;s new Core Build System. Over existing content or a new project with optional Hello World example.
</description>
<tagReference
id="org.eclipse.cdt.ui.cdtTag">

View file

@ -27,7 +27,7 @@ import org.eclipse.ui.dialogs.WizardNewProjectCreationPage;
public class NewMakefileProjectWizard extends TemplateWizard {
private WizardNewProjectCreationPage mainPage;
private boolean generateSource = true;
private boolean generateSource = false;
@Override
public void setContainer(IWizardContainer wizardContainer) {
@ -50,7 +50,7 @@ public class NewMakefileProjectWizard extends TemplateWizard {
Button genSourceButton = new Button(buttonComp, SWT.CHECK);
genSourceButton.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
genSourceButton.setText("Generate Source and Makefile");
genSourceButton.setText("Create Hello World Source and Makefile example");
genSourceButton.setSelection(generateSource);
genSourceButton.addSelectionListener(new SelectionAdapter() {
@Override