Add actions for requesting features and filing bug reports

This commit is contained in:
Joseph Lyons 2022-12-22 23:04:33 -05:00
parent 46152c6249
commit 41bff3947c
4 changed files with 39 additions and 5 deletions

View file

@ -343,10 +343,12 @@ pub fn menus() -> Vec<Menu<'static>> {
action: Box::new(crate::CopySystemSpecsIntoClipboard),
},
MenuItem::Action {
name: "Give Feedback",
action: Box::new(crate::OpenBrowser {
url: super::feedback::NEW_ISSUE_URL.into(),
}),
name: "File Bug Report",
action: Box::new(crate::FileBugReport),
},
MenuItem::Action {
name: "Request Feature",
action: Box::new(crate::RequestFeature),
},
MenuItem::Separator,
MenuItem::Action {