Update manager and add features for App Installer.

This commit is contained in:
Bruce
2026-01-31 22:03:03 +08:00
parent 0c87a2cdcd
commit d91948eaff
37 changed files with 3645 additions and 923 deletions
+16
View File
@@ -102,4 +102,20 @@
get: function() { return ext.System.UI.SplashImage; },
});
} catch (e) {}
// 下面是有关 String 方法的补充
if (typeof String.prototype.trim !== "function") {
String.prototype.trim = function() {
return Bridge.String.trim(this);
};
}
if (typeof String.prototype.toLowerCase !== "function") {
String.prototype.toLowerCase = function() {
return Bridge.String.tolower(this);
};
}
if (typeof String.prototype.toUpperCase !== "function") {
String.prototype.toUpperCase = function() {
return Bridge.String.toupper(this);
};
}
})(this);