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.
This commit is contained in:
parent
ea85197874
commit
3e0b62b109
2 changed files with 1 additions and 5 deletions
|
@ -132,7 +132,7 @@ MenuBar {
|
||||||
title: qsTr("Help")
|
title: qsTr("Help")
|
||||||
MenuItem {
|
MenuItem {
|
||||||
text: qsTr("About")
|
text: qsTr("About")
|
||||||
onTriggered: Qt.openUrlExternally("http://jabs.nu/feedthemonkey");
|
onTriggered: Qt.openUrlExternally("http://jeena.net/feedthemonkey/index.html");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -159,10 +159,6 @@ ApplicationWindow {
|
||||||
case Qt.Key_Return:
|
case Qt.Key_Return:
|
||||||
Qt.openUrlExternally(content.post.link)
|
Qt.openUrlExternally(content.post.link)
|
||||||
break
|
break
|
||||||
case Qt.Key_S: {
|
|
||||||
console.log(Qt.openUrlExternally("speaker:"+ removeHTML(content.post.content)))
|
|
||||||
break
|
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue