From 13b6078447b53ff86f0b9ea1db8986a9b0af78d3 Mon Sep 17 00:00:00 2001 From: slfan1989 Date: Wed, 22 Jul 2026 13:53:12 +0800 Subject: [PATCH 1/2] docs: group ASF and pre-ASF releases in archives --- docs/.vuepress/config.ts | 41 ++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 48cfe02..837f4d8 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -46,15 +46,24 @@ const sidebar: SidebarOptions = [ }, { text: 'Archives', - prefix: 'archives', children: [ - '/archives/v8.0.0-incubating', - '/archives/v7.0.0-incubating', - '/archives/v6.0.0-incubating', - '/archives/v5.0.0', - '/archives/v4.0.1', - '/archives/v4.0.0', - '/archives/all-releases', + { + text: 'ASF Incubating Releases', + children: [ + { text: 'v8.0.0-incubating', link: '/archives/v8.0.0-incubating' }, + { text: 'v7.0.0-incubating', link: '/archives/v7.0.0-incubating' }, + { text: 'v6.0.0-incubating', link: '/archives/v6.0.0-incubating' }, + ], + }, + { + text: 'Pre-ASF Releases', + children: [ + { text: 'v5.0.0', link: '/archives/v5.0.0' }, + { text: 'v4.0.1', link: '/archives/v4.0.1' }, + { text: 'v4.0.0', link: '/archives/v4.0.0' }, + ], + }, + { text: 'All Archived Releases', link: '/archives/all-releases' }, ] }, ]; @@ -70,12 +79,16 @@ const navbar: NavbarOptions = [ { text: 'Release Guide', link: '/community/release-guide' }, ]}, { text: 'Archives', children: [ - { text: 'v8.0.0-incubating', link: '/archives/v8.0.0-incubating' }, - { text: 'v7.0.0-incubating', link: '/archives/v7.0.0-incubating' }, - { text: 'v6.0.0-incubating', link: '/archives/v6.0.0-incubating' }, - { text: 'v5.0.0', link: '/archives/v5.0.0' }, - { text: 'v4.0.1', link: '/archives/v4.0.1' }, - { text: 'v4.0.0', link: '/archives/v4.0.0' }, + { text: 'ASF Incubating Releases', children: [ + { text: 'v8.0.0-incubating', link: '/archives/v8.0.0-incubating' }, + { text: 'v7.0.0-incubating', link: '/archives/v7.0.0-incubating' }, + { text: 'v6.0.0-incubating', link: '/archives/v6.0.0-incubating' }, + ]}, + { text: 'Pre-ASF Releases', children: [ + { text: 'v5.0.0', link: '/archives/v5.0.0' }, + { text: 'v4.0.1', link: '/archives/v4.0.1' }, + { text: 'v4.0.0', link: '/archives/v4.0.0' }, + ]}, { text: 'All Archived Releases', link: '/archives/all-releases' }, ]}, { From 150f43df316fe61dab732ac5b12ac76dcf1b529a Mon Sep 17 00:00:00 2001 From: slfan1989 Date: Wed, 22 Jul 2026 15:09:45 +0800 Subject: [PATCH 2/2] docs: group ASF and pre-ASF releases in archives --- docs/.vuepress/config.ts | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 837f4d8..7a28547 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -47,16 +47,12 @@ const sidebar: SidebarOptions = [ { text: 'Archives', children: [ - { - text: 'ASF Incubating Releases', - children: [ - { text: 'v8.0.0-incubating', link: '/archives/v8.0.0-incubating' }, - { text: 'v7.0.0-incubating', link: '/archives/v7.0.0-incubating' }, - { text: 'v6.0.0-incubating', link: '/archives/v6.0.0-incubating' }, - ], - }, + { text: 'v8.0.0-incubating', link: '/archives/v8.0.0-incubating' }, + { text: 'v7.0.0-incubating', link: '/archives/v7.0.0-incubating' }, + { text: 'v6.0.0-incubating', link: '/archives/v6.0.0-incubating' }, { text: 'Pre-ASF Releases', + collapsible: true, children: [ { text: 'v5.0.0', link: '/archives/v5.0.0' }, { text: 'v4.0.1', link: '/archives/v4.0.1' }, @@ -79,11 +75,9 @@ const navbar: NavbarOptions = [ { text: 'Release Guide', link: '/community/release-guide' }, ]}, { text: 'Archives', children: [ - { text: 'ASF Incubating Releases', children: [ - { text: 'v8.0.0-incubating', link: '/archives/v8.0.0-incubating' }, - { text: 'v7.0.0-incubating', link: '/archives/v7.0.0-incubating' }, - { text: 'v6.0.0-incubating', link: '/archives/v6.0.0-incubating' }, - ]}, + { text: 'v8.0.0-incubating', link: '/archives/v8.0.0-incubating' }, + { text: 'v7.0.0-incubating', link: '/archives/v7.0.0-incubating' }, + { text: 'v6.0.0-incubating', link: '/archives/v6.0.0-incubating' }, { text: 'Pre-ASF Releases', children: [ { text: 'v5.0.0', link: '/archives/v5.0.0' }, { text: 'v4.0.1', link: '/archives/v4.0.1' },