* If the SVN build version is not available, state this in the About box explicitly, rather than leaving it out completely and possible engendering confusion

This commit is contained in:
Justin Clarke Casey
2008-05-24 18:27:57 +00:00
parent e5e666bb41
commit 58e71b8507

View File

@@ -387,7 +387,11 @@ namespace OpenSim
if (!string.IsNullOrEmpty(buildVersion))
{
VersionInfo.Version += ", SVN build r" + buildVersion;
}
}
else
{
VersionInfo.Version += ", SVN build revision not available";
}
// Add operating system information if available
string OSString = "";
@@ -405,7 +409,7 @@ namespace OpenSim
OSString = OSString.Substring(0, 45);
}
VersionInfo.Version += " on " + OSString;
VersionInfo.Version += ", OS " + OSString;
}
/// <summary>