mention new features

This commit is contained in:
Ted Unangst 2023-01-26 16:40:03 -05:00
parent a45e27038f
commit 6883c5b6b9
2 changed files with 10 additions and 6 deletions

View File

@ -2,6 +2,10 @@ changelog
=== next
+ Emu peeker
+ CSP compliance
+ Filter to match anything with summary/warning.
+ Start collecting quties.

View File

@ -5,12 +5,12 @@ var tophid = { }
var servermsgs = { }
function encode(hash) {
var s = []
for (var key in hash) {
var val = hash[key]
s.push(encodeURIComponent(key) + "=" + encodeURIComponent(val))
}
return s.join("&")
var s = []
for (var key in hash) {
var val = hash[key]
s.push(encodeURIComponent(key) + "=" + encodeURIComponent(val))
}
return s.join("&")
}
function post(url, data) {
var x = new XMLHttpRequest()