Rename project wizard pages and group into sections

This commit is contained in:
Karol Lewandowski 2025-04-24 15:58:12 +02:00 committed by Karol Lewandowski
parent 3ecc8f13e0
commit 4b277ec41f
4 changed files with 22 additions and 8 deletions

View File

@ -149,14 +149,17 @@
<toc-element topic="project_model.md" accepts-web-file-names="project-structure.html">
<toc-element topic="project.md">
<toc-element topic="trusted_projects.md"/>
<toc-element topic="project_wizards_intro.md">
<toc-element topic="new_project_wizard.md"/>
<toc-element topic="project_wizard.md"/>
<toc-element topic="intro_project_wizard.md" accepts-web-file-names="project_wizard.html">
<toc-element topic="legacy_project_wizard.md">
<toc-element topic="intro_project_wizard.md" accepts-web-file-names="project_wizard.html,project-wizard.html">
<toc-element topic="adding_new_steps.md"/>
<toc-element topic="module_types.md"/>
</toc-element>
<toc-element topic="framework.md"/>
</toc-element>
</toc-element>
</toc-element>
<toc-element topic="module.md"/>
<toc-element topic="sdk.md"/>
<toc-element topic="library.md"/>

View File

@ -1,9 +1,11 @@
<!-- Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Project Wizard - Adding Support for Creating New Project Types
# Legacy Project Wizard API
<link-summary>Implementing a custom project creation wizard.</link-summary>
> Plugins targetting versions 2024.2 and newer should implement [](new_project_wizard.md).
## Project Wizard
Working with the project wizard can be illustrated with the [RedLine SmallTalk plugin](https://github.com/bulenkov/RedlineSmalltalk). See also [](intro_project_wizard.md).

View File

@ -1,6 +1,6 @@
<!-- Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# New Project Wizard
# New Project Wizard API
<primary-label ref="2024.2"/>
<link-summary>Implementing a custom project and module creation wizard.</link-summary>

View File

@ -0,0 +1,9 @@
<!-- Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Project Wizards
Creating a project in IntelliJ-based IDEs is achieved with [project wizards](https://www.jetbrains.com/help/idea/new-project-wizard.html) gathering information about the created project and generating it.
IntelliJ Platform provides APIs to implement wizards:
- [](new_project_wizard.md) — available since 2024.2
- [](legacy_project_wizard.md) — an old API, not recommended to implement in plugins targeting versions 2024.2 and newer