Skip to content

Commit 030baf8

Browse files
committed
Merge branches 'master' and 'master' of https://github.com/Ripwords/transparentReader
2 parents a410579 + abfe263 commit 030baf8

16 files changed

+550
-502
lines changed

.github/workflows/publish.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
env:
88
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
9+
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
910

1011
jobs:
1112
publish-tauri:
@@ -20,7 +21,7 @@ jobs:
2021
- name: setup node
2122
uses: actions/setup-node@v1
2223
with:
23-
node-version: 14
24+
node-version: 16
2425
- name: install Rust stable
2526
uses: actions-rs/toolchain@v1
2627
with:
@@ -32,7 +33,7 @@ jobs:
3233
sudo apt-get install -y webkit2gtk-4.0
3334
- name: install app dependencies and build it
3435
run: yarn && yarn build
35-
- uses: tauri-apps/tauri-action@v0
36+
- uses: jdukewich/tauri-action@fix-windows-bundling
3637
env:
3738
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3839
with:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist
44
dist-ssr
55
*.local
66
~
7+
.env

components.d.ts

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// generated by unplugin-vue-components
2+
// We suggest you to commit this file into source control
3+
// Read more: https://github.com/vuejs/vue-next/pull/3399
4+
5+
declare module 'vue' {
6+
export interface GlobalComponents {
7+
Content: typeof import('./src/components/Content.vue')['default']
8+
'IGrommetIcons:documentWord': typeof import('~icons/grommet-icons/document-word')['default']
9+
'IMdi:arrowTopLeftThinCircleOutline': typeof import('~icons/mdi/arrow-top-left-thin-circle-outline')['default']
10+
'IMdi:filePdf': typeof import('~icons/mdi/file-pdf')['default']
11+
'IMdi:fileWord': typeof import('~icons/mdi/file-word')['default']
12+
'IMdi:themeLightDark': typeof import('~icons/mdi/theme-light-dark')['default']
13+
'IRi:settings3Line': typeof import('~icons/ri/settings3-line')['default']
14+
NH2: typeof import('naive-ui')['NH2']
15+
NInput: typeof import('naive-ui')['NInput']
16+
NMessageProvider: typeof import('naive-ui')['NMessageProvider']
17+
NModal: typeof import('naive-ui')['NModal']
18+
NSlider: typeof import('naive-ui')['NSlider']
19+
NTooltip: typeof import('naive-ui')['NTooltip']
20+
}
21+
}
22+
23+
export { }

package.json

+18-19
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
{
22
"name": "window-reader",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"scripts": {
5-
"dev": "concurrently -k \"vite\" \"tauri dev\"",
6-
"build": "vue-tsc --noEmit && vite build"
5+
"dev": "tauri dev",
6+
"build": "tauri build"
77
},
88
"dependencies": {
99
"@tauri-apps/api": "^1.0.0-rc.1",
10-
"@vueup/vue-quill": "^1.0.0-beta.7",
11-
"@vueuse/core": "^6.9.1",
10+
"@tauri-apps/cli": "^1.0.0-rc.5",
11+
"@vueup/vue-quill": "1.0.0-beta.8",
12+
"@vueuse/core": "7.6.2",
1213
"file-saver": "^2.0.5",
13-
"pinia": "^2.0.9",
14+
"pinia": "2.0.11",
1415
"quill-to-pdf": "^1.0.7",
1516
"quill-to-word": "^1.3.0",
16-
"vue": "^3.2.16"
17+
"vue": "3.2.31"
1718
},
1819
"devDependencies": {
19-
"@iconify/json": "^1.1.428",
20-
"@tauri-apps/cli": "^1.0.0-rc.5",
20+
"@iconify/json": "2.1.3",
2121
"@types/file-saver": "^2.0.5",
22-
"@vitejs/plugin-vue": "^1.9.3",
23-
"concurrently": "^6.3.0",
24-
"naive-ui": "^2.24.6",
25-
"typescript": "^4.4.3",
26-
"unplugin-auto-import": "^0.4.14",
27-
"unplugin-icons": "^0.12.18",
28-
"unplugin-vue-components": "^0.17.2",
29-
"vite": "^2.6.4",
30-
"vite-plugin-windicss": "^1.5.1",
22+
"@vitejs/plugin-vue": "2.2.2",
23+
"naive-ui": "2.25.2",
24+
"typescript": "4.5.5",
25+
"unplugin-auto-import": "0.6.0",
26+
"unplugin-icons": "0.13.2",
27+
"unplugin-vue-components": "0.17.18",
28+
"vite": "2.8.4",
29+
"vite-plugin-windicss": "1.7.1",
3130
"vue-tsc": "^0.3.0",
32-
"windicss": "^3.2.1"
31+
"windicss": "^3.4.3"
3332
}
3433
}

0 commit comments

Comments
 (0)