diff --git a/.gitignore b/.gitignore index d92675d..0d5b882 100644 --- a/.gitignore +++ b/.gitignore @@ -22,10 +22,8 @@ dist yarn.lock # Service-Worker -sw.js -sw.js.map -workbox-ab116399.js -workbox-ad213f2f.js.map +public/sw* +public/workbox* # Original images (converted to webp) public/convert diff --git a/.playground/app.config.ts b/.playground/app.config.ts index 7eeb0a7..d743134 100644 --- a/.playground/app.config.ts +++ b/.playground/app.config.ts @@ -1,42 +1,44 @@ +import pkg from './package.json' export default defineAppConfig({ myLayer: { - name: 'Create Google App', + name: 'PWA Starter App', meta: { - homepage: 'https://create-google-app.vercel.app/', - author: 'Kyrie Eleison', - email: 'jur.eleison@gmail.com' + homepage: pkg.homepage, + author: pkg.author, + email: 'jur.eleison@gmail.com', + version: `Playground ${pkg.version}` }, menu: { - btn1: 'Google', + btn1: 'Articles', }, notification: { - frontpage: 'How to create an google app in one week?', + frontpage: 'PWA Starter App by Kyrie Eleison for Theme: Create Google App', about: 'A laywer from Norway, Kyrie Eleison, has made this app! Like it? Follow him on GitHub!', privacy: 'Privacy police is normally not recuried, but because this app is published on Google Play - Google need it.', - list: 'Search and find what you are locking for - with the amazing search-functionality on this Google App.', - slug: 'Read the documentation with guidelines about how to create a Google App in one week.' + list: 'Search and find what you are locking for - with the amazing search-functionality on this PWA Starter App.', + slug: 'Read the documentation with guidelines about how to create a Google App in one week, in this starter app.' }, seoMeta: { home: { - title: 'How to Create an App and go on Google App Store?', - description: 'How to Create a Google App in less than a week, with no programming skills? Answer: Follow my guidelines and read this documentation:)' + title: 'PWA Starter App by Kyrie Eleison for Theme: Create Google App', + description: 'How to Create a Google App in less than a week, with no programming skills? Answer: Follow my guidlines and read this documentation:)' }, about: { - title: 'Information about this Google App, and going on "Google App Store"', - description: 'About the guidelines and description of how to create a google app' + title: 'Information about PWA Starter App and the articles about creating Google App"', + description: 'About "WA Starter App" and why its a perfect starter-kit for non-programmers.' }, privacy: { title: 'Privacy Policy following because this is an Google App.', - description: 'The Privacy Policy, Sitemap and Rss for "Create Google App". Privacy Policy is requrid for all Google Apps.' + description: 'The Privacy Policy, Sitemap and Rss for "PWA Starter App". Privacy Policy is requrid for all Google Apps.' }, list: { - tags: 'Documentation/guidelines in "Create Google App" with tag: ', + tags: 'Documentation/guidelines in "PWA Starter App" with tag: ', tags_all: 'All guidelines"', - description: 'This is the list of content in the "Create Google App" - with responsive design for mobile and laptop.' + description: 'This is the list of content in the "PWA Starter App" - with responsive design for mobile and laptop.' }, slug: { - description: 'Guidelines and documentation for "Create Google App" - a tutorial for non-programmers/non-developers!' + description: 'Guidelines and documentation for "PWA Starter App"; a starter-kit for non-programmers/non-developers!' } } - }, + } }) diff --git a/.playground/package.json b/.playground/package.json index f2377c3..d262e2f 100644 --- a/.playground/package.json +++ b/.playground/package.json @@ -1,5 +1,6 @@ { "name": "@lovkyndig/create-google-app-playground", - "version": "1.0.1-rc.8", - "homepage": "https://pwa-starter-app-playground.vercel.app" + "version": "1", + "homepage": "https://pwa-starter-app-playground.vercel.app", + "author": "Kyrie Eleison (https://github.com/lovkyndig)" } diff --git a/app.config.ts b/app.config.ts index 3176622..ff394b9 100644 --- a/app.config.ts +++ b/app.config.ts @@ -1,10 +1,12 @@ +import pkg from './package.json' export default defineAppConfig({ myLayer: { name: 'Create Google App', meta: { - homepage: 'https://create-google-app.vercel.app/', - author: 'Kyrie Eleison', - email: 'jur.eleison@gmail.com' + homepage: pkg.homepage, + author: pkg.author, + email: 'jur.eleison@gmail.com', + version: pkg.version }, menu: { btn1: 'Google' @@ -42,7 +44,7 @@ export default defineAppConfig({ site: { logo: '/img/svg/text-logo.svg', avatar: '/img/svg/avatar.svg', - favicon: '/favicon.svg' // favicon.ico + favicon: '/favicon.svg' }, homePage: { showBlogPosts: true, diff --git a/package.json b/package.json index dab858d..3c2b8b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lovkyndig/create-google-app", - "version": "1.0.1-rc.8", + "version": "1.0.1-rc.9", "type": "module", "main": "./nuxt.config.ts", "description": "⚡Nuxt layer with nuxt-content, full search-functionality, pwa and guide to how to publish to Google Play Store.", diff --git a/pages/index.vue b/pages/index.vue index 4ddbd0e..222209e 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -1,7 +1,6 @@