diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 32d9dad..64f262e 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -39,7 +39,7 @@ export default withPwa(defineConfig({ siteTitle: "WinDurango", nav: [ { text: 'Home', link: '/' }, - { text: 'Contributing', link: '/build-contrib' }, + { text: 'Setup', link: '/build-contrib' }, { text: 'Team', link: '/team' }, ], @@ -78,7 +78,7 @@ export default withPwa(defineConfig({ transformHead: ({ pageData }) => { const head: HeadConfig[] = [] - head.push(['meta', { property: 'og:title', content: `${pageData.title} | ${title}`}]); + head.push(['meta', { property: 'og:title', content: `${pageData.title} ${pageData.title != "" ? "|" : ""} ${title}`}]); head.push(['meta', { property: 'og:description', content: desc }]) head.push(['meta', { property: 'og:url', content: link + pageData.relativePath }]); head.push(['meta', { property: 'og:locale', content: 'en_US' }]); @@ -89,7 +89,7 @@ export default withPwa(defineConfig({ head.push(['link', { rel: 'canonical', href: link + pageData.relativePath }]); head.push(['meta', { name: 'robots', content: 'index, follow' }]); head.push(['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }]); - head.push(['meta', { name: 'twitter:title', content: `${pageData.title} | ${title}` }]); + head.push(['meta', { name: 'twitter:title', content: `${pageData.title} ${pageData.title != "" ? "|" : ""} ${title}` }]); head.push(['meta', { name: 'twitter:description', content: desc }]); head.push(['meta', { name: 'twitter:url', content: link + pageData.relativePath }]); diff --git a/docs/build-contrib.md b/docs/build-contrib.md index a2d636d..0fdada1 100644 --- a/docs/build-contrib.md +++ b/docs/build-contrib.md @@ -9,11 +9,11 @@ 4. Visual Studio 2022 OR WinDbg (for debugging if needed) 5. Visual C++ Redistributables (unsure which are needed) 6. Graphics Tools (from `Settings > Apps > Optional Features` (Windows 10) or `Settings > System > Optional Features` (Windows 11)) -7. The latest release/[artifact](https://github.com/WinDurango/WinDurango/actions/workflows/msbuild.yml) +7. The latest [release](https://github.com/WinDurango/WinDurango/releases)/[artifact](https://github.com/WinDurango/WinDurango/actions/workflows/msbuild.yml) ### To build -1. Everything from [the launch requirements](#to-launch) +1. Everything from [the launch requirements](#to-launch) (except for the release/artifact) 2. Windows 10 (or later) 3. Windows App SDK 4. Visual Studio 2022 @@ -31,7 +31,7 @@ ## Running the package To run the package, you need to setup the [Launch prerequisites](#to-launch) and have already [registered the package](#registering-the-uwp-package). -You'll need to also copy in all the DLLs from the latest release/[artifact](https://github.com/WinDurango/WinDurango/actions/workflows/msbuild.yml) into your app's Mount folder (the folder that has the EXE). +You'll need to also copy in all the DLLs from the latest [release](https://github.com/WinDurango/WinDurango/releases)/[artifact](https://github.com/WinDurango/WinDurango/actions/workflows/msbuild.yml) into your app's Mount folder (the folder that has the EXE). After that, you just need to open the app through the start menu. (or other preferred way of running UWP apps)