diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2022-03-31 10:58:05 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2022-03-31 10:58:05 +0200 |
commit | 1243d7616874d26d1da814b8d6549d05d72cf06b (patch) | |
tree | c6bcce6301861631fcbf2bb30c93f77af1374083 /sworker.js | |
parent | b5a9f3d33c6fbc1a016b1360325021235c23c7cc (diff) | |
download | zalmy-1243d7616874d26d1da814b8d6549d05d72cf06b.tar.gz |
Convert into a proper web application according to the 2022 fashion.
Thanks to https://favicon.io/favicon-converter/ for generating all icons.
Diffstat (limited to 'sworker.js')
-rw-r--r-- | sworker.js | 27 |
1 files changed, 17 insertions, 10 deletions
@@ -1,21 +1,28 @@ -var VERSION = 'v43 2019-01-01'; +var VERSION = 'v44 2022-03-31'; var toCache = [ '/', 'activePage.js', 'activePage.js.map', + 'android-chrome-192x192.png', + 'android-chrome-512x512.png', + 'apple-touch-icon.png', + 'browser.js', 'config.js', 'config.js.map', + 'favicon.ico', + 'favicon-16x16.png', + 'favicon-32x32.png', + 'index_en.html', + 'index.html', + 'jsconfig.json', + 'require.js', + 'screen.css', + 'site.webmanifest', + 'sworker.js', + 'system.js', 'zalmy.js', 'zalmy.js.map', - 'zalmy.webapp', - 'require.js', - 'favicon.ico', - 'style/basic.css', - 'style/OpenSans-SemiBold.ttf', - 'style/icon-128.png', - 'style/icon-512.png', - 'style/icon-60.png', - 'style/icon-64.png' + 'zalmy.webapp' ]; self.addEventListener('install', event => { |