Release assets

This commit is contained in:
Birte Kristina Friesel 2024-01-29 19:59:43 +01:00
parent 2af01a63fb
commit 6162163875
No known key found for this signature in database
GPG key ID: 19E6E524EBB177BA
5 changed files with 23 additions and 23 deletions

View file

@ -1,18 +1,18 @@
const CACHE_NAME = 'static-cache-v64'; const CACHE_NAME = 'static-cache-v65';
const FILES_TO_CACHE = [ const FILES_TO_CACHE = [
'/favicon.ico', '/favicon.ico',
'/offline.html', '/offline.html',
'/static/v64/css/light.min.css', '/static/v65/css/light.min.css',
'/static/v64/css/dark.min.css', '/static/v65/css/dark.min.css',
'/static/v64/css/material-icons.css', '/static/v65/css/material-icons.css',
'/static/v64/fonts/MaterialIcons-Regular.woff2', '/static/v65/fonts/MaterialIcons-Regular.woff2',
'/static/v64/fonts/MaterialIcons-Regular.woff', '/static/v65/fonts/MaterialIcons-Regular.woff',
'/static/v64/fonts/MaterialIcons-Regular.ttf', '/static/v65/fonts/MaterialIcons-Regular.ttf',
'/static/v64/js/jquery-3.4.1.min.js', '/static/v65/js/jquery-3.4.1.min.js',
'/static/v64/js/materialize.min.js', '/static/v65/js/materialize.min.js',
'/static/v64/js/travelynx-actions.min.js', '/static/v65/js/travelynx-actions.min.js',
'/static/v64/js/autocomplete.min.js', '/static/v65/js/autocomplete.min.js',
'/static/v64/js/geolocation.min.js', '/static/v65/js/geolocation.min.js',
]; ];
self.addEventListener('install', (evt) => { self.addEventListener('install', (evt) => {

View file

@ -2,12 +2,12 @@
font-family: 'Material Icons'; font-family: 'Material Icons';
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: url(/static/v64/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: url(/static/v65/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'), src: local('Material Icons'),
local('MaterialIcons-Regular'), local('MaterialIcons-Regular'),
url(/static/v64/fonts/MaterialIcons-Regular.woff2) format('woff2'), url(/static/v65/fonts/MaterialIcons-Regular.woff2) format('woff2'),
url(/static/v64/fonts/MaterialIcons-Regular.woff) format('woff'), url(/static/v65/fonts/MaterialIcons-Regular.woff) format('woff'),
url(/static/v64/fonts/MaterialIcons-Regular.ttf) format('truetype'); url(/static/v65/fonts/MaterialIcons-Regular.ttf) format('truetype');
} }
.material-icons { .material-icons {

View file

@ -3,27 +3,27 @@
"short_name": "Travelynx", "short_name": "Travelynx",
"scope": "/", "scope": "/",
"icons": [{ "icons": [{
"src": "/static/v64/icons/icon-128x128.png", "src": "/static/v65/icons/icon-128x128.png",
"sizes": "128x128", "sizes": "128x128",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v64/icons/icon-144x144.png", "src": "/static/v65/icons/icon-144x144.png",
"sizes": "144x144", "sizes": "144x144",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v64/icons/icon-152x152.png", "src": "/static/v65/icons/icon-152x152.png",
"sizes": "152x152", "sizes": "152x152",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v64/icons/icon-192x192.png", "src": "/static/v65/icons/icon-192x192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v64/icons/icon-256x256.png", "src": "/static/v65/icons/icon-256x256.png",
"sizes": "256x256", "sizes": "256x256",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v64/icons/icon-512x512.png", "src": "/static/v65/icons/icon-512x512.png",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/png"
}], }],

View file

@ -13,7 +13,7 @@
% while (my ($key, $value) = each %{stash('opengraph') // {}}) { % while (my ($key, $value) = each %{stash('opengraph') // {}}) {
<meta property="og:<%= $key %>" content="<%= $value %>"> <meta property="og:<%= $key %>" content="<%= $value %>">
% } % }
% my $av = 'v64'; # asset version % my $av = 'v65'; # 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-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-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96"> <link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96">