From f3ae26374b10ce73224b64ad5588adb6e16e7663 Mon Sep 17 00:00:00 2001 From: Derf Null Date: Mon, 29 May 2023 17:19:20 +0200 Subject: release assets --- public/service-worker.js | 24 ++++++++++++------------ public/static/css/material-icons.css | 8 ++++---- public/static/manifest.json | 12 ++++++------ public/static/v53 | 1 - public/static/v55 | 1 + templates/layouts/default.html.ep | 2 +- 6 files changed, 24 insertions(+), 24 deletions(-) delete mode 120000 public/static/v53 create mode 120000 public/static/v55 diff --git a/public/service-worker.js b/public/service-worker.js index 6bd5208..091de04 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -1,18 +1,18 @@ -const CACHE_NAME = 'static-cache-v54'; +const CACHE_NAME = 'static-cache-v55'; const FILES_TO_CACHE = [ '/favicon.ico', '/offline.html', - '/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', + '/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', ]; self.addEventListener('install', (evt) => { diff --git a/public/static/css/material-icons.css b/public/static/css/material-icons.css index ce44b1e..fdcc566 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/v54/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ + src: url(/static/v55/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: local('Material Icons'), local('MaterialIcons-Regular'), - 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'); + 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'); } .material-icons { diff --git a/public/static/manifest.json b/public/static/manifest.json index 0bcb4eb..fe3536e 100644 --- a/public/static/manifest.json +++ b/public/static/manifest.json @@ -3,27 +3,27 @@ "short_name": "Travelynx", "scope": "/", "icons": [{ - "src": "/static/v54/icons/icon-128x128.png", + "src": "/static/v55/icons/icon-128x128.png", "sizes": "128x128", "type": "image/png" }, { - "src": "/static/v54/icons/icon-144x144.png", + "src": "/static/v55/icons/icon-144x144.png", "sizes": "144x144", "type": "image/png" }, { - "src": "/static/v54/icons/icon-152x152.png", + "src": "/static/v55/icons/icon-152x152.png", "sizes": "152x152", "type": "image/png" }, { - "src": "/static/v54/icons/icon-192x192.png", + "src": "/static/v55/icons/icon-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/static/v54/icons/icon-256x256.png", + "src": "/static/v55/icons/icon-256x256.png", "sizes": "256x256", "type": "image/png" }, { - "src": "/static/v54/icons/icon-512x512.png", + "src": "/static/v55/icons/icon-512x512.png", "sizes": "512x512", "type": "image/png" }], diff --git a/public/static/v53 b/public/static/v53 deleted file mode 120000 index 945c9b4..0000000 --- a/public/static/v53 +++ /dev/null @@ -1 +0,0 @@ -. \ No newline at end of file diff --git a/public/static/v55 b/public/static/v55 new file mode 120000 index 0000000..945c9b4 --- /dev/null +++ b/public/static/v55 @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 64373fe..bae0fcc 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 = 'v54'; # asset version + % my $av = 'v55'; # asset version -- cgit v1.2.3