Skip to content

Commit

Permalink
chore: release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoluoboding committed Nov 28, 2022
1 parent ebcdf84 commit 68b28c6
Show file tree
Hide file tree
Showing 5 changed files with 1,249 additions and 1,371 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [1.0.0](https://github.com/one-tab-group/bookmark.style/compare/v0.3.0...v1.0.0) (2022-11-28)


### Features

* rename the service ([ebcdf84](https://github.com/one-tab-group/bookmark.style/commit/ebcdf840e19a20f844ec89c50edbca7adf6cab1f))



# [0.3.0](https://github.com/one-tab-group/bookmark.style/compare/v0.2.0...v0.3.0) (2022-10-07)


Expand Down
116 changes: 59 additions & 57 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
import { defineNuxtConfig } from 'nuxt'
import { defineNuxtConfig } from 'nuxt/config'
import ViteComponents from 'unplugin-vue-components/vite'
import IconsResolver from 'unplugin-icons/resolver'

export default defineNuxtConfig({
meta: {
title: 'bookmark.style: stylish your visual web bookmark',
viewport:
'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0',
description:
'🪄 Turn any link into a stylish visual web bookmark, one-click to copy the beautiful web bookmark image.',
link: [{ rel: 'icon', type: 'image/*', href: '/favicon.svg' }],
meta: [
{
property: 'og:title',
content: 'bookmark.style: stylish your visual web bookmark'
},
{
property: 'og:description',
content:
'🪄 Turn any link into a stylish visual web bookmark, one-click to copy the beautiful web bookmark image.'
},
{ property: 'og:image', content: 'https://bookmark.style/preview.png' },
{ property: 'og:url', content: 'https://bookmark.style' },
{ property: 'og:site_name', content: 'Bookmark Style' },
{ property: 'og:image:width', content: '1200' },
{ property: 'og:image:height', content: '900' },
{
property: 'og:image:alt',
content:
'🪄 Turn any link into a stylish visual web bookmark, one-click to copy the beautiful web bookmark image.'
},
{ property: 'twitter:site', content: 'Bookmark Style' },
{
property: 'twitter:title',
content: 'bookmark.style: stylish your visual web bookmark'
},
{ property: 'twitter:card', content: 'summary_large_image' },
{
property: 'twitter:description',
content:
'🪄 Turn any link into a stylish visual web bookmark, one-click to copy the beautiful web bookmark image.'
},
{
property: 'twitter:image:src',
content: 'https://bookmark.style/preview.png'
}
],
script: [
{
async: true,
defer: true,
'data-website-id': process.env.UMAMI_WEBSITE_ID,
src: 'https://analytics.bookmark.style/umami.js'
}
]
app: {
head: {
title: 'bookmark.style: stylish your visual web bookmark',
viewport:
'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0',
link: [{ rel: 'icon', type: 'image/*', href: '/favicon.svg' }],
meta: [
{
property: 'og:title',
content: 'bookmark.style: stylish your visual web bookmark'
},
{
property: 'og:description',
content:
'🪄 Turn any link into a stylish visual web bookmark, one-click to copy the beautiful web bookmark image.'
},
{ property: 'og:image', content: 'https://bookmark.style/preview.png' },
{ property: 'og:url', content: 'https://bookmark.style' },
{ property: 'og:site_name', content: 'Bookmark Style' },
{ property: 'og:image:width', content: '1200' },
{ property: 'og:image:height', content: '900' },
{
property: 'og:image:alt',
content:
'🪄 Turn any link into a stylish visual web bookmark, one-click to copy the beautiful web bookmark image.'
},
{ property: 'twitter:site', content: 'Bookmark Style' },
{
property: 'twitter:title',
content: 'bookmark.style: stylish your visual web bookmark'
},
{ property: 'twitter:card', content: 'summary_large_image' },
{
property: 'twitter:description',
content:
'🪄 Turn any link into a stylish visual web bookmark, one-click to copy the beautiful web bookmark image.'
},
{
property: 'twitter:image:src',
content: 'https://bookmark.style/preview.png'
}
],
script: [
{
async: true,
defer: true,
'data-website-id': process.env.UMAMI_WEBSITE_ID,
src: 'https://analytics.bookmark.style/umami.js'
}
]
}
},
buildModules: [
modules: [
'nuxt-windicss',
'@pinia/nuxt',
'unplugin-icons/nuxt',
Expand All @@ -77,9 +77,11 @@ export default defineNuxtConfig({
})
]
},
publicRuntimeConfig: {
NODE_ENV: process.env.NODE_ENV,
CHATWOOT_WEBSITE_TOKEN: process.env.CHATWOOT_WEBSITE_TOKEN,
UMAMI_WEBSITE_ID: process.env.UMAMI_WEBSITE_ID
runtimeConfig: {
public: {
NODE_ENV: process.env.NODE_ENV,
CHATWOOT_WEBSITE_TOKEN: process.env.CHATWOOT_WEBSITE_TOKEN,
UMAMI_WEBSITE_ID: process.env.UMAMI_WEBSITE_ID
}
}
})
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Bookmark Style",
"description": "🪄 Turn any link into a stylish web visual bookmark, one-click to copy the beautiful web bookmark image.",
"author": "xiaoluoboding <[email protected]>",
"version": "0.3.0",
"version": "1.0.0",
"scripts": {
"dev": "nuxi dev --port 3099",
"build": "nuxi build",
Expand All @@ -19,24 +19,24 @@
},
"homepage": "https://bookmark.style",
"devDependencies": {
"@iconify/json": "^2.1.21",
"@pinia/nuxt": "^0.4.0",
"@iconify/json": "^2.1.144",
"@pinia/nuxt": "^0.4.6",
"@types/dom-to-image": "^2.6.4",
"@vueuse/components": "^8.2.5",
"@vueuse/core": "9.1.0",
"@vueuse/nuxt": "9.1.0",
"nuxt-windicss": "^2.5.0",
"nuxt": "3.0.0-rc.8",
"unplugin-icons": "^0.14.8",
"unplugin-vue-components": "^0.22.4"
"@vueuse/components": "^9.6.0",
"@vueuse/core": "9.6.0",
"@vueuse/nuxt": "9.6.0",
"nuxt-windicss": "^2.6.0",
"nuxt": "^3.0.0",
"unplugin-icons": "^0.14.14",
"unplugin-vue-components": "^0.22.11"
},
"dependencies": {
"axios": "^0.26.1",
"axios": "^1.2.0",
"copy-image-clipboard": "^2.1.2",
"dom-to-image": "^2.6.0",
"fancy-qrcode": "^0.1.0",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"pinia": "^2.0.18"
"pinia": "^2.0.27"
}
}
Loading

0 comments on commit 68b28c6

Please sign in to comment.