From ede8890a08b3fbbb1f6df3b8c277ab6424d1befd Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 15 Oct 2024 01:22:24 +0000 Subject: docs: better explain ags --- docs/vitepress.config.ts | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'docs/vitepress.config.ts') diff --git a/docs/vitepress.config.ts b/docs/vitepress.config.ts index 47ed81e..843d3d3 100644 --- a/docs/vitepress.config.ts +++ b/docs/vitepress.config.ts @@ -59,8 +59,8 @@ export default defineConfig({ ], }, { - text: "AGS", - base: "/guide/ags", + text: "TypeScript", + base: "/guide/typescript", collapsed: false, items: [ { text: "Installation", link: "/installation" }, @@ -75,12 +75,23 @@ export default defineConfig({ { text: "FAQ", link: "/faq" }, ], }, + { + text: "Lua", + base: "/guide/lua", + collapsed: false, + items: [ + { text: "Installation", link: "/installation" }, + { text: "First Widgets", link: "/first-widgets" }, + ], + }, { text: "Libraries", collapsed: true, items: [ { text: "References", link: "/guide/libraries/references" }, - { text: "Astal", link: "https://aylur.github.io/libastal" }, + { text: "AstalIO", link: "https://aylur.github.io/libastal/astal-io" }, + { text: "Astal3", link: "https://aylur.github.io/libastal/astal3" }, + { text: "Astal4", link: "https://aylur.github.io/libastal/astal4" }, { text: "Apps", link: "/guide/libraries/apps" }, { text: "Auth", link: "/guide/libraries/auth" }, { text: "Battery", link: "/guide/libraries/battery" }, -- cgit v1.2.3 From fe11c037bad45697451b7264ff93fa37f1fac78f Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 15 Oct 2024 11:55:53 +0000 Subject: docs: recommend /usr prefix by default --- docs/vitepress.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/vitepress.config.ts') diff --git a/docs/vitepress.config.ts b/docs/vitepress.config.ts index 843d3d3..2880477 100644 --- a/docs/vitepress.config.ts +++ b/docs/vitepress.config.ts @@ -89,9 +89,9 @@ export default defineConfig({ collapsed: true, items: [ { text: "References", link: "/guide/libraries/references" }, - { text: "AstalIO", link: "https://aylur.github.io/libastal/astal-io" }, + { text: "IO", link: "https://aylur.github.io/libastal/io" }, { text: "Astal3", link: "https://aylur.github.io/libastal/astal3" }, - { text: "Astal4", link: "https://aylur.github.io/libastal/astal4" }, + // { text: "Astal4", link: "https://aylur.github.io/libastal/astal4" }, { text: "Apps", link: "/guide/libraries/apps" }, { text: "Auth", link: "/guide/libraries/auth" }, { text: "Battery", link: "/guide/libraries/battery" }, -- cgit v1.2.3