Skip to content

Commit

Permalink
Add MS Store download button
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Mar 23, 2023
1 parent 965a8ca commit 00b3ae5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/qml/WelcomeTab.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ BetterTab {
}

BetterButton {
text: qsTranslate("RESP","Download")
text: qsTranslate("RESP","Download from Microsoft Store")
onClicked: Qt.openUrlExternally("https://apps.microsoft.com/store/detail/redisinsight/XP8K1GHCB0F1R2")
visible: PlatformUtils.isWindows()
}

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

0 comments on commit 00b3ae5

Please sign in to comment.