This app for Open Web Desktop displays the version and other information.
pnpm install
pnpm run dev:prepare
pnpm run devIn dev, the playground auto-opens the About window via playground/app/plugins/launch-about.client.ts (not used for static dev:generate / GitHub Pages).
Static preview (GitHub Pages):
pnpm run dev:generateUses @owdproject/theme-nova as the base shell in the monorepo playground.
Live demo: owdproject.github.io/app-about
Contributor/agent playbook (scaffold other apps the same way): OWD_APP_MODULE_PLAYGROUND.md in the client monorepo.
pnpm desktop add @owdproject/app-aboutexport default defineDesktopConfig({
apps: [
'@owdproject/app-about'
],
about: {
title: 'Open Web Desktop',
subtitle: 'github.com/owdproject/client',
href: 'https://github.com/owdproject/client',
versionText: 'v{desktopVersion} on Nuxt {nuxtVersion}',
icons: [
{
title: 'Open Web Desktop',
name: 'mdi:hexagon-multiple-outline',
size: 24,
},
]
}
})about
The application is released under the MIT License.