Bump version to 1.0.1
This commit is contained in:
parent
c3558de74f
commit
ccbbe148e6
@ -64,7 +64,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer>
|
<footer>
|
||||||
<p>Created by <a href="https://fredboniface.co.uk" target="_blank" rel="noreferrer noopener">Fred Boniface</a> - 1.0.0-test</p>
|
<p>Created by <a href="https://fredboniface.co.uk" target="_blank" rel="noreferrer noopener">Fred Boniface</a> - 1.0.1-test</p>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -11,7 +11,7 @@ async function get() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function display(data) {
|
async function display(data) {
|
||||||
document.getElementById('server_host').textContent = `HOST: ${data.host}`;
|
document.getElementById('server_host').textContent = data.host;
|
||||||
let dat = data.dat[0]
|
let dat = data.dat[0]
|
||||||
console.log(JSON.stringify(dat))
|
console.log(JSON.stringify(dat))
|
||||||
document.getElementById('time').textContent = await convertUnixLocal(dat.since);
|
document.getElementById('time').textContent = await convertUnixLocal(dat.since);
|
||||||
|
2
sw.js
2
sw.js
@ -1,6 +1,6 @@
|
|||||||
/* Service Worker */
|
/* Service Worker */
|
||||||
|
|
||||||
const appVersion = "1.0.0-test"
|
const appVersion = "1.0.1-test"
|
||||||
const cacheName = `owlboard-${appVersion}`
|
const cacheName = `owlboard-${appVersion}`
|
||||||
const cacheIDs = [cacheName]
|
const cacheIDs = [cacheName]
|
||||||
const cacheFiles = [
|
const cacheFiles = [
|
||||||
|
Reference in New Issue
Block a user