Talk:Versions

From DDraceNetwork

I generated this page using this js script on browser console:

var versions = Array.from(document.querySelectorAll("h3")).map(h => h.textContent).filter(x => x !== "");

var changelogs = Array.from(document.querySelectorAll("div.dlinfo > ul")).map(x => x.outerHTML);

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);

Ryozuki (talk) 14:39, 1 March 2021 (CET)