Release version 19, fix asset-release for macos

This commit is contained in:
marudor 2019-05-11 12:51:41 +02:00
parent d2f01f963a
commit 94febe86cd
No known key found for this signature in database
GPG key ID: 914085684F88D2C1
6 changed files with 27 additions and 27 deletions

View file

@ -1,18 +1,18 @@
const CACHE_NAME = 'static-cache-v18'; const CACHE_NAME = 'static-cache-v19';
const FILES_TO_CACHE = [ const FILES_TO_CACHE = [
'/favicon.ico', '/favicon.ico',
'/offline.html', '/offline.html',
'/static/v18/css/materialize.min.css', '/static/v19/css/materialize.min.css',
'/static/v18/css/material-icons.css', '/static/v19/css/material-icons.css',
'/static/v18/css/local.css', '/static/v19/css/local.css',
'/static/v18/fonts/MaterialIcons-Regular.woff2', '/static/v19/fonts/MaterialIcons-Regular.woff2',
'/static/v18/fonts/MaterialIcons-Regular.woff', '/static/v19/fonts/MaterialIcons-Regular.woff',
'/static/v18/fonts/MaterialIcons-Regular.ttf', '/static/v19/fonts/MaterialIcons-Regular.ttf',
'/static/v18/js/jquery-3.4.1.min.js', '/static/v19/js/jquery-3.4.1.min.js',
'/static/v18/js/materialize.min.js', '/static/v19/js/materialize.min.js',
'/static/v18/js/travelynx-actions.min.js', '/static/v19/js/travelynx-actions.min.js',
'/static/v18/js/autocomplete.min.js', '/static/v19/js/autocomplete.min.js',
'/static/v18/js/geolocation.min.js', '/static/v19/js/geolocation.min.js',
]; ];
self.addEventListener('install', (evt) => { self.addEventListener('install', (evt) => {

View file

@ -2,12 +2,12 @@
font-family: 'Material Icons'; font-family: 'Material Icons';
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: url(/static/v18/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: url(/static/v19/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'), src: local('Material Icons'),
local('MaterialIcons-Regular'), local('MaterialIcons-Regular'),
url(/static/v18/fonts/MaterialIcons-Regular.woff2) format('woff2'), url(/static/v19/fonts/MaterialIcons-Regular.woff2) format('woff2'),
url(/static/v18/fonts/MaterialIcons-Regular.woff) format('woff'), url(/static/v19/fonts/MaterialIcons-Regular.woff) format('woff'),
url(/static/v18/fonts/MaterialIcons-Regular.ttf) format('truetype'); url(/static/v19/fonts/MaterialIcons-Regular.ttf) format('truetype');
} }
.material-icons { .material-icons {

View file

@ -3,27 +3,27 @@
"short_name": "Travelynx", "short_name": "Travelynx",
"scope": "/", "scope": "/",
"icons": [{ "icons": [{
"src": "/static/v18/icons/icon-128x128.png", "src": "/static/v19/icons/icon-128x128.png",
"sizes": "128x128", "sizes": "128x128",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v18/icons/icon-144x144.png", "src": "/static/v19/icons/icon-144x144.png",
"sizes": "144x144", "sizes": "144x144",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v18/icons/icon-152x152.png", "src": "/static/v19/icons/icon-152x152.png",
"sizes": "152x152", "sizes": "152x152",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v18/icons/icon-192x192.png", "src": "/static/v19/icons/icon-192x192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v18/icons/icon-256x256.png", "src": "/static/v19/icons/icon-256x256.png",
"sizes": "256x256", "sizes": "256x256",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v18/icons/icon-512x512.png", "src": "/static/v19/icons/icon-512x512.png",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/png"
}], }],

View file

@ -2,16 +2,16 @@
set -ex set -ex
current="$(ls -d public/static/v* | tail -n 1 | grep -o '..$')" current="$(find -d public/static/v* | tail -n 1 | grep -o '..$')"
prev=$((current - 1)) prev=$((current - 1))
next=$((current + 1)) next=$((current + 1))
git mv public/static/v${prev} public/static/v${next} git mv public/static/v${prev} public/static/v${next}
sed -i "s!/v${current}/!/v${next}/!g" \ perl -pi -e "s!/v${current}/!/v${next}/!g" \
public/service-worker.js public/static/manifest.json \ public/service-worker.js public/static/manifest.json \
public/static/css/material-icons.css public/static/css/material-icons.css
sed -i "s!static-cache-v${current}!static-cache-v${next}!" public/service-worker.js perl -pi -e "s!static-cache-v${current}!static-cache-v${next}!" public/service-worker.js
sed -i "s!av = 'v${current}'!av = 'v${next}'!" templates/layouts/default.html.ep perl -pi -e "s!av = 'v${current}'!av = 'v${next}'!" templates/layouts/default.html.ep

View file

@ -9,7 +9,7 @@
<meta name="apple-mobile-web-app-capable" content="yes"> <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-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Travelynx"> <meta name="apple-mobile-web-app-title" content="Travelynx">
% my $av = 'v18'; # asset version % my $av = 'v19'; # asset version
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-16x16.png" sizes="16x16"> <link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-32x32.png" sizes="32x32"> <link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96"> <link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96">