aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimMain.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-24 18:27:57 +0000
committerJustin Clarke Casey2008-05-24 18:27:57 +0000
commit58e71b8507694616d90fd3a4c163c3b3c40bcc26 (patch)
treef5eebbf3dc14e2c707c18a7f64b5895703e68102 /OpenSim/Region/Application/OpenSimMain.cs
parent* Bump reported svn trunk revision number up to 0.5.7 (diff)
downloadopensim-SC_OLD-58e71b8507694616d90fd3a4c163c3b3c40bcc26.zip
opensim-SC_OLD-58e71b8507694616d90fd3a4c163c3b3c40bcc26.tar.gz
opensim-SC_OLD-58e71b8507694616d90fd3a4c163c3b3c40bcc26.tar.bz2
opensim-SC_OLD-58e71b8507694616d90fd3a4c163c3b3c40bcc26.tar.xz
* 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
Diffstat (limited to 'OpenSim/Region/Application/OpenSimMain.cs')
-rw-r--r--OpenSim/Region/Application/OpenSimMain.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs
index e51191f..cf12be7 100644
--- a/OpenSim/Region/Application/OpenSimMain.cs
+++ b/OpenSim/Region/Application/OpenSimMain.cs
@@ -387,7 +387,11 @@ namespace OpenSim
387 if (!string.IsNullOrEmpty(buildVersion)) 387 if (!string.IsNullOrEmpty(buildVersion))
388 { 388 {
389 VersionInfo.Version += ", SVN build r" + buildVersion; 389 VersionInfo.Version += ", SVN build r" + buildVersion;
390 } 390 }
391 else
392 {
393 VersionInfo.Version += ", SVN build revision not available";
394 }
391 395
392 // Add operating system information if available 396 // Add operating system information if available
393 string OSString = ""; 397 string OSString = "";
@@ -405,7 +409,7 @@ namespace OpenSim
405 OSString = OSString.Substring(0, 45); 409 OSString = OSString.Substring(0, 45);
406 } 410 }
407 411
408 VersionInfo.Version += " on " + OSString; 412 VersionInfo.Version += ", OS " + OSString;
409 } 413 }
410 414
411 /// <summary> 415 /// <summary>