From ebae61a688ebdce103f852f8d159c5e1c11859a6 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 6 Sep 2021 14:46:05 +0200 Subject: [PATCH] Pushed version 1.6.6 --- CHANGELOG.md | 3 +++ README.md | 2 +- client/.env | 2 +- package.json | 14 +++++++------- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e40a21b..7e27c80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### v1.6.6 (2021-09-06) +- Added local search (filter) for apps and bookmarks ([#47](https://github.com/pawelmalak/flame/issues/47)) + ### v1.6.5 (2021-08-28) - Added support for more URL schemes ([#74](https://github.com/pawelmalak/flame/issues/74)) diff --git a/README.md b/README.md index 669b7b0..dadb428 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ git clone https://github.com/pawelmalak/flame cd flame # run only once -npm run dev:init +npm run dev-init # start backend and frontend development servers npm run dev diff --git a/client/.env b/client/.env index df82210..32d9a29 100644 --- a/client/.env +++ b/client/.env @@ -1 +1 @@ -REACT_APP_VERSION=1.6.5 +REACT_APP_VERSION=1.6.6 \ No newline at end of file diff --git a/package.json b/package.json index 23f35e3..40f1646 100644 --- a/package.json +++ b/package.json @@ -5,13 +5,13 @@ "main": "index.js", "scripts": { "start": "node server.js", - "init:server": "echo Instaling server dependencies && npm install && mkdir public && touch public/flame.css", - "init:client": "cd client && echo Instaling client dependencies && npm install", - "dev:init": "npm run init:server && npm run init:client", - "dev:server": "nodemon server.js", - "dev:client": "npm start --prefix client", - "dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"", - "skaffold": "concurrently \"npm run init:client\" \"npm run dev:server\"" + "init-server": "echo Instaling server dependencies && npm install && mkdir public && touch public/flame.css", + "init-client": "cd client && echo Instaling client dependencies && npm install", + "dev-init": "npm run init-server && npm run init-client", + "dev-server": "nodemon server.js", + "dev-client": "npm start --prefix client", + "dev": "concurrently \"npm run dev-server\" \"npm run dev-client\"", + "skaffold": "concurrently \"npm run init-client\" \"npm run dev-server\"" }, "author": "", "license": "ISC",