From b9b6724beaac71e1ef18b21a63472471b511eae6 Mon Sep 17 00:00:00 2001 From: Zalenski Egor <63463140+zalenskiSofteq@users.noreply.github.com> Date: Mon, 21 Mar 2022 12:39:41 +0300 Subject: [PATCH] #RI-2591 - About RedisInsight windows doesn't contain v2 postfix on Windows and Ubuntu --- redisinsight/about-panel.ts | 2 +- redisinsight/main.dev.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/redisinsight/about-panel.ts b/redisinsight/about-panel.ts index a7bb1ff362..cd5da210f2 100644 --- a/redisinsight/about-panel.ts +++ b/redisinsight/about-panel.ts @@ -6,7 +6,7 @@ const ICON_PATH = app.isPackaged : path.join(__dirname, '../resources', 'icon.png'); export default { - applicationName: 'RedisInsight', + applicationName: 'RedisInsight-v2', applicationVersion: app.getVersion() || '2.0', copyright: `Copyright © ${new Date().getFullYear()} Redis Ltd.`, iconPath: ICON_PATH, diff --git a/redisinsight/main.dev.ts b/redisinsight/main.dev.ts index 08fe72e5a9..adb920abfb 100644 --- a/redisinsight/main.dev.ts +++ b/redisinsight/main.dev.ts @@ -125,8 +125,8 @@ const bootstrap = async () => { new AppUpdater(upgradeUrl); } - app.setName('RedisInsight'); - app.setAppUserModelId('RedisInsight'); + app.setName('RedisInsight-v2'); + app.setAppUserModelId('RedisInsight-v2'); if (process.platform !== 'darwin') { app.setAboutPanelOptions(AboutPanelOptions); }