diff --git a/js/lib.main.js b/js/lib.main.js index be1c669..6c15c6b 100644 --- a/js/lib.main.js +++ b/js/lib.main.js @@ -1,5 +1,5 @@ /* All Page Init */ -const version = '2.0.0-testing' +const version = '2.0.0' /* Feature Detectors */ diff --git a/pis.html b/pis.html index 1920290..e88a6b4 100644 --- a/pis.html +++ b/pis.html @@ -44,7 +44,7 @@

Enter a services start and end station CRS codes to see code options and stopping patterns.

-

Currently supported (Beta): GWR: Up/Dn SVB-EXD, Dn CDF-PNZ, Up/Dn GMV/CDF-PMH, HEx

+

Currently supported (Beta): GWR: Up/Dn SVB-EXD, Dn CDF-PNZ, Up/Dn GMV/CDF-PMH, HEx
Duplicate stopping patterns have been removed.

You need to be logged into a free rail staff version account for this feature.

diff --git a/sw.js b/sw.js index c8760cb..241fe28 100644 --- a/sw.js +++ b/sw.js @@ -1,9 +1,9 @@ /* Service Worker */ -const appVersion = '2.0.0-rc-20230505001' -const cacheName = `owlboard-${appVersion}` +const swVersion = '2.0.0-20230506' +const cacheName = `owlboard-${swVersion}` const cacheIDs = [cacheName] -const staticCache = [ +let staticCache = [ '/styles/fonts/firamono/firamono-500.woff2', '/styles/fonts/firamono/firamono-regular.woff2', '/styles/fonts/urwgothic/urwgothic.woff2', @@ -54,7 +54,7 @@ const dynamicCache = [ ] for(let i = 0; i < dynamicCache.length; i++) { - let item = dynamicCache[i] + `?${appVersion}` + let item = dynamicCache[i] + `?${swVersion}` staticCache.push(item) }