Skip to content

Commit

Permalink
chore(linux): bump gtk to v0.14 (#2361)
Browse files Browse the repository at this point in the history
* Bump gtk to v0.14

* Switch back to rfd
  • Loading branch information
Ngo Iok Ui (Wu Yu Wei) committed Aug 6, 2021
1 parent 235e0f6 commit 63ad303
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .changes/gtk14.md
@@ -0,0 +1,8 @@
---
tauri: patch
tauri-runtime: patch
tauri-runtime-wry: patch
---

Update gtk and its related libraries to v0.14. This also remove requirements of `clang` as build dependency.

2 changes: 1 addition & 1 deletion core/tauri-runtime-wry/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ winapi = "0.3"

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
png = "0.16"
gtk = { version = "0.9", features = [ "v3_16" ] }
gtk = { version = "0.14", features = [ "v3_20" ] }

[features]
dox = [ "wry/dox" ]
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-runtime/Cargo.toml
Expand Up @@ -32,7 +32,7 @@ uuid = { version = "0.8.2", features = [ "v4" ] }
winapi = "0.3"

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
gtk = { version = "0.9", features = [ "v3_16" ] }
gtk = { version = "0.14", features = [ "v3_20" ] }

[features]
menu = [ ]
Expand Down
6 changes: 3 additions & 3 deletions core/tauri/Cargo.toml
Expand Up @@ -66,14 +66,14 @@ attohttpc = { version = "0.17", features = [ "json", "form" ] }
open = { version = "1.7", optional = true }
shared_child = { version = "0.3", optional = true }
os_pipe = { version = "0.9", optional = true }
rfd = "0.4"
rfd = "0.4.1"
raw-window-handle = { version = "0.3.3", optional = true }
minisign-verify = { version = "0.1", optional = true }
os_info = { version = "3.0.6", optional = true}

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
gtk = { version = "0.9", features = [ "v3_16" ] }
glib = "0.10"
gtk = { version = "0.14", features = [ "v3_20" ] }
glib = "0.14"

[build-dependencies]
cfg_aliases = "0.1.1"
Expand Down

0 comments on commit 63ad303

Please sign in to comment.