From 15f6d85528cdb957f09ace0ee5cdf8df0640954c Mon Sep 17 00:00:00 2001 From: Igor Malinovskiy Date: Tue, 18 Apr 2023 10:46:34 +0200 Subject: [PATCH] Add AppStore download button --- src/qml/WelcomeTab.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/qml/WelcomeTab.qml b/src/qml/WelcomeTab.qml index b5db47fa8..423825ec6 100644 --- a/src/qml/WelcomeTab.qml +++ b/src/qml/WelcomeTab.qml @@ -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/")