Skip to content

Commit

Permalink
fix: mercury support
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Aug 10, 2024
1 parent 10acec5 commit 9cbe517
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ All browser support comes with a few small caveats. You may notice small inconsi
* Vivaldi
* Librewolf
* Waterfox
* Mercury

> [!TIP]
> Not seeing your favorite browser? Feel free to submit an issue!
Expand Down
10 changes: 10 additions & 0 deletions src/browser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,16 @@ lazy_static::lazy_static! {
unix: vec!["waterfox", "waterfox-browser"],
mac: vec![PathBuf::from("/Applications/Waterfox.app/Contents/MacOS/waterfox")],
},
Browser {
name: "mercury",
kind: BrowserKind::Gecko,
win: BrowserWindowsConfig {
paths: generate_windows_paths(PathBuf::from("Mercury\\mercury.exe")),
registry_keys: vec![],
},
unix: vec!["mercury", "mercury-browser"],
mac: vec![PathBuf::from("/Applications/Mercury.app/Contents/MacOS/mercury")],
}
];
}

Expand Down

0 comments on commit 9cbe517

Please sign in to comment.