Skip to content

Commit fa6a7a3

Browse files
committed
Add version history pages
1 parent 010a6f1 commit fa6a7a3

File tree

5 files changed

+37
-0
lines changed

5 files changed

+37
-0
lines changed

astro.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,14 @@ export default defineConfig({
370370
label: "Migrating to Adventure from other APIs",
371371
items: ["adventure/migration/bungeecord-chat-api", "adventure/migration/text-3.x"],
372372
},
373+
{
374+
label: "Version History",
375+
items: [
376+
"adventure/version-history/adventure",
377+
"adventure/version-history/adventure-platform",
378+
"adventure/version-history/adventure-platform-fabric",
379+
],
380+
},
373381
],
374382
},
375383
{
@@ -441,6 +449,7 @@ export default defineConfig({
441449
"/adventure/platform",
442450
"/adventure/migration",
443451
"/adventure/contributing",
452+
"/adventure/version-history",
444453
],
445454
waterfall: ["/waterfall"],
446455
misc: ["/misc", "/misc/tools"],
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: adventure-platform-fabric
3+
description: Changelogs for the Fabric platform implementation!
4+
---
5+
6+
// TODO: Fetch changelogs from https://github.com/KyoriPowered/adventure-platform-fabric/releases/
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: adventure-platform
3+
description: The latest Adventure platform changelogs!
4+
---
5+
6+
// TODO: Fetch changelogs from https://github.com/KyoriPowered/adventure-platform/releases/.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: adventure
3+
description: The latest Adventure changelogs!
4+
---
5+
6+
// TODO: dynamically fetch changelogs from https://github.com/KyoriPowered/adventure/releases/.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Version History
3+
description: Pages dedicated to displaying the latest changelogs!
4+
---
5+
6+
import PageCards from "/src/components/PageCards.astro";
7+
8+
These changelogs for individual projects mirror those posted on the GitHub Releases page of each project's repository.
9+
10+
<PageCards />

0 commit comments

Comments
 (0)