From 3e0b62b109f2b376400a68f4c25d60361b81fe7a Mon Sep 17 00:00:00 2001 From: Jeena Date: Fri, 12 Jun 2020 23:42:42 +0200 Subject: [PATCH] Remove opening in speaker: URL scheme Back in the day on OSX this has been used to pass the current item to a application called Speaker which would read the content. That application is not available anymore so we can remove the functionality from FeedTheMonkey. --- qml/TheMenuBar.qml | 2 +- qml/main.qml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/qml/TheMenuBar.qml b/qml/TheMenuBar.qml index ae2eb70..94a07dc 100644 --- a/qml/TheMenuBar.qml +++ b/qml/TheMenuBar.qml @@ -132,7 +132,7 @@ MenuBar { title: qsTr("Help") MenuItem { text: qsTr("About") - onTriggered: Qt.openUrlExternally("http://jabs.nu/feedthemonkey"); + onTriggered: Qt.openUrlExternally("http://jeena.net/feedthemonkey/index.html"); } } diff --git a/qml/main.qml b/qml/main.qml index ca06500..0b6074b 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -159,10 +159,6 @@ ApplicationWindow { case Qt.Key_Return: Qt.openUrlExternally(content.post.link) break - case Qt.Key_S: { - console.log(Qt.openUrlExternally("speaker:"+ removeHTML(content.post.content))) - break - } default: break }