diff options
author | kali <kali@leap.se> | 2021-02-03 22:53:31 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-02-08 23:32:21 +0100 |
commit | 69f1304f51371b246da6ecf1abc8c6703fbfebf9 (patch) | |
tree | 6b1cb172546898a6decc4a91b2a9ff204e270989 /gui/qml | |
parent | ef7bfd3a013aae586bcb6b046de4c7f5a437bf8e (diff) |
[feat] add menu entry for reporting bugs
Let's make it easier to tell us how buggy our software is, or how happy they
are to use it :)
- Closes: #422
Diffstat (limited to 'gui/qml')
-rw-r--r-- | gui/qml/main.qml | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 5d431bd..4189e27 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -263,13 +263,10 @@ ApplicationWindow { MenuSeparator {} - MenuItem { - text: qsTr("Help...") - onTriggered: { - console.debug(Qt.resolvedUrl(ctx.helpURL)); - Qt.openUrlExternally(Qt.resolvedUrl(ctx.helpURL)) - } + MenuItem { + text: qsTr("About...") + onTriggered: { about.visible = true } } MenuItem { @@ -279,9 +276,23 @@ ApplicationWindow { onTriggered: { donate.visible = true } } + MenuSeparator {} + MenuItem { - text: qsTr("About...") - onTriggered: { about.visible = true } + text: qsTr("Help...") + + onTriggered: { + console.debug(Qt.resolvedUrl(ctx.helpURL)); + Qt.openUrlExternally(Qt.resolvedUrl(ctx.helpURL)) + } + } + + MenuItem { + text: qsTr("Report a bug...") + + onTriggered: { + Qt.openUrlExternally(Qt.resolvedUrl("https://0xacab.org/leap/bitmask-vpn/issues")) + } } MenuSeparator {} |