mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
oops 2 (asset release)
This commit is contained in:
parent
e171616c6f
commit
5c3a0a562a
6 changed files with 24 additions and 24 deletions
|
@ -1,18 +1,18 @@
|
|||
const CACHE_NAME = 'static-cache-v19';
|
||||
const CACHE_NAME = 'static-cache-v20';
|
||||
const FILES_TO_CACHE = [
|
||||
'/favicon.ico',
|
||||
'/offline.html',
|
||||
'/static/v19/css/materialize.min.css',
|
||||
'/static/v19/css/material-icons.css',
|
||||
'/static/v19/css/local.css',
|
||||
'/static/v19/fonts/MaterialIcons-Regular.woff2',
|
||||
'/static/v19/fonts/MaterialIcons-Regular.woff',
|
||||
'/static/v19/fonts/MaterialIcons-Regular.ttf',
|
||||
'/static/v19/js/jquery-3.4.1.min.js',
|
||||
'/static/v19/js/materialize.min.js',
|
||||
'/static/v19/js/travelynx-actions.min.js',
|
||||
'/static/v19/js/autocomplete.min.js',
|
||||
'/static/v19/js/geolocation.min.js',
|
||||
'/static/v20/css/materialize.min.css',
|
||||
'/static/v20/css/material-icons.css',
|
||||
'/static/v20/css/local.css',
|
||||
'/static/v20/fonts/MaterialIcons-Regular.woff2',
|
||||
'/static/v20/fonts/MaterialIcons-Regular.woff',
|
||||
'/static/v20/fonts/MaterialIcons-Regular.ttf',
|
||||
'/static/v20/js/jquery-3.4.1.min.js',
|
||||
'/static/v20/js/materialize.min.js',
|
||||
'/static/v20/js/travelynx-actions.min.js',
|
||||
'/static/v20/js/autocomplete.min.js',
|
||||
'/static/v20/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/v19/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
|
||||
src: url(/static/v20/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
|
||||
src: local('Material Icons'),
|
||||
local('MaterialIcons-Regular'),
|
||||
url(/static/v19/fonts/MaterialIcons-Regular.woff2) format('woff2'),
|
||||
url(/static/v19/fonts/MaterialIcons-Regular.woff) format('woff'),
|
||||
url(/static/v19/fonts/MaterialIcons-Regular.ttf) format('truetype');
|
||||
url(/static/v20/fonts/MaterialIcons-Regular.woff2) format('woff2'),
|
||||
url(/static/v20/fonts/MaterialIcons-Regular.woff) format('woff'),
|
||||
url(/static/v20/fonts/MaterialIcons-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
|
|
|
@ -3,27 +3,27 @@
|
|||
"short_name": "Travelynx",
|
||||
"scope": "/",
|
||||
"icons": [{
|
||||
"src": "/static/v19/icons/icon-128x128.png",
|
||||
"src": "/static/v20/icons/icon-128x128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v19/icons/icon-144x144.png",
|
||||
"src": "/static/v20/icons/icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v19/icons/icon-152x152.png",
|
||||
"src": "/static/v20/icons/icon-152x152.png",
|
||||
"sizes": "152x152",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v19/icons/icon-192x192.png",
|
||||
"src": "/static/v20/icons/icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v19/icons/icon-256x256.png",
|
||||
"src": "/static/v20/icons/icon-256x256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v19/icons/icon-512x512.png",
|
||||
"src": "/static/v20/icons/icon-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}],
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -ex
|
||||
|
||||
current="$(find -d public/static/v* | tail -n 1 | grep -o '..$')"
|
||||
current="$(find public/static/v* | tail -n 1 | grep -o '..$')"
|
||||
prev=$((current - 1))
|
||||
next=$((current + 1))
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="apple-mobile-web-app-title" content="Travelynx">
|
||||
% my $av = 'v19'; # asset version
|
||||
% my $av = 'v20'; # 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