Pushed version 1.6.6

This commit is contained in:
unknown 2021-09-06 14:46:05 +02:00
parent 43f38a2f44
commit ebae61a688
4 changed files with 12 additions and 9 deletions

View file

@ -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))

View file

@ -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

View file

@ -1 +1 @@
REACT_APP_VERSION=1.6.5
REACT_APP_VERSION=1.6.6

View file

@ -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",