Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ function openAppModal(kind){
function closeAppModal(){ if(!appModal) return; appModal.classList.remove('visible'); appModal.setAttribute('aria-hidden','true'); }

async function loadManifestVersion(){
try{ const res = await fetch('manifest.webmanifest', {cache:'no-store'}); const m = await res.json(); appVersion = m.version || '1.2'; versionEl.textContent = `v${appVersion}`; } catch { versionEl.textContent = `v${appVersion}`; }
try{ const res = await fetch('manifest.webmanifest'); const m = await res.json(); appVersion = m.version || '1.2'; versionEl.textContent = `v${appVersion}`; } catch { versionEl.textContent = `v${appVersion}`; }
}
function showApp(){ app.hidden = false; renderView('home'); setTimeout(()=>splash.classList.add('is-hidden'), 850); setTimeout(()=>splash.remove(), 1300); }

Expand Down
2 changes: 1 addition & 1 deletion js/app-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function loadManifestVersion() {
if (!versionEl) return;

try {
const res = await fetch('manifest.webmanifest', { cache: 'no-store' });
const res = await fetch('manifest.webmanifest');
const manifest = await res.json();
versionEl.textContent = `v${manifest.version || CONFIG.APP_VERSION}`;
} catch {
Expand Down
52 changes: 0 additions & 52 deletions manifest.json

This file was deleted.

1 change: 0 additions & 1 deletion sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const APP_SHELL = [
'./styles.css',
'./app.js',
'./manifest.webmanifest',
'./manifest.json',
'./sw.js',
'./assets/easytune-logo.png',
'./icons/favicon.ico',
Expand Down
Loading