Skip to content

Commit 7afb311

Browse files
committed
Release v0.1.1: Added splash screen and performance improvements
1 parent 8a49ba1 commit 7afb311

17 files changed

Lines changed: 431 additions & 96 deletions

File tree

package-lock.json

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
"lint": "eslint"
1010
},
1111
"dependencies": {
12+
"@tauri-apps/plugin-dialog": "^2.6.0",
13+
"@tauri-apps/plugin-fs": "^2.4.5",
1214
"class-variance-authority": "^0.7.1",
1315
"clsx": "^2.1.1",
1416
"date-fns": "^4.1.0",

public/file.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/globe.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/icon.png

19 KB
Loading

public/next.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/vercel.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/window.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src-tauri/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ serde = { version = "1.0", features = ["derive"] }
2323
log = "0.4"
2424
tauri = { version = "2.10.0", features = [] }
2525
tauri-plugin-log = "2"
26+
tauri-plugin-dialog = "2"
27+
tauri-plugin-fs = "2"
Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
{
22
"$schema": "../gen/schemas/desktop-schema.json",
33
"identifier": "default",
4-
"description": "enables the default permissions",
5-
"windows": [
6-
"main"
7-
],
4+
"description": "Capability for the main window",
5+
"windows": ["main"],
86
"permissions": [
9-
"core:default"
7+
"core:default",
8+
"dialog:allow-open",
9+
"fs:allow-read-dir",
10+
"fs:allow-read-file",
11+
{
12+
"identifier": "fs:scope",
13+
"allow": ["$HOME/**"]
14+
}
1015
]
11-
}
16+
}

0 commit comments

Comments
 (0)