From 58e71b8507694616d90fd3a4c163c3b3c40bcc26 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Sat, 24 May 2008 18:27:57 +0000 Subject: * 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 --- OpenSim/Region/Application/OpenSimMain.cs | 8 ++++++-- 1 file 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 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; } /// -- cgit v1.1