From 0eee27f9774558555a22495c101d5ba568048ec6 Mon Sep 17 00:00:00 2001 From: Julien Ruaux Date: Mon, 5 Jun 2023 10:16:53 -0700 Subject: [PATCH] docs: Upated README and intro --- README.adoc | 2 +- docs/guide/src/docs/asciidoc/introduction.adoc | 2 +- .../redis/riot/cli/common/ManifestVersionProvider.java | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.adoc b/README.adoc index 796f684b5..fc238ac8c 100644 --- a/README.adoc +++ b/README.adoc @@ -11,7 +11,7 @@ image::src/media/banner.png[RIOT] Get data in and out of Redis with link:https://developer.redis.com/riot[{project-title}]! -Redis Input/Output Tools ({project-title}) is a suite of command-line utilities designed to help you get data in and out of Redis. +Redis Input/Output Tools ({project-title}) is a command-line utility designed to help you get data in and out of Redis. It supports many different sources and targets: diff --git a/docs/guide/src/docs/asciidoc/introduction.adoc b/docs/guide/src/docs/asciidoc/introduction.adoc index 4c5c8fd99..9f6b5814e 100644 --- a/docs/guide/src/docs/asciidoc/introduction.adoc +++ b/docs/guide/src/docs/asciidoc/introduction.adoc @@ -1,7 +1,7 @@ [[_introduction]] = Introduction -Redis Input/Output Tools ({project-title}) is a suite of command-line utilities designed to help you get data in and out of Redis. +Redis Input/Output Tools ({project-title}) is a command-line utility designed to help you get data in and out of Redis. It supports many different sources and targets: diff --git a/plugins/riot/src/main/java/com/redis/riot/cli/common/ManifestVersionProvider.java b/plugins/riot/src/main/java/com/redis/riot/cli/common/ManifestVersionProvider.java index 4b8a11374..f789419d1 100644 --- a/plugins/riot/src/main/java/com/redis/riot/cli/common/ManifestVersionProvider.java +++ b/plugins/riot/src/main/java/com/redis/riot/cli/common/ManifestVersionProvider.java @@ -24,11 +24,11 @@ public String[] getVersion() throws Exception { return new String[] { // @formatter:off "", - " ▀ █ @|fg(4;1;1) ██████████████████████████|@", - " █ ██ █ ███ ████ @|fg(4;2;1) ██████████████████████████|@", - " ██ █ █ █ █ @|fg(5;4;1) ██████████████████████████|@", - " █ █ █ █ █ @|fg(1;4;1) ██████████████████████████|@", - " █ █ ███ ██ @|fg(0;3;4) ██████████████████████████|@"+ " v" + getVersionString(), + " ▀ █ @|fg(4;1;1) ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄|@", + " █ ██ █ ███ ████ @|fg(4;2;1) ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄|@", + " ██ █ █ █ █ @|fg(5;4;1) ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄|@", + " █ █ █ █ █ @|fg(1;4;1) ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄|@", + " █ █ ███ ██ @|fg(0;3;4) ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄|@"+ " v" + getVersionString(), ""}; // @formatter:on }