mirror of
https://github.com/koel/koel
synced 2025-02-17 13:58:28 +00:00
feat: use a different manifest for Remote
This commit is contained in:
parent
df8ad761ea
commit
f4a9455e81
3 changed files with 16 additions and 1 deletions
1
public/.gitignore
vendored
1
public/.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
*
|
||||
!.gitignore
|
||||
!manifest.json.example
|
||||
!manifest-remote.json.example
|
||||
!browserconfig.xml
|
||||
|
|
14
public/manifest-remote.json.example
Normal file
14
public/manifest-remote.json.example
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"name": "Koel Remote Controller",
|
||||
"start_url": "https://your.koel.host/remote",
|
||||
"display": "standalone",
|
||||
"orientation": "portrait",
|
||||
"icons": [{
|
||||
"src": "/public/img/icon.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}],
|
||||
"background_color": "#181818",
|
||||
"description": "Personal audio streaming service that works.",
|
||||
"theme_color": "#181818"
|
||||
}
|
|
@ -13,7 +13,7 @@
|
|||
<meta name="msapplication-navbutton-color" content="#282828">
|
||||
|
||||
<base href="{{ asset('') }}">
|
||||
<link rel="manifest" href="{{ App::staticUrl('public/manifest.json') }}" />
|
||||
<link rel="manifest" href="{{ App::staticUrl('public/manifest-remote.json') }}" />
|
||||
<meta name="msapplication-config" content="{{ App::staticUrl('public/browserconfig.xml') }}" />
|
||||
<link rel="icon" type="image/x-icon" href="{{ App::staticUrl('public/img/favicon.ico') }}" />
|
||||
<link rel="icon" href="{{ App::staticUrl('public/img/icon.png') }}">
|
||||
|
|
Loading…
Add table
Reference in a new issue