Skip to content

Commit

Permalink
Remove 'Experimental' label from Core Build Makefile projects. (#805)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ewaterlander authored May 30, 2024
1 parent 4eb08c8 commit d8328fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/org.eclipse.cdt.make.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/org.eclipse.cdt.make.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class NewMakefileProjectWizard extends TemplateWizard {

private WizardNewProjectCreationPage mainPage;
private boolean generateSource = true;
private boolean generateSource = false;

@Override
public void setContainer(IWizardContainer wizardContainer) {
Expand All @@ -50,7 +50,7 @@ public void createControl(Composite parent) {

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
Expand Down

0 comments on commit d8328fb

Please sign in to comment.