* 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

0.6.0-stable
Justin Clarke Casey 2008-05-24 18:27:57 +00:00
parent e5e666bb41
commit 58e71b8507
1 changed files with 6 additions and 2 deletions

View File

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