update dates

This commit is contained in:
Cadey Ratio 2019-11-01 17:42:20 -04:00
parent 67f5e1b3a7
commit 70541a8f27
2 changed files with 3 additions and 3 deletions

View File

@ -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) {

View File

@ -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']);
});
};