summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sw.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/sw.js b/sw.js
index 66c9f01d..0497a819 100644
--- a/sw.js
+++ b/sw.js
@@ -1,4 +1,4 @@
-const cacheName = 'qtpass::v1.3.2::static';
+const cacheName = 'qtpass::v1.4.0::static';
self.addEventListener('install', e => {
e.waitUntil(
@@ -8,6 +8,7 @@ self.addEventListener('install', e => {
'/404.html',
'/changelog.1.1.html',
'/changelog.1.2.html',
+ '/changelog.1.3.html',
'/changelog.beta.html',
'/changelog.html',
'/changelog.old.html',
@@ -67,4 +68,4 @@ self.addEventListener('fetch', event => {
});
})
);
-}); \ No newline at end of file
+});