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