Skip to content

Commit

Permalink
wip: implement artifact parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Yumeo0 committed Nov 12, 2024
1 parent ba94976 commit 2b70417
Show file tree
Hide file tree
Showing 35 changed files with 1,114,713 additions and 52 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,3 @@ dist-ssr
*.njsproj
*.sln
*.sw?

# Others
public/keys.json
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,19 @@
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-shell": "^2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-shell": "^2"
"zustand": "^5.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"@tauri-apps/cli": "^2"
"vite": "^5.3.1"
}
}
2 changes: 2 additions & 0 deletions src-tauri/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
# Generated by Tauri
# will have schema files for capabilities auto-completion
/gen/schemas

/resources/gi/data/TestData.json
22 changes: 22 additions & 0 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ proto_gen = { path = "../proto_gen" }
base64 = "0.22.1"
regex = "1.11.1"
crossbeam-channel = "0.5.12"
tauri-plugin-fs = "2"
9 changes: 6 additions & 3 deletions src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"windows": [
"main"
],
"permissions": [
"core:default",
"shell:allow-open"
"shell:allow-open",
"fs:default"
]
}
}
Loading

0 comments on commit 2b70417

Please sign in to comment.