Skip to content

Commit

Permalink
Apply patch for broken transparency
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed May 5, 2023
1 parent 1b94a9e commit cf85b30
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ jobs:
prerelease: true
includeDebug: true
includeRelease: false
args: --verbose
- name: Get current development release ID if it exists
uses: actions/github-script@v6
continue-on-error: true
Expand Down
23 changes: 18 additions & 5 deletions src-tauri/Cargo.lock

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

8 changes: 7 additions & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ hyper = { version = "0.14.26", features = ["full"] }

[dependencies.tauri]
version = "1.3.0"
features = [ "path-all", "process-relaunch",
features = ["path-all", "process-relaunch",
"system-tray",
"dialog-message",
"dialog-open",
Expand All @@ -68,6 +68,12 @@ features = [ "path-all", "process-relaunch",
[dependencies.openvr]
git = "https://github.com/Raphiiko/oyasumi-rust-openvr"

# Fix for broken window transparency in Tauri v1.6.0.
# https://github.com/tauri-apps/tauri/issues/6868
# Remove once fixed.
[patch.crates-io]
tao = { git = "https://github.com/tauri-apps/tao", branch = "v0.16" }

[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
Expand Down

0 comments on commit cf85b30

Please sign in to comment.