Update Settings Page.

This commit is contained in:
Bruce
2025-11-29 18:19:08 +08:00
parent 87efdc39df
commit cf50b09bf0
111 changed files with 7115 additions and 322 deletions

View File

@@ -0,0 +1,16 @@
(function(global) {
"use strict";
function getSettingsItem(page, displayName) {
return {
page: page,
displayName: displayName
};
}
var settingItems = {
appinstaller: getSettingsItem("appinstaller.html", "App Installer")
};
Object.defineProperty(global, "settingPages", {
get: function() { return settingItems; }
});
})(this);