mirror of
https://github.com/derf/travelynx
synced 2024-11-10 15:04:17 +00:00
release assets
This commit is contained in:
parent
ce5925ad85
commit
4d04ee9069
5 changed files with 24 additions and 24 deletions
|
@ -1,19 +1,19 @@
|
|||
const CACHE_NAME = 'static-cache-v39';
|
||||
const CACHE_NAME = 'static-cache-v40';
|
||||
const FILES_TO_CACHE = [
|
||||
'/favicon.ico',
|
||||
'/offline.html',
|
||||
'/static/v39/css/light.min.css',
|
||||
'/static/v39/css/dark.min.css',
|
||||
'/static/v39/css/material-icons.css',
|
||||
'/static/v39/css/local.css',
|
||||
'/static/v39/fonts/MaterialIcons-Regular.woff2',
|
||||
'/static/v39/fonts/MaterialIcons-Regular.woff',
|
||||
'/static/v39/fonts/MaterialIcons-Regular.ttf',
|
||||
'/static/v39/js/jquery-3.4.1.min.js',
|
||||
'/static/v39/js/materialize.min.js',
|
||||
'/static/v39/js/travelynx-actions.min.js',
|
||||
'/static/v39/js/autocomplete.min.js',
|
||||
'/static/v39/js/geolocation.min.js',
|
||||
'/static/v40/css/light.min.css',
|
||||
'/static/v40/css/dark.min.css',
|
||||
'/static/v40/css/material-icons.css',
|
||||
'/static/v40/css/local.css',
|
||||
'/static/v40/fonts/MaterialIcons-Regular.woff2',
|
||||
'/static/v40/fonts/MaterialIcons-Regular.woff',
|
||||
'/static/v40/fonts/MaterialIcons-Regular.ttf',
|
||||
'/static/v40/js/jquery-3.4.1.min.js',
|
||||
'/static/v40/js/materialize.min.js',
|
||||
'/static/v40/js/travelynx-actions.min.js',
|
||||
'/static/v40/js/autocomplete.min.js',
|
||||
'/static/v40/js/geolocation.min.js',
|
||||
];
|
||||
|
||||
self.addEventListener('install', (evt) => {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: 'Material Icons';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(/static/v39/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
|
||||
src: url(/static/v40/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
|
||||
src: local('Material Icons'),
|
||||
local('MaterialIcons-Regular'),
|
||||
url(/static/v39/fonts/MaterialIcons-Regular.woff2) format('woff2'),
|
||||
url(/static/v39/fonts/MaterialIcons-Regular.woff) format('woff'),
|
||||
url(/static/v39/fonts/MaterialIcons-Regular.ttf) format('truetype');
|
||||
url(/static/v40/fonts/MaterialIcons-Regular.woff2) format('woff2'),
|
||||
url(/static/v40/fonts/MaterialIcons-Regular.woff) format('woff'),
|
||||
url(/static/v40/fonts/MaterialIcons-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
|
|
|
@ -3,27 +3,27 @@
|
|||
"short_name": "Travelynx",
|
||||
"scope": "/",
|
||||
"icons": [{
|
||||
"src": "/static/v39/icons/icon-128x128.png",
|
||||
"src": "/static/v40/icons/icon-128x128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v39/icons/icon-144x144.png",
|
||||
"src": "/static/v40/icons/icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v39/icons/icon-152x152.png",
|
||||
"src": "/static/v40/icons/icon-152x152.png",
|
||||
"sizes": "152x152",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v39/icons/icon-192x192.png",
|
||||
"src": "/static/v40/icons/icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v39/icons/icon-256x256.png",
|
||||
"src": "/static/v40/icons/icon-256x256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v39/icons/icon-512x512.png",
|
||||
"src": "/static/v40/icons/icon-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}],
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
% while (my ($key, $value) = each %{stash('opengraph') // {}}) {
|
||||
<meta property="og:<%= $key %>" content="<%= $value %>">
|
||||
% }
|
||||
% my $av = 'v39'; # asset version
|
||||
% my $av = 'v40'; # asset version
|
||||
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-16x16.png" sizes="16x16">
|
||||
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96">
|
||||
|
|
Loading…
Reference in a new issue