Skip to content

Commit

Permalink
release assets
Browse files Browse the repository at this point in the history
  • Loading branch information
derf committed Mar 23, 2024
1 parent 2676c4c commit 8bbe698
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
24 changes: 12 additions & 12 deletions public/service-worker.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
const CACHE_NAME = 'static-cache-v69';
const CACHE_NAME = 'static-cache-v70';
const FILES_TO_CACHE = [
'/favicon.ico',
'/offline.html',
'/static/v69/css/light.min.css',
'/static/v69/css/dark.min.css',
'/static/v69/css/material-icons.css',
'/static/v69/fonts/MaterialIcons-Regular.woff2',
'/static/v69/fonts/MaterialIcons-Regular.woff',
'/static/v69/fonts/MaterialIcons-Regular.ttf',
'/static/v69/js/jquery-3.4.1.min.js',
'/static/v69/js/materialize.min.js',
'/static/v69/js/travelynx-actions.min.js',
'/static/v69/js/autocomplete.min.js',
'/static/v69/js/geolocation.min.js',
'/static/v70/css/light.min.css',
'/static/v70/css/dark.min.css',
'/static/v70/css/material-icons.css',
'/static/v70/fonts/MaterialIcons-Regular.woff2',
'/static/v70/fonts/MaterialIcons-Regular.woff',
'/static/v70/fonts/MaterialIcons-Regular.ttf',
'/static/v70/js/jquery-3.4.1.min.js',
'/static/v70/js/materialize.min.js',
'/static/v70/js/travelynx-actions.min.js',
'/static/v70/js/autocomplete.min.js',
'/static/v70/js/geolocation.min.js',
];

self.addEventListener('install', (evt) => {
Expand Down
8 changes: 4 additions & 4 deletions public/static/css/material-icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(/static/v69/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
src: url(/static/v70/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url(/static/v69/fonts/MaterialIcons-Regular.woff2) format('woff2'),
url(/static/v69/fonts/MaterialIcons-Regular.woff) format('woff'),
url(/static/v69/fonts/MaterialIcons-Regular.ttf) format('truetype');
url(/static/v70/fonts/MaterialIcons-Regular.woff2) format('woff2'),
url(/static/v70/fonts/MaterialIcons-Regular.woff) format('woff'),
url(/static/v70/fonts/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
Expand Down
12 changes: 6 additions & 6 deletions public/static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
"short_name": "Travelynx",
"scope": "/",
"icons": [{
"src": "/static/v69/icons/icon-128x128.png",
"src": "/static/v70/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
}, {
"src": "/static/v69/icons/icon-144x144.png",
"src": "/static/v70/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
}, {
"src": "/static/v69/icons/icon-152x152.png",
"src": "/static/v70/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
}, {
"src": "/static/v69/icons/icon-192x192.png",
"src": "/static/v70/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
}, {
"src": "/static/v69/icons/icon-256x256.png",
"src": "/static/v70/icons/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
}, {
"src": "/static/v69/icons/icon-512x512.png",
"src": "/static/v70/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}],
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion templates/layouts/default.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
% while (my ($key, $value) = each %{stash('opengraph') // {}}) {
<meta property="og:<%= $key %>" content="<%= $value %>">
% }
% my $av = 'v69'; # asset version
% my $av = 'v70'; # 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">
Expand Down

0 comments on commit 8bbe698

Please sign in to comment.