This commit is contained in:
TheGiddyLimit
2024-06-23 22:13:57 +01:00
parent ed9833eefc
commit e5844f8a3f
279 changed files with 38254 additions and 7675 deletions

13
js/changelog.js Normal file
View File

@@ -0,0 +1,13 @@
window.addEventListener("load", async () => {
await Promise.all([
PrereleaseUtil.pInit(),
BrewUtil2.pInit(),
]);
ExcludeUtil.pInitialise().then(null); // don't await, as this is only used for search
DataUtil.loadJSON(`${Renderer.get().baseUrl}data/changelog.json`)
.then(changelog => {
const $wrp = $(`#pagecontent`).empty();
UtilsChangelog.renderChangelog(changelog, $wrp);
});
});