From bb940e7d578ebbc80af6ec2fe6ea668b7b0a1aec Mon Sep 17 00:00:00 2001 From: Francesco Sciuti Date: Mon, 11 Nov 2019 22:39:15 +0100 Subject: [PATCH 01/13] docs(readme): update features list and add gif --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b6becf2..26851d0 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,11 @@ _Redis Patterns Console_ is an interactive (and reactive) console, written in An - _Step by Step_ Patterns panel, with integrated command execution and detection of contextual official [Redis doc](https://github.com/antirez/redis-doc); - Command-line and history of Redis Server responses; - Command list (divided by categories) and detection of contextual official [Redis doc](https://github.com/antirez/redis-doc); +- Interactive Command suggestion; - Isolated Client sessions. +![redis-patterns-console](https://acadevmy.it/redis-patterns-console.gif "Redis Patterns Console") + _Redis Patterns Console_ is inspired by [Try-Redis](https://try.redis.io/) project. ### Development server From 9f418effe643a0508821addd2bd07bcadd2a5aa4 Mon Sep 17 00:00:00 2001 From: Francesco Sciuti Date: Tue, 12 Nov 2019 10:44:09 +0100 Subject: [PATCH 02/13] docs(readme): update todo roadmap --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 26851d0..e48bc1b 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ Thanks for your future contributions! - Stateless Components refactoring and improvements; - Continuous refactoring; - Blacklist Enum; [TBD] +- Increase GitHub API calls (with GitHub login) to 5000 (per token); - Everythings you notice! 🙏   From a4614bb8721a31e912a63f3bf4dd93f4beabba8c Mon Sep 17 00:00:00 2001 From: Moreno Bruschi Date: Tue, 12 Nov 2019 15:51:39 +0100 Subject: [PATCH 03/13] fix(header): changed title in header to "Redis Patterns Console" Fix Title with full name of project as requested Closes issue #3 --- src/app/core/components/header/header.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/components/header/header.component.ts b/src/app/core/components/header/header.component.ts index ad48b88..98c7f37 100644 --- a/src/app/core/components/header/header.component.ts +++ b/src/app/core/components/header/header.component.ts @@ -18,7 +18,7 @@ import { Component, ChangeDetectorRef, AfterViewInit } from '@angular/core'; ] }) export class HeaderComponent implements AfterViewInit { - title = 'Redis Patterns'; + title = 'Redis Patterns Console'; constructor(private changeDetectorRef: ChangeDetectorRef) {} From 69deb23673ba17f7287b3d40a01a0d7aca6988d3 Mon Sep 17 00:00:00 2001 From: Moreno Bruschi Date: Tue, 12 Nov 2019 16:39:19 +0100 Subject: [PATCH 04/13] feat(header): added application version label next to the title Add version label next to title Closes issue #2 --- src/app/core/components/header/header.component.html | 2 +- src/app/core/components/header/header.component.ts | 2 ++ tsconfig.json | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/core/components/header/header.component.html b/src/app/core/components/header/header.component.html index 5526b9d..e498172 100644 --- a/src/app/core/components/header/header.component.html +++ b/src/app/core/components/header/header.component.html @@ -1,5 +1,5 @@
-

{{title}}

+

{{title}} {{version}}