├── .devcontainer └── devcontainer.json ├── .github └── workflows │ └── deploy.yaml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── index.html ├── lit-localize.json ├── package.json ├── public ├── icons │ ├── icon_hdpi_72.png │ ├── icon_hi_res_512.png │ ├── icon_mdpi_48.png │ ├── icon_xhdpi_96.png │ ├── icon_xxhdpi_144.png │ └── icon_xxxhdpi_192.png └── manifest.json ├── src ├── cards │ ├── basics-card.ts │ ├── device-card.ts │ ├── footer.ts │ ├── head-card.ts │ ├── header.ts │ ├── manifest-card.ts │ ├── notes-card.ts │ └── store-card.ts ├── components │ ├── app.ts │ ├── element.ts │ ├── form.ts │ ├── import-button.ts │ ├── import-images-button.ts │ ├── member-table.ts │ ├── radio-display.ts │ └── select-platform.ts ├── context.ts ├── dialogs │ ├── applications-dialog.ts │ ├── handlers-dialog.ts │ ├── icons-dialog.ts │ ├── screenshots-dialog.ts │ └── shortcuts-dialog.ts ├── generated │ ├── locale-codes.ts │ └── locales │ │ └── en-US.ts ├── index.css ├── index.ts ├── types.ts └── vite-env.d.ts ├── tsconfig.json ├── vite.config.ts └── xliff └── en-US.xlf /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/index.html -------------------------------------------------------------------------------- /lit-localize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/lit-localize.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/package.json -------------------------------------------------------------------------------- /public/icons/icon_hdpi_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/public/icons/icon_hdpi_72.png -------------------------------------------------------------------------------- /public/icons/icon_hi_res_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/public/icons/icon_hi_res_512.png -------------------------------------------------------------------------------- /public/icons/icon_mdpi_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/public/icons/icon_mdpi_48.png -------------------------------------------------------------------------------- /public/icons/icon_xhdpi_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/public/icons/icon_xhdpi_96.png -------------------------------------------------------------------------------- /public/icons/icon_xxhdpi_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/public/icons/icon_xxhdpi_144.png -------------------------------------------------------------------------------- /public/icons/icon_xxxhdpi_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/public/icons/icon_xxxhdpi_192.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/cards/basics-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/basics-card.ts -------------------------------------------------------------------------------- /src/cards/device-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/device-card.ts -------------------------------------------------------------------------------- /src/cards/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/footer.ts -------------------------------------------------------------------------------- /src/cards/head-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/head-card.ts -------------------------------------------------------------------------------- /src/cards/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/header.ts -------------------------------------------------------------------------------- /src/cards/manifest-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/manifest-card.ts -------------------------------------------------------------------------------- /src/cards/notes-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/notes-card.ts -------------------------------------------------------------------------------- /src/cards/store-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/cards/store-card.ts -------------------------------------------------------------------------------- /src/components/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/app.ts -------------------------------------------------------------------------------- /src/components/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/element.ts -------------------------------------------------------------------------------- /src/components/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/form.ts -------------------------------------------------------------------------------- /src/components/import-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/import-button.ts -------------------------------------------------------------------------------- /src/components/import-images-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/import-images-button.ts -------------------------------------------------------------------------------- /src/components/member-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/member-table.ts -------------------------------------------------------------------------------- /src/components/radio-display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/radio-display.ts -------------------------------------------------------------------------------- /src/components/select-platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/components/select-platform.ts -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/dialogs/applications-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/dialogs/applications-dialog.ts -------------------------------------------------------------------------------- /src/dialogs/handlers-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/dialogs/handlers-dialog.ts -------------------------------------------------------------------------------- /src/dialogs/icons-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/dialogs/icons-dialog.ts -------------------------------------------------------------------------------- /src/dialogs/screenshots-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/dialogs/screenshots-dialog.ts -------------------------------------------------------------------------------- /src/dialogs/shortcuts-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/dialogs/shortcuts-dialog.ts -------------------------------------------------------------------------------- /src/generated/locale-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/generated/locale-codes.ts -------------------------------------------------------------------------------- /src/generated/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/generated/locales/en-US.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/vite.config.ts -------------------------------------------------------------------------------- /xliff/en-US.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitm/appmanifest/HEAD/xliff/en-US.xlf --------------------------------------------------------------------------------