var fDesc=new Array();
fDesc[0] = "The launcher, version v2.0.14.0 has had the following worked upon or addressed:
- Corrects an issue where the launcher would either hang or not initialize on x64 bit systems.
- Corrects additional issues where the launcher would freeze during check file process.
- An error notice has been added when the Launcher is unable to locate a required file(s) to play ROSE in the installation folder.
- A number of general stability improvements.
- The ROSE Launcher will now download and install any additional future updated ROSE Launchers released.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}