Skip to content

Remove Experimental from certain API #613

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,6 @@ export default defineConfig({
{
label: "Command API",
collapsed: true,
badge: {
text: "Experimental",
variant: "danger",
},
items: [
{
label: "Basics",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ It offers many advantages above the previously widely used Bukkit command system
- Integration with reload events, allowing the definition of commands usable in datapacks.
- Easier creation of subcommands.

:::danger[Experimental]

Paper's command system is still experimental and may change in the future.

:::

:::note

To see a comparison between the new Brigadier system and the old Bukkit system, [click here](/paper/dev/command-api/misc/comparison-bukkit-brigadier).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ description: A comparison between Brigadier and Bukkit commands.
slug: paper/dev/command-api/misc/comparison-bukkit-brigadier
---

:::danger[Experimental]

Paper's command system is still experimental and may change in the future.

:::

## Registering commands
### The old Bukkit way

Expand Down
10 changes: 0 additions & 10 deletions src/content/docs/paper/dev/api/lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,13 @@
title: Lifecycle API
description: A guide to Paper's Lifecycle API.
slug: paper/dev/lifecycle
sidebar:
badge:
text: Experimental
variant: danger
---

The lifecycle API can be used for lifecycle-related registration. It is currently used by the
Brigadier command API. It is planned to be used for the Registry Modification API as well.
Generally, systems that are initialized very early in the startup process can take advantage of this
event system.

:::danger[Experimental]

The Lifecycle API and anything that uses it is currently experimental and may change in the future.

:::

## LifecycleEventManager

The [LifecycleEventManager](jd:paper:io.papermc.paper.plugin.lifecycle.event.LifecycleEventManager) is tied
Expand Down