diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2022-03-26 19:19:17 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2022-03-26 19:19:17 +0100 |
commit | eaecff23868edec4e313735b492bc00090d85c4e (patch) | |
tree | fbaf50700383e5d4785cbf234c60261d7516830e /sworker.js | |
parent | ddd8eba57685112295baa0d6883b8e1b128a1257 (diff) | |
download | hesla-eaecff23868edec4e313735b492bc00090d85c4e.tar.gz |
Fix icons, so the website could be installed (tested on Android).
Diffstat (limited to 'sworker.js')
-rw-r--r-- | sworker.js | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,4 +1,4 @@ -var VERSION = 'v55 - 2022-01-01'; +var VERSION = 'v56 - 2022-03-26'; var toCache = [ '/', 'activePage.js', @@ -9,14 +9,17 @@ var toCache = [ 'hesla.js', 'hesla.js.map', 'hesla.webapp', - 'icon-128.png', - 'icon-30.png', - 'icon-60.png', + 'android-chrome-192x192.png', + 'android-chrome-512x512.png', + 'apple-touch-icon.png', + 'favicon-16x16.png', + 'favicon-32x32.png', 'lamb-of-God.svg', 'index_de.html', 'index.html', 'require.js', - 'screen.css' + 'screen.css', + 'site.webmanifest' ]; self.addEventListener('install', event => { |