Pushed version 1.6.3. Added Deezer and Tidal to search queries
This commit is contained in:
parent
683c948f6c
commit
5c60c7c156
3 changed files with 14 additions and 9 deletions
|
@ -1,5 +1,6 @@
|
|||
### v1.6.3 (TBA)
|
||||
### v1.6.3 (2021-08-09)
|
||||
- Added support for custom SVG icons ([#73](https://github.com/pawelmalak/flame/issues/73))
|
||||
- Added Deezer and Tidal to search queries
|
||||
|
||||
### v1.6.2 (2021-08-06)
|
||||
- Fixed changelog link
|
||||
|
|
10
README.md
10
README.md
|
@ -74,7 +74,7 @@ services:
|
|||
container_name: flame
|
||||
volumes:
|
||||
- <host_dir>:/app/data
|
||||
- /var/run/docker.sock:/var/sock/docker.sock # optional but required for Docker integration feature
|
||||
- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration feature
|
||||
ports:
|
||||
- 5005:5005
|
||||
restart: unless-stopped
|
||||
|
@ -174,10 +174,4 @@ And you must have activated the Docker sync option in the settings panel.
|
|||
|
||||
> This is an experimental feature. Its behaviour might change in the future.
|
||||
>
|
||||
> Follow instructions from wiki: [Custom CSS](https://github.com/pawelmalak/flame/wiki/Custom-CSS)
|
||||
|
||||
## Support
|
||||
|
||||
If you want to support development of Flame and my upcoming self-hosted and open source projects you can use the following link:
|
||||
|
||||
[](https://www.paypal.com/paypalme/pawelmalak)
|
||||
> Follow instructions from wiki: [Custom CSS](https://github.com/pawelmalak/flame/wiki/Custom-CSS)
|
|
@ -1,5 +1,10 @@
|
|||
{
|
||||
"queries": [
|
||||
{
|
||||
"name": "Deezer",
|
||||
"prefix": "dz",
|
||||
"template": "https://www.deezer.com/search/"
|
||||
},
|
||||
{
|
||||
"name": "Disroot",
|
||||
"prefix": "ds",
|
||||
|
@ -35,6 +40,11 @@
|
|||
"prefix": "mv",
|
||||
"template": "https://www.themoviedb.org/search?query="
|
||||
},
|
||||
{
|
||||
"name": "Tidal",
|
||||
"prefix": "td",
|
||||
"template": "https://listen.tidal.com/search?q="
|
||||
},
|
||||
{
|
||||
"name": "YouTube",
|
||||
"prefix": "yt",
|
||||
|
|
Loading…
Add table
Reference in a new issue