Skip to content

Commit 94a818d

Browse files
authored
Merge pull request #2751 from RedisInsight/feature/RI-4437
#RI-4437 - Rename RedisInsight application
2 parents 84bc804 + c815826 commit 94a818d

21 files changed

+42
-38
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,28 +1619,28 @@ workflows:
16191619

16201620
- virustotal-url:
16211621
name: Virus check - AppImage (nightly)
1622-
fileName: RedisInsight-v2-linux-x86_64.AppImage
1622+
fileName: RedisInsight-linux-x86_64.AppImage
16231623
- virustotal-url:
16241624
name: Virus check - deb (nightly)
1625-
fileName: RedisInsight-v2-linux-amd64.deb
1625+
fileName: RedisInsight-linux-amd64.deb
16261626
- virustotal-url:
16271627
name: Virus check - rpm (nightly)
1628-
fileName: RedisInsight-v2-linux-x86_64.rpm
1628+
fileName: RedisInsight-linux-x86_64.rpm
16291629
- virustotal-url:
16301630
name: Virus check - snap (nightly)
1631-
fileName: RedisInsight-v2-linux-amd64.snap
1631+
fileName: RedisInsight-linux-amd64.snap
16321632
- virustotal-url:
16331633
name: Virus check x64 - dmg (nightly)
1634-
fileName: RedisInsight-v2-mac-x64.dmg
1634+
fileName: RedisInsight-mac-x64.dmg
16351635
- virustotal-url:
16361636
name: Virus check arm64 - dmg (nightly)
1637-
fileName: RedisInsight-v2-mac-arm64.dmg
1637+
fileName: RedisInsight-mac-arm64.dmg
16381638
- virustotal-url:
16391639
name: Virus check MAS - pkg (nightly)
16401640
fileName: RedisInsight-mac-universal-mas.pkg
16411641
- virustotal-url:
16421642
name: Virus check - exe (nightly)
1643-
fileName: RedisInsight-v2-win-installer.exe
1643+
fileName: RedisInsight-win-installer.exe
16441644
- virustotal-report:
16451645
name: Virus check report (prod)
16461646
requires:

.circleci/e2e/test.exe.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22

33
set COMMON_URL=%USERPROFILE%/AppData/Local/Programs/redisinsight/resources/app.asar/dist/renderer/index.html
4-
set ELECTRON_PATH=%USERPROFILE%/AppData/Local/Programs/redisinsight/RedisInsight-v2.exe
4+
set ELECTRON_PATH=%USERPROFILE%/AppData/Local/Programs/redisinsight/RedisInsight.exe
55
set OSS_STANDALONE_HOST=%E2E_CLOUD_DATABASE_HOST%
66
set OSS_STANDALONE_PORT=%E2E_CLOUD_DATABASE_PORT%
77
set OSS_STANDALONE_USERNAME=%E2E_CLOUD_DATABASE_USERNAME%

.circleci/redisstack/app-image.repack.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ set -e
33

44
ARCH=${ARCH:-x86_64}
55
WORKING_DIRECTORY=$(pwd)
6-
SOURCE_APP=${SOURCE_APP:-"RedisInsight-v2-linux-$ARCH.AppImage"}
7-
APP_FOLDER_NAME="RedisInsight-v2-linux"
8-
TAR_NAME="RedisInsight-v2-app-linux.$ARCH.tar.gz"
6+
SOURCE_APP=${SOURCE_APP:-"RedisInsight-linux-$ARCH.AppImage"}
7+
APP_FOLDER_NAME="RedisInsight-linux"
8+
TAR_NAME="RedisInsight-app-linux.$ARCH.tar.gz"
99
TMP_FOLDER="/tmp/RedisInsight-app-$ARCH"
1010

1111
rm -rf "$TMP_FOLDER"

.circleci/redisstack/build_modules.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PLATFORM=${PLATFORM:-'linux'}
55
ELECTRON_VERSION=$(cat electron/version)
66
ARCH=${ARCH:-'x64'}
77
#FILENAME="RedisInsight-$PLATFORM.$VERSION.$ARCH.zip"
8-
FILENAME="RedisInsight-v2-web-$PLATFORM.$ARCH.tar.gz"
8+
FILENAME="RedisInsight-web-$PLATFORM.$ARCH.tar.gz"
99

1010
# reinstall backend prod dependencies only (optimise space)
1111
rm -rf redisinsight/api/node_modules

.circleci/redisstack/dmg.repack.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ set -e
33

44
ARCH=${ARCH:-x64}
55
WORKING_DIRECTORY=$(pwd)
6-
TAR_NAME="RedisInsight-v2-app-darwin.$ARCH.tar.gz"
7-
APP_FOLDER_NAME="RedisInsight-v2.app"
6+
TAR_NAME="RedisInsight-app-darwin.$ARCH.tar.gz"
7+
APP_FOLDER_NAME="RedisInsight.app"
88
TMP_FOLDER="/tmp/$APP_FOLDER_NAME"
99

1010
rm -rf "$TMP_FOLDER"
1111

1212
mkdir -p "$WORKING_DIRECTORY/release/redisstack"
1313
mkdir -p "$TMP_FOLDER"
1414

15-
hdiutil attach "./release/RedisInsight-v2-mac-$ARCH.dmg"
16-
cp -a /Volumes/RedisInsight-*/RedisInsight-v2.app "/tmp"
15+
hdiutil attach "./release/RedisInsight-mac-$ARCH.dmg"
16+
cp -a /Volumes/RedisInsight*/RedisInsight.app "/tmp"
1717
cd "/tmp" || exit 1
1818
tar -czvf "$TAR_NAME" "$APP_FOLDER_NAME"
1919
cp "$TAR_NAME" "$WORKING_DIRECTORY/release/redisstack/"
2020
cd "$WORKING_DIRECTORY" || exit 1
21-
hdiutil unmount /Volumes/RedisInsight-*/
21+
hdiutil unmount /Volumes/RedisInsight*/

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ licenses
6666
/tests/e2e/results
6767
/tests/e2e/remote
6868
/tests/e2e/.redisinsight-v2
69+
/tests/e2e/.redisinsight-app
6970

7071
# Parcel
7172
.parcel-cache

docs/plugins/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ authors to avoid automatic execution of malicious code.
99

1010
1. Download the plugin for the Workbench.
1111
2. Open the `plugins` folder with the following path
12-
* For MacOs: `<usersHomeDir>/.redisinsight-preview/plugins`
13-
* For Windows: `C:/Users/{Username}/.redisinsight-preview/plugins`
14-
* For Linux: `<usersHomeDir>/.redisinsight-preview/plugins`
12+
* For MacOs: `<usersHomeDir>/.redisinsight-app/plugins`
13+
* For Windows: `C:/Users/{Username}/.redisinsight-app/plugins`
14+
* For Linux: `<usersHomeDir>/.redisinsight-app/plugins`
1515
3. Add the folder with plugin to the `plugins` folder
1616

1717
To see the uploaded plugin visualizations in the command results, reload the Workbench

electron-builder.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"productName": "RedisInsight-v2",
2+
"productName": "RedisInsight",
33
"appId": "org.RedisLabs.RedisInsight-V2",
44
"copyright": "Copyright © 2023 Redis Ltd.",
55
"files": [

redisinsight/api/config/production.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { join } from 'path';
22
import * as os from 'os';
33

44
const homedir = process.env.APP_FOLDER_ABSOLUTE_PATH
5-
|| (join(os.homedir(), process.env.APP_FOLDER_NAME || '.redisinsight-v2'));
5+
|| (join(os.homedir(), process.env.APP_FOLDER_NAME || '.redisinsight-app'));
66

7-
const prevHomedir = join(os.homedir(), '.redisinsight-preview');
7+
const prevHomedir = join(os.homedir(), '.redisinsight-v2');
88

99
export default {
1010
dir_path: {

redisinsight/api/config/staging.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { join } from 'path';
22
import * as os from 'os';
33

44
const homedir = process.env.APP_FOLDER_ABSOLUTE_PATH
5-
|| (join(os.homedir(), process.env.APP_FOLDER_NAME || '.redisinsight-v2-stage'));
5+
|| (join(os.homedir(), process.env.APP_FOLDER_NAME || '.redisinsight-app-stage'));
66

7-
const prevHomedir = join(os.homedir(), '.redisinsight-v2.0-stage');
7+
const prevHomedir = join(os.homedir(), '.redisinsight-v2-stage');
88

99
export default {
1010
dir_path: {

0 commit comments

Comments
 (0)