Talk:Versions
I generated this page using this js script after loading jquery to the browser console:
var versions = $("h3").text().replace("Other Downloads", "").split("DDNet ").slice(1);
var changelogs = $('div.dlinfo > ul').map(function(){
return $(this).prop('outerHTML');
}).get();
var result = "";
var i = 0;
for(var c of changelogs) {
result += "\n== Version: " + versions[i] + " ==\n";
result += c
result += "\n";
i++;
}
console.log(result);
copy(result);