From 05fd4deed433f524403d9b7dcbc4b8df0685a167 Mon Sep 17 00:00:00 2001 From: Derf Null Date: Sun, 2 Jul 2023 10:49:18 +0200 Subject: release assets --- public/service-worker.js | 24 ++++++++++++------------ public/static/css/material-icons.css | 8 ++++---- public/static/manifest.json | 12 ++++++------ public/static/v55 | 1 - public/static/v57 | 1 + templates/layouts/default.html.ep | 2 +- 6 files changed, 24 insertions(+), 24 deletions(-) delete mode 120000 public/static/v55 create mode 120000 public/static/v57 diff --git a/public/service-worker.js b/public/service-worker.js index 866b6ac..d38d190 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -1,18 +1,18 @@ -const CACHE_NAME = 'static-cache-v56'; +const CACHE_NAME = 'static-cache-v57'; const FILES_TO_CACHE = [ '/favicon.ico', '/offline.html', - '/static/v56/css/light.min.css', - '/static/v56/css/dark.min.css', - '/static/v56/css/material-icons.css', - '/static/v56/fonts/MaterialIcons-Regular.woff2', - '/static/v56/fonts/MaterialIcons-Regular.woff', - '/static/v56/fonts/MaterialIcons-Regular.ttf', - '/static/v56/js/jquery-3.4.1.min.js', - '/static/v56/js/materialize.min.js', - '/static/v56/js/travelynx-actions.min.js', - '/static/v56/js/autocomplete.min.js', - '/static/v56/js/geolocation.min.js', + '/static/v57/css/light.min.css', + '/static/v57/css/dark.min.css', + '/static/v57/css/material-icons.css', + '/static/v57/fonts/MaterialIcons-Regular.woff2', + '/static/v57/fonts/MaterialIcons-Regular.woff', + '/static/v57/fonts/MaterialIcons-Regular.ttf', + '/static/v57/js/jquery-3.4.1.min.js', + '/static/v57/js/materialize.min.js', + '/static/v57/js/travelynx-actions.min.js', + '/static/v57/js/autocomplete.min.js', + '/static/v57/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 64a95de..3c3f500 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/v56/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ + src: url(/static/v57/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: local('Material Icons'), local('MaterialIcons-Regular'), - url(/static/v56/fonts/MaterialIcons-Regular.woff2) format('woff2'), - url(/static/v56/fonts/MaterialIcons-Regular.woff) format('woff'), - url(/static/v56/fonts/MaterialIcons-Regular.ttf) format('truetype'); + url(/static/v57/fonts/MaterialIcons-Regular.woff2) format('woff2'), + url(/static/v57/fonts/MaterialIcons-Regular.woff) format('woff'), + url(/static/v57/fonts/MaterialIcons-Regular.ttf) format('truetype'); } .material-icons { diff --git a/public/static/manifest.json b/public/static/manifest.json index f878a1a..84bc99d 100644 --- a/public/static/manifest.json +++ b/public/static/manifest.json @@ -3,27 +3,27 @@ "short_name": "Travelynx", "scope": "/", "icons": [{ - "src": "/static/v56/icons/icon-128x128.png", + "src": "/static/v57/icons/icon-128x128.png", "sizes": "128x128", "type": "image/png" }, { - "src": "/static/v56/icons/icon-144x144.png", + "src": "/static/v57/icons/icon-144x144.png", "sizes": "144x144", "type": "image/png" }, { - "src": "/static/v56/icons/icon-152x152.png", + "src": "/static/v57/icons/icon-152x152.png", "sizes": "152x152", "type": "image/png" }, { - "src": "/static/v56/icons/icon-192x192.png", + "src": "/static/v57/icons/icon-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/static/v56/icons/icon-256x256.png", + "src": "/static/v57/icons/icon-256x256.png", "sizes": "256x256", "type": "image/png" }, { - "src": "/static/v56/icons/icon-512x512.png", + "src": "/static/v57/icons/icon-512x512.png", "sizes": "512x512", "type": "image/png" }], diff --git a/public/static/v55 b/public/static/v55 deleted file mode 120000 index 945c9b4..0000000 --- a/public/static/v55 +++ /dev/null @@ -1 +0,0 @@ -. \ No newline at end of file diff --git a/public/static/v57 b/public/static/v57 new file mode 120000 index 0000000..945c9b4 --- /dev/null +++ b/public/static/v57 @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 8406bcc..03c59a4 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 = 'v56'; # asset version + % my $av = 'v57'; # asset version -- cgit v1.2.3