[Feat] Refactor UI loader & Add freeze report override

This commit is contained in:
Minoricew
2025-06-10 00:28:53 +08:00
parent ed29f1b86f
commit a639ae0ac6
17 changed files with 861 additions and 167 deletions

View File

@@ -63,6 +63,15 @@ const __AURA_VERSION__ = "0.1.1-pre-IV";
});
const pathName = [...path, prop].join(".");
document.dispatchEvent(configUpdateEvent);
const settingsEntries = document.getElementsByClassName(
"aura-settings-entry"
);
if (settingsEntries.length > 0) {
Array.from(settingsEntries).forEach((entry) => {
entry.dispatchEvent(configUpdateEvent);
});
}
console.log(
`[HugoAura / Config] Config changed at path: ${[...path, prop].join(
"."