This commit is contained in:
GitHub Action 2020-06-06 15:19:05 +00:00
parent 80a956a602
commit 9d3d3ab446
5 changed files with 36 additions and 35 deletions

View File

@ -1,27 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Not Found</title>
<style>
body {
font-family: -apple-system, "BlinkMacSystemFont", "Raleway", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
font-feature-settings: "liga" 0;
text-align: center;
background: #F5F5F5;
font-weight: 300;
}
h1 {
font-size: 3em;
margin-top: 10vh;
}
p {
line-height: 1.5em;
}
</style>
</head>
<body>
<h1>404 Not Found</h1>
<p>Sorry, the page you're looking for was not found.</p>
</body>
<head>
<meta charset="UTF-8" />
<title>Not Found</title>
<style>
body {
font-family: -apple-system, 'BlinkMacSystemFont', 'Raleway', 'Helvetica Neue',
'Helvetica', 'Arial', sans-serif;
font-feature-settings: 'liga' 0;
text-align: center;
background: #f5f5f5;
font-weight: 300;
}
h1 {
font-size: 3em;
margin-top: 10vh;
}
p {
line-height: 1.5em;
}
</style>
</head>
<body>
<h1>404 Not Found</h1>
<p>Sorry, the page you're looking for was not found.</p>
</body>
</html>

View File

@ -1,2 +1,2 @@
489eb5598ca9dabe59357242d80c83b794e52482
Fri May 15 19:04:43 UTC 2020
3001afd9dbfaca29406d684f763b244c8c7c40f6
Sat Jun 6 15:19:05 UTC 2020

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
CACHE MANIFEST
# 2020-05-15:v1.14.3
# updmin:v8.0.0
# 2020-06-06:v1.15.0
# updmin:v9.0.1
NETWORK:
*

View File

@ -1,9 +1,9 @@
const VERSION = '1.14.3';
const VERSION = '1.15.0';
self.addEventListener('install', event =>
self.addEventListener('install', (event) =>
event.waitUntil(
caches.open('v1').then(cache =>
fetch('.?v=' + VERSION).then(response => {
caches.open('v1').then((cache) =>
fetch('.?v=' + VERSION).then((response) => {
if (response.ok) {
return cache.put('.', response);
}
@ -12,8 +12,8 @@ self.addEventListener('install', event =>
)
);
self.addEventListener('fetch', event => {
self.addEventListener('fetch', (event) => {
event.respondWith(
caches.match(event.request.url).then(response => response || fetch(event.request))
caches.match(event.request.url).then((response) => response || fetch(event.request))
);
});