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

View File

@ -1,2 +1,2 @@
489eb5598ca9dabe59357242d80c83b794e52482 3001afd9dbfaca29406d684f763b244c8c7c40f6
Fri May 15 19:04:43 UTC 2020 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 CACHE MANIFEST
# 2020-05-15:v1.14.3 # 2020-06-06:v1.15.0
# updmin:v8.0.0 # updmin:v9.0.1
NETWORK: 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( event.waitUntil(
caches.open('v1').then(cache => caches.open('v1').then((cache) =>
fetch('.?v=' + VERSION).then(response => { fetch('.?v=' + VERSION).then((response) => {
if (response.ok) { if (response.ok) {
return cache.put('.', response); return cache.put('.', response);
} }
@ -12,8 +12,8 @@ self.addEventListener('install', event =>
) )
); );
self.addEventListener('fetch', event => { self.addEventListener('fetch', (event) => {
event.respondWith( event.respondWith(
caches.match(event.request.url).then(response => response || fetch(event.request)) caches.match(event.request.url).then((response) => response || fetch(event.request))
); );
}); });