Skip to content

Commit 9015171

Browse files
committed
Bump version to v1.0.3-canary.7
1 parent 07b8f40 commit 9015171

25 files changed

+111
-3
lines changed

desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "badger-desktop",
33
"productName": "Badger Desktop",
4-
"version": "1.0.3-canary.6",
4+
"version": "1.0.3-canary.7",
55
"description": "My Electron application description",
66
"main": "./out/main/index.js",
77
"scripts": {

desktop/src-tauri/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/

desktop/src-tauri/Cargo.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[package]
2+
name = "app"
3+
version = "0.1.0"
4+
description = "A Tauri App"
5+
authors = ["you"]
6+
license = ""
7+
repository = ""
8+
default-run = "app"
9+
edition = "2021"
10+
rust-version = "1.60"
11+
12+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13+
14+
[build-dependencies]
15+
tauri-build = { version = "1.5.3", features = [] }
16+
17+
[dependencies]
18+
serde_json = "1.0"
19+
serde = { version = "1.0", features = ["derive"] }
20+
tauri = { version = "1.7.0", features = [] }
21+
22+
[features]
23+
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
24+
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
25+
# DO NOT REMOVE!!
26+
custom-protocol = [ "tauri/custom-protocol" ]

desktop/src-tauri/build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
tauri_build::build()
3+
}
10.8 KB
Loading
22.6 KB
Loading

desktop/src-tauri/icons/32x32.png

2.17 KB
Loading
8.99 KB
Loading
12.2 KB
Loading
12.7 KB
Loading

0 commit comments

Comments
 (0)