From 851be46754f6db586f1742545bc3aac5030f0d3f Mon Sep 17 00:00:00 2001 From: Derf Null Date: Sun, 7 May 2023 09:56:07 +0200 Subject: release assets --- public/service-worker.js | 24 ++++++++++++------------ public/static/css/material-icons.css | 8 ++++---- public/static/manifest.json | 12 ++++++------ public/static/v52 | 1 - public/static/v54 | 1 + templates/layouts/default.html.ep | 2 +- 6 files changed, 24 insertions(+), 24 deletions(-) delete mode 120000 public/static/v52 create mode 120000 public/static/v54 diff --git a/public/service-worker.js b/public/service-worker.js index 33e58ba..6bd5208 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -1,18 +1,18 @@ -const CACHE_NAME = 'static-cache-v53'; +const CACHE_NAME = 'static-cache-v54'; const FILES_TO_CACHE = [ '/favicon.ico', '/offline.html', - '/static/v53/css/light.min.css', - '/static/v53/css/dark.min.css', - '/static/v53/css/material-icons.css', - '/static/v53/fonts/MaterialIcons-Regular.woff2', - '/static/v53/fonts/MaterialIcons-Regular.woff', - '/static/v53/fonts/MaterialIcons-Regular.ttf', - '/static/v53/js/jquery-3.4.1.min.js', - '/static/v53/js/materialize.min.js', - '/static/v53/js/travelynx-actions.min.js', - '/static/v53/js/autocomplete.min.js', - '/static/v53/js/geolocation.min.js', + '/static/v54/css/light.min.css', + '/static/v54/css/dark.min.css', + '/static/v54/css/material-icons.css', + '/static/v54/fonts/MaterialIcons-Regular.woff2', + '/static/v54/fonts/MaterialIcons-Regular.woff', + '/static/v54/fonts/MaterialIcons-Regular.ttf', + '/static/v54/js/jquery-3.4.1.min.js', + '/static/v54/js/materialize.min.js', + '/static/v54/js/travelynx-actions.min.js', + '/static/v54/js/autocomplete.min.js', + '/static/v54/js/geolocation.min.js', ]; self.addEventListener('install', (evt) => { diff --git a/public/static/css/material-icons.css b/public/static/css/material-icons.css index b219576..ce44b1e 100644 --- a/public/static/css/material-icons.css +++ b/public/static/css/material-icons.css @@ -2,12 +2,12 @@ font-family: 'Material Icons'; font-style: normal; font-weight: 400; - src: url(/static/v53/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ + src: url(/static/v54/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: local('Material Icons'), local('MaterialIcons-Regular'), - url(/static/v53/fonts/MaterialIcons-Regular.woff2) format('woff2'), - url(/static/v53/fonts/MaterialIcons-Regular.woff) format('woff'), - url(/static/v53/fonts/MaterialIcons-Regular.ttf) format('truetype'); + url(/static/v54/fonts/MaterialIcons-Regular.woff2) format('woff2'), + url(/static/v54/fonts/MaterialIcons-Regular.woff) format('woff'), + url(/static/v54/fonts/MaterialIcons-Regular.ttf) format('truetype'); } .material-icons { diff --git a/public/static/manifest.json b/public/static/manifest.json index 9a6bbb1..0bcb4eb 100644 --- a/public/static/manifest.json +++ b/public/static/manifest.json @@ -3,27 +3,27 @@ "short_name": "Travelynx", "scope": "/", "icons": [{ - "src": "/static/v53/icons/icon-128x128.png", + "src": "/static/v54/icons/icon-128x128.png", "sizes": "128x128", "type": "image/png" }, { - "src": "/static/v53/icons/icon-144x144.png", + "src": "/static/v54/icons/icon-144x144.png", "sizes": "144x144", "type": "image/png" }, { - "src": "/static/v53/icons/icon-152x152.png", + "src": "/static/v54/icons/icon-152x152.png", "sizes": "152x152", "type": "image/png" }, { - "src": "/static/v53/icons/icon-192x192.png", + "src": "/static/v54/icons/icon-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/static/v53/icons/icon-256x256.png", + "src": "/static/v54/icons/icon-256x256.png", "sizes": "256x256", "type": "image/png" }, { - "src": "/static/v53/icons/icon-512x512.png", + "src": "/static/v54/icons/icon-512x512.png", "sizes": "512x512", "type": "image/png" }], diff --git a/public/static/v52 b/public/static/v52 deleted file mode 120000 index 945c9b4..0000000 --- a/public/static/v52 +++ /dev/null @@ -1 +0,0 @@ -. \ No newline at end of file diff --git a/public/static/v54 b/public/static/v54 new file mode 120000 index 0000000..945c9b4 --- /dev/null +++ b/public/static/v54 @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index c638bbf..64373fe 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -13,7 +13,7 @@ % while (my ($key, $value) = each %{stash('opengraph') // {}}) { % } - % my $av = 'v53'; # asset version + % my $av = 'v54'; # asset version -- cgit v1.2.3