diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-01-31 20:30:30 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-01-31 20:31:05 +0900 |
| commit | df1b621642c08c37619d8c684729115b59887bd0 (patch) | |
| tree | 7b9f5824af67f41a9df7f084ee0916e53a08d285 | |
| parent | 28436a3dea7aaed50f06be9a905e9a461d145966 (diff) | |
| download | LunaticChat-df1b621642c08c37619d8c684729115b59887bd0.tar.gz LunaticChat-df1b621642c08c37619d8c684729115b59887bd0.tar.bz2 LunaticChat-df1b621642c08c37619d8c684729115b59887bd0.zip | |
docs: Update docs
| -rw-r--r-- | .github/workflows/release.yaml | 6 | ||||
| -rw-r--r-- | docs/.vitepress/config/en.ts | 13 | ||||
| -rw-r--r-- | docs/.vitepress/config/ja.ts | 13 | ||||
| -rw-r--r-- | docs/src/en/guide/getting-started.md | 13 | ||||
| -rw-r--r-- | docs/src/en/guide/patch-notes/cache-file.md | 5 | ||||
| -rw-r--r-- | docs/src/en/guide/patch-notes/plugin.md | 9 | ||||
| -rw-r--r-- | docs/src/guide/getting-started.md | 4 | ||||
| -rw-r--r-- | docs/src/guide/patch-notes/cache-file.md | 5 | ||||
| -rw-r--r-- | docs/src/guide/patch-notes/plugin.md | 9 |
9 files changed, 19 insertions, 58 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d130b85..1df5612 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -96,12 +96,12 @@ jobs: TAG_NAME=${GITHUB_REF#refs/tags/} VERSION=${{ needs.validate.outputs.version }} JAR_NAME=${{ needs.validate.outputs.jar_name }} - VERSION_ANCHOR=$(echo "$VERSION" | tr -d '.') gh release create "$TAG_NAME" \ "$JAR_NAME" \ --title "$TAG_NAME" \ - --notes "Please refer to [changelog](./CHANGELOG.md#v${VERSION_ANCHOR}) for update details." + --draft \ + --notes "" - name: Publish to Modrinth uses: cloudnode-pro/modrinth-publish@0a5268ad092d4727bb6424326746fa2fe88761ff # v2 @@ -112,7 +112,7 @@ jobs: version: ${{ needs.validate.outputs.version }} channel: beta changelog: | - Please refer to [changelog](https://github.com/m1sk9/LunaticChat/blob/main/CHANGELOG.md) for update details. + Please refer to the [GitHub release](https://github.com/m1sk9/LunaticChat/releases/tag/v${{ needs.validate.outputs.version }}) for update details. loaders: paper game-versions: "1.21.x" files: ${{ needs.validate.outputs.jar_name }} diff --git a/docs/.vitepress/config/en.ts b/docs/.vitepress/config/en.ts index 24a3691..f1b6723 100644 --- a/docs/.vitepress/config/en.ts +++ b/docs/.vitepress/config/en.ts @@ -80,19 +80,6 @@ export const en: DefaultTheme.Config = { }, ], }, - { - text: 'Patch Notes', - items: [ - { - text: 'Plugin', - link: '/en/guide/patch-notes/plugin', - }, - { - text: 'Cache File', - link: '/en/guide/patch-notes/cache-file', - }, - ], - }, ], '/en/reference/': [ { diff --git a/docs/.vitepress/config/ja.ts b/docs/.vitepress/config/ja.ts index 4beec42..12c8992 100644 --- a/docs/.vitepress/config/ja.ts +++ b/docs/.vitepress/config/ja.ts @@ -80,19 +80,6 @@ export const ja: DefaultTheme.Config = { }, ], }, - { - text: 'パッチノート', - items: [ - { - text: 'プラグイン', - link: '/guide/patch-notes/plugin', - }, - { - text: 'キャッシュファイル', - link: '/guide/patch-notes/cache-file', - }, - ], - }, ], '/reference/': [ { diff --git a/docs/src/en/guide/getting-started.md b/docs/src/en/guide/getting-started.md index 1fd9f0d..e7aaf2d 100644 --- a/docs/src/en/guide/getting-started.md +++ b/docs/src/en/guide/getting-started.md @@ -27,3 +27,16 @@ Basic permissions can be configured using Paper or Velocity's default permission - For details on permission nodes, refer to the [Permissions Guide](../reference/permissions.md). - For permission nodes corresponding to each command feature, refer to the [Command Reference](../reference/index.md). + +## Restart the server + +After completing the configuration, restart the server to apply the changes. + +This completes the basic setup of LunaticChat. + +## What's next? + +- [Cache System](./admin/cache.md): Explains LunaticChat's cache system. +- [Channel Chat](./admin/channel-chat/introduction.md): Overview of the channel chat feature. +- [Command List](../reference/index.md): View the list of LunaticChat commands. +- [Permissions List](../reference/permissions.md): View LunaticChat's permission nodes. diff --git a/docs/src/en/guide/patch-notes/cache-file.md b/docs/src/en/guide/patch-notes/cache-file.md deleted file mode 100644 index 1f5fe05..0000000 --- a/docs/src/en/guide/patch-notes/cache-file.md +++ /dev/null @@ -1,5 +0,0 @@ -# Patch Notes: Cache File - -| Cache Version | Supported Versions | -|------------|-----------| -| v1 | v0.1.0 ~ | diff --git a/docs/src/en/guide/patch-notes/plugin.md b/docs/src/en/guide/patch-notes/plugin.md deleted file mode 100644 index 0559417..0000000 --- a/docs/src/en/guide/patch-notes/plugin.md +++ /dev/null @@ -1,9 +0,0 @@ -# Patch Notes: Plugin - -Plugin patch notes are not listed here. Please refer to the [GitHub releases page](https://github.com/m1sk9/LunaticChat/releases) or the [release notes category on the discussions page](https://github.com/m1sk9/LunaticChat/discussions/categories/announcements). - ----- - -| Major Version | Codename | Development Period | Supported Versions | -|-----------|---------|-----------|-----------| -| v0 | lunatic | 2026/01 ~ | 1.21.x | diff --git a/docs/src/guide/getting-started.md b/docs/src/guide/getting-started.md index 3c55628..83b125f 100644 --- a/docs/src/guide/getting-started.md +++ b/docs/src/guide/getting-started.md @@ -73,4 +73,6 @@ LunaticChat のパーミッションを LuckPerms などのパーミッション ## 次は? - [キャッシュシステム](./admin/cache.md): LunaticChat のキャッシュシステムについて説明します. -- [] +- [チャンネルチャット](./admin/channel-chat/introduction.md): チャンネルチャット機能の概要を説明します. +- [コマンド一覧](../reference/index.md): LunaticChat のコマンド一覧を確認します. +- [パーミッション一覧](../reference/permissions.md): LunaticChat のパーミッションノード一覧を確認します. diff --git a/docs/src/guide/patch-notes/cache-file.md b/docs/src/guide/patch-notes/cache-file.md deleted file mode 100644 index 654dc77..0000000 --- a/docs/src/guide/patch-notes/cache-file.md +++ /dev/null @@ -1,5 +0,0 @@ -# パッチノート: キャッシュファイル - -| キャッシュバージョン | サポートバージョン | -|------------|-----------| -| v1 | v0.1.0 ~ | diff --git a/docs/src/guide/patch-notes/plugin.md b/docs/src/guide/patch-notes/plugin.md deleted file mode 100644 index 9fc1ad2..0000000 --- a/docs/src/guide/patch-notes/plugin.md +++ /dev/null @@ -1,9 +0,0 @@ -# パッチノート: プラグイン - -プラグインのパッチノートはここでは記載していません.[GitHubのリリースページ](https://github.com/m1sk9/LunaticChat/releases) や [ディスカッションページのリリースノートカテゴリー](https://github.com/m1sk9/LunaticChat/discussions/categories/announcements) をご覧ください. - ----- - -| メジャーバージョン | コードネーム | 開発期間 | サポートバージョン | -|-----------|---------|-----------|-----------| -| v0 | lunatic | 2026/01 ~ | 1.21.x | |
