diff --git a/cmd/site/main.go b/cmd/site/main.go index cc0b92f..eaefb5d 100644 --- a/cmd/site/main.go +++ b/cmd/site/main.go @@ -83,7 +83,7 @@ func (s *Site) ServeHTTP(w http.ResponseWriter, r *http.Request) { middleware.RequestID(s.xffmw.Handler(ex.HTTPLog(s.mux))).ServeHTTP(w, r) } -var arbDate = time.Date(2019, time.September, 12, 0, 0, 0, 0, time.UTC) +var arbDate = time.Date(2019, time.November, 2, 0, 0, 0, 0, time.UTC) // Build creates a new Site instance or fails. func Build() (*Site, error) { diff --git a/static/js/sw.js b/static/js/sw.js index 62722a6..0fa1e3e 100755 --- a/static/js/sw.js +++ b/static/js/sw.js @@ -5,13 +5,13 @@ self.addEventListener('install', function(event) { event.waitUntil(preLoad()); }); -const cacheName = "cache-2019-10-15"; +const cacheName = "cache-2019-11-01"; var preLoad = function(){ console.log('[PWA Builder] Install Event processing'); return caches.open(cacheName).then(function(cache) { console.log('[PWA Builder] Cached index and offline page during Install'); - return cache.addAll(['/blog/', '/blog', '/', '/contact', '/resume', '/talks']); + return cache.addAll(['/blog/', '/blog', '/', '/contact', '/resume', '/talks', '/gallery']); }); };