Talk:Versions
Appearance
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)
Start a discussion about Versions
Talk pages are where people discuss how to make content on DDraceNetwork the best that it can be. You can use this page to start a discussion with others about how to improve Versions.