Skip to content

Commit

Permalink
Add AppStore download button
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Apr 18, 2023
1 parent 00b3ae5 commit 15f6d85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/qml/WelcomeTab.qml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ BetterTab {
visible: PlatformUtils.isWindows()
}

BetterButton {
text: qsTranslate("RESP","Download from AppStore")
onClicked: Qt.openUrlExternally("https://apps.apple.com/us/app/redisinsight/id6446987963")
visible: PlatformUtils.isOSX()
}

BetterButton {
text: PlatformUtils.isWindows() ? qsTranslate("RESP","Download Installer") : qsTranslate("RESP","Download DMG")
onClicked: Qt.openUrlExternally("https://redis.com/redis-enterprise/redis-insight/")
Expand Down

0 comments on commit 15f6d85

Please sign in to comment.