- page render caching
- onDemand block caching
- page html minify
- better rate limiting
- minor cobalt.js clean up
- page render platform indication in settings popup

all these changes are aimed to improve performance and responsiveness

!! not final version of 5.2 !!
This commit is contained in:
wukko
2023-03-10 00:41:17 +06:00
parent daa2856d92
commit a3daa65148
10 changed files with 100 additions and 58 deletions

View File

@@ -108,7 +108,7 @@ export function checkJSONPost(obj) {
}
try {
let objKeys = Object.keys(obj);
if (!(objKeys.length <= 8 && obj.url)) return false;
if (!(objKeys.length <= 9 && obj.url)) return false;
let defKeys = Object.keys(def);
for (let i in objKeys) {