summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/service-worker.js16
-rw-r--r--public/static/css/material-icons.css10
-rw-r--r--public/static/fonts/MaterialIcons-Regular.woffbin78776 -> 57620 bytes
-rw-r--r--public/static/fonts/MaterialIcons-Regular.woff2bin42304 -> 44300 bytes
-rw-r--r--public/static/manifest.json12
l---------public/static/v12 (renamed from public/static/v10)0
-rw-r--r--templates/layouts/default.html.ep2
7 files changed, 20 insertions, 20 deletions
diff --git a/public/service-worker.js b/public/service-worker.js
index 828e863..a2d4ea8 100644
--- a/public/service-worker.js
+++ b/public/service-worker.js
@@ -1,12 +1,14 @@
-const CACHE_NAME = 'static-cache-v11';
+const CACHE_NAME = 'static-cache-v12';
const FILES_TO_CACHE = [
'/offline.html',
- '/static/v11/css/materialize.min.css',
- '/static/v11/css/material-icons.css',
- '/static/v11/css/local.css',
- '/static/v11/js/jquery-3.4.1.min.js',
- '/static/v11/js/materialize.min.js',
- '/static/v11/js/travelynx-actions.min.js',
+ '/static/v12/css/materialize.min.css',
+ '/static/v12/css/material-icons.css',
+ '/static/v12/css/local.css',
+ '/static/v12/js/jquery-3.4.1.min.js',
+ '/static/v12/js/materialize.min.js',
+ '/static/v12/js/travelynx-actions.min.js',
+ '/static/v12/js/autocomplete.min.js',
+ '/static/v12/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 d248384..2839576 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/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
+ src: url(/static/v12/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'),
local('MaterialIcons-Regular'),
- url(/static/fonts/MaterialIcons-Regular.woff2) format('woff2'),
- url(/static/fonts/MaterialIcons-Regular.woff) format('woff'),
- url(/static/fonts/MaterialIcons-Regular.ttf) format('truetype');
+ url(/static/v12/fonts/MaterialIcons-Regular.woff2) format('woff2'),
+ url(/static/v12/fonts/MaterialIcons-Regular.woff) format('woff'),
+ url(/static/v12/fonts/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
@@ -16,8 +16,6 @@
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
- width: 1em;
- height: 1em;
line-height: 1;
text-transform: none;
letter-spacing: normal;
diff --git a/public/static/fonts/MaterialIcons-Regular.woff b/public/static/fonts/MaterialIcons-Regular.woff
index a0bfd17..b648a3e 100644
--- a/public/static/fonts/MaterialIcons-Regular.woff
+++ b/public/static/fonts/MaterialIcons-Regular.woff
Binary files differ
diff --git a/public/static/fonts/MaterialIcons-Regular.woff2 b/public/static/fonts/MaterialIcons-Regular.woff2
index 20f1f67..9fa2112 100644
--- a/public/static/fonts/MaterialIcons-Regular.woff2
+++ b/public/static/fonts/MaterialIcons-Regular.woff2
Binary files differ
diff --git a/public/static/manifest.json b/public/static/manifest.json
index a20ce3d..d029d39 100644
--- a/public/static/manifest.json
+++ b/public/static/manifest.json
@@ -3,27 +3,27 @@
"short_name": "Travelynx",
"scope": "/",
"icons": [{
- "src": "/static/v11/icons/icon-128x128.png",
+ "src": "/static/v12/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
}, {
- "src": "/static/v11/icons/icon-144x144.png",
+ "src": "/static/v12/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
}, {
- "src": "/static/v11/icons/icon-152x152.png",
+ "src": "/static/v12/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
}, {
- "src": "/static/v11/icons/icon-192x192.png",
+ "src": "/static/v12/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
}, {
- "src": "/static/v11/icons/icon-256x256.png",
+ "src": "/static/v12/icons/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
}, {
- "src": "/static/v11/icons/icon-512x512.png",
+ "src": "/static/v12/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}],
diff --git a/public/static/v10 b/public/static/v12
index 945c9b4..945c9b4 120000
--- a/public/static/v10
+++ b/public/static/v12
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep
index c8cc550..e6a4f6a 100644
--- a/templates/layouts/default.html.ep
+++ b/templates/layouts/default.html.ep
@@ -9,7 +9,7 @@
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Weather PWA">
- % my $av = 'v11'; # asset version
+ % my $av = 'v12'; # asset version
<link rel="apple-touch-icon" href="/static/<%= $av %>/icons/icon-152x152.png">
<link rel="manifest" href="/static/<%= $av %>/manifest.json">
%= stylesheet "/static/${av}/css/materialize.min.css"