addNavigationBar("All Apps"); fetch(sourceURL) .then(response => response.json()) .then(json => { if (json.tintColor) setTintColor(json.tintColor) document.title = `Apps - ${json.name}`; json.apps.sort((a, b) => (new Date(b.versionDate)).valueOf() - (new Date(a.versionDate)).valueOf()); json.apps.forEach(app => { if (app.beta) return; // Ignore beta apps const urls = app.screenshotURLs; let html = `
${app.subtitle ?? ""}
`; if (urls) { html += `