-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
windows: fix accept/deny prompt on Windows
Launching the browser is prohibited from a Windows service. `WTSSendMessageA` seems to be the only thing that works. See comments in the commit.
- Loading branch information
Showing
5 changed files
with
108 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "bitbox-bridge" | ||
# If you bump this, also change the ProductCode in bitbox-bridge/release/windows/wix/Product.wxs. | ||
version = "1.6.0" | ||
version = "1.6.1" | ||
authors = ["Niklas Claesson <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -22,6 +22,9 @@ warp = "0.3.7" | |
tera = "1.20" | ||
uuid = { version = "1.10.0", features = ["v4"] } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
windows-sys = { version = "0.59.0", features = ["Win32", "Win32_System", "Win32_UI", "Win32_System_RemoteDesktop", "Win32_UI_WindowsAndMessaging"] } | ||
|
||
[dependencies.u2fframing] | ||
version = "0.1" | ||
path = "../u2fframing" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters