Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
v1.0.1-rc.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lovkyndig committed Nov 2, 2023
1 parent 0d4af7e commit bf6154e
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 33 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
36 changes: 19 additions & 17 deletions .playground/app.config.ts
Original file line number Diff line number Diff line change
@@ -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!'
}
}
},
}
})
5 changes: 3 additions & 2 deletions .playground/package.json
Original file line number Diff line number Diff line change
@@ -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 <jur.eleison@gmail.com> (https://github.com/lovkyndig)"
}
10 changes: 6 additions & 4 deletions app.config.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
3 changes: 1 addition & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script setup lang="ts">
import { ref } from 'vue'
import type { NavItem } from '@nuxt/content/dist/runtime/types'
import pkg from '../package.json'
const appConfig = useAppConfig()
const runtimeConfig = useRuntimeConfig()
Expand Down Expand Up @@ -161,7 +160,7 @@ onMounted(() => {
})
useSeoMeta({
titleTemplate: `v${pkg.version} - ${appConfig.myLayer.seoMeta.home.title}`,
titleTemplate: `v${appConfig.myLayer.meta.version} - ${appConfig.myLayer.seoMeta.home.title}`,
description: appConfig.myLayer.seoMeta.home.description,
ogDescription: appConfig.myLayer.seoMeta.home.description,
ogUrl: `${runtimeConfig.public.hostname}`
Expand Down
1 change: 0 additions & 1 deletion public/sw.js

This file was deleted.

Loading

0 comments on commit bf6154e

Please sign in to comment.