From 96dd81ddf1188377bf1402e866c4b263dbd55d1c Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 13:49:56 +0200 Subject: Fixed install script --- dist/sw.js | 150 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 dist/sw.js (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js new file mode 100644 index 0000000..57d1646 --- /dev/null +++ b/dist/sw.js @@ -0,0 +1,150 @@ + + + + +// Change version to cause cache refresh +const static_cache_name = "site-static-1.0.13-beta-c2d13f2"; +// latest commit is c2d13f23711f90b86cff6ca06552b69dd2228932 +// Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js +// sw.js NE SME BITI CACHAN, ker vsebuje verzijo! + +const assets = [ + "/css/materialize.min.css", + "/css/fontawesome.min.css", + "/css/materialicons.css", + "/css/styles.css", + "/css/fullcalendar/custom.css", + "/css/fullcalendar/daygrid/main.min.css", + "/css/fullcalendar/core/main.min.css", + "/css/fullcalendar/timegrid/main.min.css", + + "/fonts/fa-solid-900.eot", + "/fonts/fa-solid-900.woff2", + "/fonts/fa-brands-400.woff2", + "/fonts/fa-regular-400.eot", + "/fonts/fa-regular-400.woff2", + "/fonts/fa-brands-400.eot", + "/fonts/materialicons.woff2", + + "/img/avatars/asijanec.png", + "/img/avatars/rstular.png", + "/img/icons/icon_384.png", + "/img/icons/icon_192.png", + "/img/icons/icon_72.png", + "/img/icons/icon_144.png", + "/img/icons/icon_512.png", + "/img/icons/icon_96.png", + "/img/icons/icon_48.png", + + "/js/timetable.js", + "/js/gradings.js", + "/js/messaging.js", + "/js/privacypolicy.js", + "/js/teachers.js", + "/js/tos.js", + "/js/login.js", + "/js/app.js", + "/js/meals.js", + "/js/settings.js", + "/js/lang/bundle.js", + "/js/setup-storage.js", + + "/js/lib/materialize.min.js", + "/js/lib/jquery.min.js", + "/js/lib/localforage.min.js", + "/js/lib/xss.js", + "/js/lib/mergedeep.js", + + "/js/lib/fullcalendar/daygrid/main.min.js", + "/js/lib/fullcalendar/core/main.min.js", + "/js/lib/fullcalendar/timegrid/main.min.js", + "/js/grades.js", + "/js/about.js", + "/js/logout.js", + "/js/initialize.js", + "/js/absences.js", + "/js/changelog.js", + + "/pages/timetable.html", + "/pages/teachers.html", + "/pages/absences.html", + "/pages/about.html", + "/pages/changelog.html", + "/pages/messaging.html", + "/pages/gradings.html", + "/pages/grades.html", + "/pages/privacypolicy.html", + "/pages/tos.html", + "/pages/meals.html", + "/pages/settings.html", + + "/manifest.json", + "/index.html", + "/login.html", + "/logout.html", + "/favicon.png", + "/pages/jitsi.html", + "/js/jitsi.js", + "/pages/chats.html", + "/js/chats.js", + "/css/bubbles.css" +]; + +importScripts("/js/lib/localforage.min.js"); +importScripts("/js/setup-storage.js"); +self.addEventListener("install", (evt) => { + // Add localforage.clear() if storage purge is required + evt.waitUntil( + // localforage.clear() + setupStorage() + ); + + evt.waitUntil( + caches.open(static_cache_name).then((cache) => { + cache.addAll(assets); + }) + ); +}); + +// Delete old caches +self.addEventListener("activate", evt => { + evt.waitUntil( + caches.keys().then((keys) => { + return Promise.all(keys + .filter(key => key !== static_cache_name) + .map(key => caches.delete(key)) + ); + }) + ); +}); + +self.addEventListener("message", event => { + + if (event.data) { + let data = JSON.parse(event.data); // parse the message back to JSON + if (data.action == "addtocache") { // check the action + event.waitUntil( + caches.open(static_cache_name).then(function (cache) { + try { + return cache.add([data.url]); + } + catch (error) { + console.error("[sw.js] error: " + error); + } + }) + ); + } else if (data.action == "deletecaches") { + caches.keys().then(function (names) { + for (let name of names) + console.log("[sw.js] deleting cache named " + name); + caches.delete(name); + }); + } + } +}); + +self.addEventListener("fetch", (evt) => { + evt.respondWith(caches.match(evt.request).then((cache_res) => { + return cache_res || fetch(evt.request); + })) +}); -- cgit v1.2.3 From 5c7cf884235fd1a65e83091793e525451e317d8c Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 14:07:41 +0200 Subject: Bug fix - GSEC regex matching --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 57d1646..c2a150b 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-c2d13f2"; -// latest commit is c2d13f23711f90b86cff6ca06552b69dd2228932 +const static_cache_name = "site-static-1.0.13-beta-96dd81d"; +// latest commit is 96dd81ddf1188377bf1402e866c4b263dbd55d1c // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 44e8c1e1c9124b36a78f775b9a7dd12152a71d98 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 14:15:35 +0200 Subject: GSEC bug fix - regex matching --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index c2a150b..95cefde 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-96dd81d"; -// latest commit is 96dd81ddf1188377bf1402e866c4b263dbd55d1c +const static_cache_name = "site-static-1.0.13-beta-ad64f10"; +// latest commit is ad64f108d5480155fad1424e9ea958f0c2227d60 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From a6b27a276c6da60d7fa21c5d767ef7d38c9fac2a Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 14:21:27 +0200 Subject: GSEC bug fix - fetch teachers Subject with parenthesis in their name got improperly matched because of a lazy flag. Now it's removed, it works properly. --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 95cefde..22ff931 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-ad64f10"; -// latest commit is ad64f108d5480155fad1424e9ea958f0c2227d60 +const static_cache_name = "site-static-1.0.13-beta-44e8c1e"; +// latest commit is 44e8c1e1c9124b36a78f775b9a7dd12152a71d98 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From dcd2233aa6ceabe00b06b4fe342b14bf211e9f4a Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 15:07:56 +0200 Subject: popravljen dist, hvala rstular --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 22ff931..1325c01 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-44e8c1e"; -// latest commit is 44e8c1e1c9124b36a78f775b9a7dd12152a71d98 +const static_cache_name = "site-static-1.0.13-beta-6cb957c"; +// latest commit is 6cb957cc1f64123851ae28e37b601fe7b92e2658 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 831563c8ecb2854ceba73c284719b7579c0a3bbc Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 16:14:07 +0200 Subject: Experimental theme support --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 1325c01..c8eea7e 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-6cb957c"; -// latest commit is 6cb957cc1f64123851ae28e37b601fe7b92e2658 +const static_cache_name = "site-static-1.0.13-beta-c4599c6"; +// latest commit is c4599c626fc484703528743552dd8ff694fab7a6 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From dbb621cf007277597a39d0dec72193f81cc0d0a7 Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 17:37:27 +0200 Subject: install --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index c8eea7e..0f88ec1 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-c4599c6"; -// latest commit is c4599c626fc484703528743552dd8ff694fab7a6 +const static_cache_name = "site-static-1.0.13-beta-b2c1b20"; +// latest commit is b2c1b20b7c90ea481082c82ca2dba0e0e907566b // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From de95a6b78788da7472850dad13ed9b7de9e5b9b1 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 19:21:00 +0200 Subject: Merge --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 0f88ec1..385c54e 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-b2c1b20"; -// latest commit is b2c1b20b7c90ea481082c82ca2dba0e0e907566b +const static_cache_name = "site-static-1.0.13-beta-dbb621c"; +// latest commit is dbb621cf007277597a39d0dec72193f81cc0d0a7 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 61f0a67abdd293a17232bd5784b08709a3cd7856 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 19:38:43 +0200 Subject: Bug fixes (settings, gsec) --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 385c54e..0ad0bf4 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-dbb621c"; -// latest commit is dbb621cf007277597a39d0dec72193f81cc0d0a7 +const static_cache_name = "site-static-1.0.13-beta-de95a6b"; +// latest commit is de95a6b78788da7472850dad13ed9b7de9e5b9b1 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 75c1dd723d353bfd5cba35a686f911c54760b88c Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 19:40:46 +0200 Subject: Regex fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 0ad0bf4..3eaea7d 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-de95a6b"; -// latest commit is de95a6b78788da7472850dad13ed9b7de9e5b9b1 +const static_cache_name = "site-static-1.0.13-beta-61f0a67"; +// latest commit is 61f0a67abdd293a17232bd5784b08709a3cd7856 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From b4c56d6a3cd38f411ff01bcbf29c1e3498f94e91 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 19:42:57 +0200 Subject: Another regex bug fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 3eaea7d..e8e0d16 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-61f0a67"; -// latest commit is 61f0a67abdd293a17232bd5784b08709a3cd7856 +const static_cache_name = "site-static-1.0.13-beta-75c1dd7"; +// latest commit is 75c1dd723d353bfd5cba35a686f911c54760b88c // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 9ad2f74c83d18b3b748000af4c8606ea092225d8 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 19:47:47 +0200 Subject: Language changing bug fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index e8e0d16..797796b 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-75c1dd7"; -// latest commit is 75c1dd723d353bfd5cba35a686f911c54760b88c +const static_cache_name = "site-static-1.0.13-beta-b4c56d6"; +// latest commit is b4c56d6a3cd38f411ff01bcbf29c1e3498f94e91 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 730722259f6f079c930f6fcce1c2f1e715d3df63 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 20:25:10 +0200 Subject: CSS --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 797796b..5f9082a 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-b4c56d6"; -// latest commit is b4c56d6a3cd38f411ff01bcbf29c1e3498f94e91 +const static_cache_name = "site-static-1.0.13-beta-519a2aa"; +// latest commit is 519a2aae0e5e8f797be3c75671ad3d1224a5697b // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 335cdd8bddf6b73487cc66cc85bc2b345c11d42a Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 21:40:59 +0200 Subject: changelog --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 5f9082a..f4d0cc9 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-519a2aa"; -// latest commit is 519a2aae0e5e8f797be3c75671ad3d1224a5697b +const static_cache_name = "site-static-1.0.13-beta-7307222"; +// latest commit is 730722259f6f079c930f6fcce1c2f1e715d3df63 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From bd6ad8bf4ef14d74d087879031fc996fdb22412f Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 22:00:55 +0200 Subject: forgot ./install --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index f4d0cc9..ca616bc 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-7307222"; -// latest commit is 730722259f6f079c930f6fcce1c2f1e715d3df63 +const static_cache_name = "site-static-1.0.13-beta-0871204"; +// latest commit is 087120451073db2e91c4cdeefb66da1beb64805f // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From b63b2381a851e2cbc6087bf4d355be4265e6982a Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 22:18:26 +0200 Subject: styling changes --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index ca616bc..a34abe4 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-0871204"; -// latest commit is 087120451073db2e91c4cdeefb66da1beb64805f +const static_cache_name = "site-static-1.0.13-beta-bd6ad8b"; +// latest commit is bd6ad8bf4ef14d74d087879031fc996fdb22412f // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 7b0e9737328c2dc5a0ff1bd063cd7818706256c3 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 22:22:22 +0200 Subject: Bug fix attempt --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index a34abe4..4a8c8e7 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-bd6ad8b"; -// latest commit is bd6ad8bf4ef14d74d087879031fc996fdb22412f +const static_cache_name = "site-static-1.0.13-beta-16d4d4b"; +// latest commit is 16d4d4b9f9b35edc7164cd5662ded7377b6960a9 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From aa39ba5c921bd52c785cc2277bc6bfec4e5a411d Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 22:28:51 +0200 Subject: CSS --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index a34abe4..674df87 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-bd6ad8b"; -// latest commit is bd6ad8bf4ef14d74d087879031fc996fdb22412f +const static_cache_name = "site-static-1.0.13-beta-b63b238"; +// latest commit is b63b2381a851e2cbc6087bf4d355be4265e6982a // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From c373dd3a6d4c5acfa6ca44a3c3489146a6a761c6 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 22:30:10 +0200 Subject: Bug fix-timetable colors won't change from now on --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 4a8c8e7..ca17765 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-16d4d4b"; -// latest commit is 16d4d4b9f9b35edc7164cd5662ded7377b6960a9 +const static_cache_name = "site-static-1.0.13-beta-7b0e973"; +// latest commit is 7b0e9737328c2dc5a0ff1bd063cd7818706256c3 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From a75885bb1524a022811fa813acbf49acca7305bb Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 22:34:55 +0200 Subject: CSS bug fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index f165509..906fc0f 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-c373dd3"; -// latest commit is c373dd3a6d4c5acfa6ca44a3c3489146a6a761c6 +const static_cache_name = "site-static-1.0.13-beta-927d270"; +// latest commit is 927d27071dcfc01bcdeadb5dbc441c6ea7962ffe // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From c1e1864a5ec6b562857ae3087947f39c38ba82a6 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 22:36:08 +0200 Subject: Another CSS bug fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 906fc0f..89141f1 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-927d270"; -// latest commit is 927d27071dcfc01bcdeadb5dbc441c6ea7962ffe +const static_cache_name = "site-static-1.0.13-beta-a75885b"; +// latest commit is a75885bb1524a022811fa813acbf49acca7305bb // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 05398d8b668d8808c7230909a21cba812093802a Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 22:50:00 +0200 Subject: CSS fixes --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 89141f1..796e0b3 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-a75885b"; -// latest commit is a75885bb1524a022811fa813acbf49acca7305bb +const static_cache_name = "site-static-1.0.13-beta-c1e1864"; +// latest commit is c1e1864a5ec6b562857ae3087947f39c38ba82a6 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From fa9467811859cd9c2d595f5a79819ce3aca91e26 Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 22:56:38 +0200 Subject: Theme fixes --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 796e0b3..aa6d33c 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-c1e1864"; -// latest commit is c1e1864a5ec6b562857ae3087947f39c38ba82a6 +const static_cache_name = "site-static-1.0.13-beta-5db4d78"; +// latest commit is 5db4d78539fd77db6f4895c352d8bf5b57bdc041 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 21f22aec32a40cba0c085ca82808dd32f68cdaac Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 23:11:41 +0200 Subject: Styling bug fixes --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index aa6d33c..174fe60 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-5db4d78"; -// latest commit is 5db4d78539fd77db6f4895c352d8bf5b57bdc041 +const static_cache_name = "site-static-1.0.13-beta-fa94678"; +// latest commit is fa9467811859cd9c2d595f5a79819ce3aca91e26 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From ea1ff86ecd12b698fe776801f87138221d01a9ce Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 23:16:38 +0200 Subject: Styling fix, lopolis fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 174fe60..06cde41 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-fa94678"; -// latest commit is fa9467811859cd9c2d595f5a79819ce3aca91e26 +const static_cache_name = "site-static-1.0.13-beta-21f22ae"; +// latest commit is 21f22aec32a40cba0c085ca82808dd32f68cdaac // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From b0d7eb0101a6c8a26c97a1c7069e4496706225ec Mon Sep 17 00:00:00 2001 From: rstular Date: Sun, 17 May 2020 23:21:15 +0200 Subject: Revert "Styling fix, lopolis fix" This reverts commit ea1ff86ecd12b698fe776801f87138221d01a9ce. --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 06cde41..e9f545d 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-21f22ae"; -// latest commit is 21f22aec32a40cba0c085ca82808dd32f68cdaac +const static_cache_name = "site-static-1.0.13-beta-b8d872d"; +// latest commit is b8d872d3487cbe1b6ce510bb08da799b31bd5567 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 95de6017296b5072bb8c37cafaf4a110e34eca5a Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 23:24:52 +0200 Subject: fixed ToS display --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index aa6d33c..174fe60 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-5db4d78"; -// latest commit is 5db4d78539fd77db6f4895c352d8bf5b57bdc041 +const static_cache_name = "site-static-1.0.13-beta-fa94678"; +// latest commit is fa9467811859cd9c2d595f5a79819ce3aca91e26 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From ddf6845360ec16e64af93df99d8163ca32b29992 Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 18 May 2020 00:04:55 +0200 Subject: how'd that happen --- dist/sw.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index bd3a453..3c3f398 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,13 +3,8 @@ // Change version to cause cache refresh -<<<<<<< HEAD -const static_cache_name = "site-static-1.0.13-beta-fa94678"; -// latest commit is fa9467811859cd9c2d595f5a79819ce3aca91e26 -======= -const static_cache_name = "site-static-1.0.13-beta-b8d872d"; -// latest commit is b8d872d3487cbe1b6ce510bb08da799b31bd5567 ->>>>>>> b0d7eb0101a6c8a26c97a1c7069e4496706225ec +const static_cache_name = "site-static-1.0.13-beta-b989d25"; +// latest commit is b989d252515d9d8e636f1c86cdfb71bb68938a30 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 7213b0ed8fc25cde035ad1946f45e4e140ac79b0 Mon Sep 17 00:00:00 2001 From: rstular Date: Mon, 18 May 2020 00:32:44 +0200 Subject: Color fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index e9f545d..673d34c 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-b8d872d"; -// latest commit is b8d872d3487cbe1b6ce510bb08da799b31bd5567 +const static_cache_name = "site-static-1.0.13-beta-b0d7eb0"; +// latest commit is b0d7eb0101a6c8a26c97a1c7069e4496706225ec // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 4638ba703a955bacfd3734ad0901ba453dfad24e Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 18 May 2020 00:33:50 +0200 Subject: window.onerror --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 3c3f398..87311f9 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-b989d25"; -// latest commit is b989d252515d9d8e636f1c86cdfb71bb68938a30 +const static_cache_name = "site-static-1.0.13-beta-bed93d7"; +// latest commit is bed93d7d52a80a05cd87c5eeacdcafde8cafe24a // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 006e4dbee30b2220c8ccf31f2e75217d24f149e2 Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 18 May 2020 00:46:45 +0200 Subject: install --- dist/sw.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index e703db8..7c9a581 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,13 +3,8 @@ // Change version to cause cache refresh -<<<<<<< HEAD -const static_cache_name = "site-static-1.0.13-beta-bed93d7"; -// latest commit is bed93d7d52a80a05cd87c5eeacdcafde8cafe24a -======= -const static_cache_name = "site-static-1.0.13-beta-b0d7eb0"; -// latest commit is b0d7eb0101a6c8a26c97a1c7069e4496706225ec ->>>>>>> 837a4ad3f49cb4441d294e67332b98818fc90011 +const static_cache_name = "site-static-1.0.13-beta-17de657"; +// latest commit is 17de6574b4e4871162c81da0232b9db4113e0245 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From f4fd919987397819ee29d68a4e562e599f95737c Mon Sep 17 00:00:00 2001 From: rstular Date: Mon, 18 May 2020 01:24:07 +0200 Subject: Bug fix - modal opens when hash is proivded --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 7c9a581..686267d 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-17de657"; -// latest commit is 17de6574b4e4871162c81da0232b9db4113e0245 +const static_cache_name = "site-static-1.0.13-beta-70555ef"; +// latest commit is 70555eff18936f28b2952ca05337124489db7dca // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 01f9eef0a5b397c12f3eee9c801167f851d77251 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 11:14:52 +0200 Subject: CSS fixes --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 686267d..640fe95 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-70555ef"; -// latest commit is 70555eff18936f28b2952ca05337124489db7dca +const static_cache_name = "site-static-1.0.13-beta-44fe531"; +// latest commit is 44fe5313019bbce17cce0d49ce6d49b1b4ebc35f // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From f42bec58d38bcc5458dc9ab12a46a2e8f7c990e2 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 13:29:12 +0200 Subject: err reporting --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 640fe95..e6c4547 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-44fe531"; -// latest commit is 44fe5313019bbce17cce0d49ce6d49b1b4ebc35f +const static_cache_name = "site-static-1.0.13-beta-01f9eef"; +// latest commit is 01f9eef0a5b397c12f3eee9c801167f851d77251 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From cfedc91453b67e79202730e7cf4197df24631379 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 13:33:51 +0200 Subject: fixed install script --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index e6c4547..305108d 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-01f9eef"; -// latest commit is 01f9eef0a5b397c12f3eee9c801167f851d77251 +const static_cache_name = "site-static-1.0.13-beta-f42bec5"; +// latest commit is f42bec58d38bcc5458dc9ab12a46a2e8f7c990e2 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 5fc29dc18a5b27dd8dbf45f8dd67e42ee74419fb Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 14:11:48 +0200 Subject: install scritp fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 dist/sw.js (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js old mode 100644 new mode 100755 index 305108d..519edec --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-f42bec5"; -// latest commit is f42bec58d38bcc5458dc9ab12a46a2e8f7c990e2 +const static_cache_name = "site-static-1.0.13-beta-e7dc728"; +// latest commit is e7dc728e3420c7f51f793daa70c0e46a43c367f5 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 7820ea23532aa6ffa3611d8379681aa44a3f3864 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 14:12:06 +0200 Subject: # --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 519edec..9d2af45 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-e7dc728"; -// latest commit is e7dc728e3420c7f51f793daa70c0e46a43c367f5 +const static_cache_name = "site-static-1.0.13-beta-5fc29dc"; +// latest commit is 5fc29dc18a5b27dd8dbf45f8dd67e42ee74419fb // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 906d15b45f66f1615167775985e4ca1abb8f4e50 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 14:54:19 +0200 Subject: fix for onunhandledrejection --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 9d2af45..4f555d0 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-5fc29dc"; -// latest commit is 5fc29dc18a5b27dd8dbf45f8dd67e42ee74419fb +const static_cache_name = "site-static-1.0.13-beta-c2bbdeb"; +// latest commit is c2bbdeb81de79f182847348da988f8cc6ca63e04 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 6989c8d5adeed595797c3691eeffa670dfeaf0ce Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 15:06:49 +0200 Subject: made error reporting async --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 4f555d0..f012796 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-c2bbdeb"; -// latest commit is c2bbdeb81de79f182847348da988f8cc6ca63e04 +const static_cache_name = "site-static-1.0.13-beta-1ad50c1"; +// latest commit is 1ad50c13b9d4e52f9b83763b2df3f93e8287d20b // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 0bbebb72ee64d7b33cd8da60c797b4fe1c7b9d60 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 15:42:58 +0200 Subject: this is not a fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index f012796..287af4e 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-1ad50c1"; -// latest commit is 1ad50c13b9d4e52f9b83763b2df3f93e8287d20b +const static_cache_name = "site-static-1.0.13-beta-6989c8d"; +// latest commit is 6989c8d5adeed595797c3691eeffa670dfeaf0ce // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From a901be064c0baf208148d0dd1ac5530285d9968b Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 15:48:10 +0200 Subject: this is also not a fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 287af4e..40a684c 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-6989c8d"; -// latest commit is 6989c8d5adeed595797c3691eeffa670dfeaf0ce +const static_cache_name = "site-static-1.0.13-beta-0bbebb7"; +// latest commit is 0bbebb72ee64d7b33cd8da60c797b4fe1c7b9d60 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From c66b002ff05daa130a86c26f0b42af3202ce06ba Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 15:57:59 +0200 Subject: scope error? + install --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 40a684c..31e3a02 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-0bbebb7"; -// latest commit is 0bbebb72ee64d7b33cd8da60c797b4fe1c7b9d60 +const static_cache_name = "site-static-1.0.13-beta-a078f23"; +// latest commit is a078f237a622d6aa01e07199769e427217d79d1c // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 763061be7ee80fffd6dd1fd2bebbdacb2ad7183d Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 16:06:46 +0200 Subject: DNM --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 31e3a02..96e69ab 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-a078f23"; -// latest commit is a078f237a622d6aa01e07199769e427217d79d1c +const static_cache_name = "site-static-1.0.13-beta-c66b002"; +// latest commit is c66b002ff05daa130a86c26f0b42af3202ce06ba // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 0a045055fbfa8a5228f1deeca9d85a4b6a7b0fca Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 16:14:13 +0200 Subject: Revert "DNM" This reverts commit 763061be7ee80fffd6dd1fd2bebbdacb2ad7183d. --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 96e69ab..31e3a02 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-c66b002"; -// latest commit is c66b002ff05daa130a86c26f0b42af3202ce06ba +const static_cache_name = "site-static-1.0.13-beta-a078f23"; +// latest commit is a078f237a622d6aa01e07199769e427217d79d1c // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 3b61e8681d5db498e76fa1c843062a0a7a403c64 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 16:17:22 +0200 Subject: Probi, hopefully bo to resl problen --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 31e3a02..b64f587 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-a078f23"; -// latest commit is a078f237a622d6aa01e07199769e427217d79d1c +const static_cache_name = "site-static-1.0.13-beta-0a04505"; +// latest commit is 0a045055fbfa8a5228f1deeca9d85a4b6a7b0fca // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From c721f2fd02613a5f8d5beb3b66a3681542da2048 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 16:25:59 +0200 Subject: maybe --- dist/sw.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index b64f587..6c69043 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-0a04505"; -// latest commit is 0a045055fbfa8a5228f1deeca9d85a4b6a7b0fca +const static_cache_name = "site-static-1.0.13-beta-3b61e86"; +// latest commit is 3b61e8681d5db498e76fa1c843062a0a7a403c64 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! @@ -87,7 +87,10 @@ const assets = [ "/js/jitsi.js", "/pages/chats.html", "/js/chats.js", - "/css/bubbles.css" + "/css/bubbles.css", + + "/js/gsec.js", + "/js/gsec.js?ajaxload" ]; importScripts("/js/lib/localforage.min.js"); -- cgit v1.2.3 From f4aa5ca7f0ee77f5b26ff3f9d1b5c9f25cd1d2cb Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 16:44:13 +0200 Subject: changed load order --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 6c69043..79e2259 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-3b61e86"; -// latest commit is 3b61e8681d5db498e76fa1c843062a0a7a403c64 +const static_cache_name = "site-static-1.0.13-beta-c721f2f"; +// latest commit is c721f2fd02613a5f8d5beb3b66a3681542da2048 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 3130a962bf7dba65acdd78d6ade2c88199094827 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 17:12:13 +0200 Subject: fixed geeky operators --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 79e2259..010f9f3 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-c721f2f"; -// latest commit is c721f2fd02613a5f8d5beb3b66a3681542da2048 +const static_cache_name = "site-static-1.0.13-beta-f4aa5ca"; +// latest commit is f4aa5ca7f0ee77f5b26ff3f9d1b5c9f25cd1d2cb // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 5de19af5e33c527e4b47091b5eba010f002b73eb Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 17:28:19 +0200 Subject: fixed even mroe geeky operators (?) --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 010f9f3..719f3a1 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-f4aa5ca"; -// latest commit is f4aa5ca7f0ee77f5b26ff3f9d1b5c9f25cd1d2cb +const static_cache_name = "site-static-1.0.13-beta-2eaa58f"; +// latest commit is 2eaa58fd631705101eeb6a946f548f936747c30e // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 70854102b66f8cac32e925398120c4f6731206d1 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 18:31:15 +0200 Subject: added teachers dir to dir --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 719f3a1..f56988b 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-2eaa58f"; -// latest commit is 2eaa58fd631705101eeb6a946f548f936747c30e +const static_cache_name = "site-static-1.0.13-beta-5de19af"; +// latest commit is 5de19af5e33c527e4b47091b5eba010f002b73eb // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 448708182490d551721767bffc34ef35375f5082 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 19:21:31 +0200 Subject: DO_NOT_MERGE; still testing error reporting optout --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index f56988b..1bbc5a4 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-5de19af"; -// latest commit is 5de19af5e33c527e4b47091b5eba010f002b73eb +const static_cache_name = "site-static-1.0.13-beta-bf35c28"; +// latest commit is bf35c28cb1089df86bdd57134f475f3abe9fb539 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 6def94865615d5bccba3bae278ea54932643db9a Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 19:33:31 +0200 Subject: should be ok to merge --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 1bbc5a4..e08b250 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-bf35c28"; -// latest commit is bf35c28cb1089df86bdd57134f475f3abe9fb539 +const static_cache_name = "site-static-1.0.13-beta-4487081"; +// latest commit is 448708182490d551721767bffc34ef35375f5082 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From cbef4f9e7f6b39469d9e6ac77b5a7237f69022ee Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 19:37:34 +0200 Subject: Night theme --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 1bbc5a4..e08b250 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-bf35c28"; -// latest commit is bf35c28cb1089df86bdd57134f475f3abe9fb539 +const static_cache_name = "site-static-1.0.13-beta-4487081"; +// latest commit is 448708182490d551721767bffc34ef35375f5082 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 0438adaf1a4254632447483bf10b6135822c7d72 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 19:41:46 +0200 Subject: Wrong theme name --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index e9eab51..4ec39c9 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-cbef4f9"; -// latest commit is cbef4f9e7f6b39469d9e6ac77b5a7237f69022ee +const static_cache_name = "site-static-1.0.13-beta-0ff5c4b"; +// latest commit is 0ff5c4b1c811fb086c1cd0ce918ef2e3c36a0921 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 26e4ab87ed0f75d45de97530fd143068dd1b95bf Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 19:50:42 +0200 Subject: CSS fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 4ec39c9..92c0b64 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-0ff5c4b"; -// latest commit is 0ff5c4b1c811fb086c1cd0ce918ef2e3c36a0921 +const static_cache_name = "site-static-1.0.13-beta-0438ada"; +// latest commit is 0438adaf1a4254632447483bf10b6135822c7d72 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From ab5b03d25a201269482acf51e9b856aa62ce2a84 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 19:52:44 +0200 Subject: CSS bug fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 92c0b64..2467594 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-0438ada"; -// latest commit is 0438adaf1a4254632447483bf10b6135822c7d72 +const static_cache_name = "site-static-1.0.13-beta-b1a08cb"; +// commit before the latest is b1a08cbe11e7550ff2b004e99a3e5c490509d22f // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From dc81f2c8294e68b409d31e552f7a7b719d512512 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 19:56:48 +0200 Subject: Another CSS bug fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 2467594..a3e51e7 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-b1a08cb"; -// commit before the latest is b1a08cbe11e7550ff2b004e99a3e5c490509d22f +const static_cache_name = "site-static-1.0.13-beta-ab5b03d"; +// commit before the latest is ab5b03d25a201269482acf51e9b856aa62ce2a84 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From cf41a36f744c51513d864b48d7ee806544de062b Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 19:59:26 +0200 Subject: try-catch in fetchTeachers (forgot instal) --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index a3e51e7..7b70eea 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-ab5b03d"; -// commit before the latest is ab5b03d25a201269482acf51e9b856aa62ce2a84 +const static_cache_name = "site-static-1.0.13-beta-2acc467"; +// commit before the latest is 2acc46724db65edf60a7316086fe098cc7b3f5b3 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 913b40fe12ea0f73614013fe5a528700d516749e Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 20:02:53 +0200 Subject: I don't know CSS :-( --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 7b70eea..230e473 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-2acc467"; -// commit before the latest is 2acc46724db65edf60a7316086fe098cc7b3f5b3 +const static_cache_name = "site-static-1.0.13-beta-cf41a36"; +// commit before the latest is cf41a36f744c51513d864b48d7ee806544de062b // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 1360b7c961cd23fa8007bc7ebed0bc924150a437 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 20:05:12 +0200 Subject: Revert "I don't know CSS :-(" This reverts commit 913b40fe12ea0f73614013fe5a528700d516749e. --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 230e473..7b70eea 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-cf41a36"; -// commit before the latest is cf41a36f744c51513d864b48d7ee806544de062b +const static_cache_name = "site-static-1.0.13-beta-2acc467"; +// commit before the latest is 2acc46724db65edf60a7316086fe098cc7b3f5b3 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 22bc85704a637175361d7447634f605d6a9102a1 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 20:05:25 +0200 Subject: Install --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 7b70eea..23bf614 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-2acc467"; -// commit before the latest is 2acc46724db65edf60a7316086fe098cc7b3f5b3 +const static_cache_name = "site-static-1.0.13-beta-1360b7c"; +// commit before the latest is 1360b7c961cd23fa8007bc7ebed0bc924150a437 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From db70845685ffe5fa725530ca03ba4c72e822e450 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 20:08:11 +0200 Subject: Indentation fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 23bf614..8501ee1 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-1360b7c"; -// commit before the latest is 1360b7c961cd23fa8007bc7ebed0bc924150a437 +const static_cache_name = "site-static-1.0.13-beta-22bc857"; +// commit before the latest is 22bc85704a637175361d7447634f605d6a9102a1 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 8e8a1ece2e95e3817739b0ded93eac5214ba49b6 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 20:47:22 +0200 Subject: New themes --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 8501ee1..a34dba4 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-22bc857"; -// commit before the latest is 22bc85704a637175361d7447634f605d6a9102a1 +const static_cache_name = "site-static-1.0.13-beta-db70845"; +// commit before the latest is db70845685ffe5fa725530ca03ba4c72e822e450 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 1925324995b4c8795529f795811ef0ae0676b695 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 20:54:10 +0200 Subject: Bug fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index a34dba4..ab0cd5c 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-db70845"; -// commit before the latest is db70845685ffe5fa725530ca03ba4c72e822e450 +const static_cache_name = "site-static-1.0.13-beta-9a8fc18"; +// commit before the latest is 9a8fc181865154f0fc72a30a9554c72bb28c3ce3 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From e0e87794223a605040e62f4966fd1206cd6dd4e8 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 21:06:49 +0200 Subject: Persist state --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index ab0cd5c..4cd1a0d 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-9a8fc18"; -// commit before the latest is 9a8fc181865154f0fc72a30a9554c72bb28c3ce3 +const static_cache_name = "site-static-1.0.13-beta-1925324"; +// commit before the latest is 1925324995b4c8795529f795811ef0ae0676b695 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 7ef93dbc7e6f82e7fc4a765cf0f979b6f52e7a46 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 21:13:23 +0200 Subject: Styling fix --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 4cd1a0d..0dfc638 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-1925324"; -// commit before the latest is 1925324995b4c8795529f795811ef0ae0676b695 +const static_cache_name = "site-static-1.0.13-beta-29b013b"; +// commit before the latest is 29b013b7591c0ee674bb8c2cf8cc660f67cdd9f7 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From 1ce5c8b9f3c2e63dca9fb4a142b6494986196dad Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 21:20:00 +0200 Subject: minified their files from merge --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 0dfc638..2ddf530 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-29b013b"; -// commit before the latest is 29b013b7591c0ee674bb8c2cf8cc660f67cdd9f7 +const static_cache_name = "site-static-1.0.14-beta-9957e1b"; +// commit before the latest is 9957e1be89076c2a7612d2055b776f2c8354909a // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From c531b85798fde63320e0f6dd21cabc199cbb62d3 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 21:20:44 +0200 Subject: forgot i'm not doing anything --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 2ddf530..2d3b17b 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.14-beta-9957e1b"; -// commit before the latest is 9957e1be89076c2a7612d2055b776f2c8354909a +const static_cache_name = "site-static-1.0.14-beta-1ce5c8b"; +// commit before the latest is 1ce5c8b9f3c2e63dca9fb4a142b6494986196dad // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3 From fa75294bdf13e091eaa348a4b1dade32244d4896 Mon Sep 17 00:00:00 2001 From: rstular Date: Wed, 20 May 2020 21:29:15 +0200 Subject: Changelog --- dist/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/sw.js') diff --git a/dist/sw.js b/dist/sw.js index 0dfc638..195c084 100755 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-29b013b"; -// commit before the latest is 29b013b7591c0ee674bb8c2cf8cc660f67cdd9f7 +const static_cache_name = "site-static-1.0.14-beta-7ef93db"; +// commit before the latest is 7ef93dbc7e6f82e7fc4a765cf0f979b6f52e7a46 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3