Skip to content

Commit

Permalink
don't wait for proxy process to terminate (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Sep 25, 2023
1 parent 41c5559 commit f078c9a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Build'

env:
VERSION: 3.6.1
VERSION: 3.6.2
BUILD_TYPE: Release
ARCH: x64
VCPKG_CONFIG: Release
Expand Down
2 changes: 1 addition & 1 deletion bt/app/browser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ namespace bt {
}

//win32::shell::exec(b->open_cmd, arg);
win32::process::start(b->open_cmd + " " + arg);
win32::process::start(b->open_cmd + " " + arg, false);
}

bool browser_instance::is_match(const url_payload& up, match_rule& mr) const {
Expand Down
2 changes: 1 addition & 1 deletion common
Submodule common updated 1 files
+4 −2 win32/process.cpp
4 changes: 4 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.6.2

🐞Fixed: BT hangs waiting for browser proxy process to terminate. Thanks to @cjs1976 and @fixator10 in #51.

## 3.6.1

🐞Fixed: when external monitor is set as primary, picker is shown on a wrong monitor. Thanks to @ianzhuo in #48.
Expand Down

0 comments on commit f078c9a

Please sign in to comment.