diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs index 97d0b198b4..200f0e2a04 100644 --- a/OpenSim/Framework/Servers/VersionInfo.cs +++ b/OpenSim/Framework/Servers/VersionInfo.cs @@ -29,10 +29,13 @@ namespace OpenSim { public class VersionInfo { - /// - /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version. - /// - private readonly static string m_version = "OpenSimulator Server 0.6.5"; // stay with 27 chars (used in regioninfo) + private const string m_versionNumber = "0.6.5"; + + public static string Version + { + get { return "OpenSimulator Server" + " " + m_versionNumber; } + } + public const int VERSIONINFO_VERSION_LENGTH = 27; /// @@ -50,13 +53,5 @@ namespace OpenSim /// /// public readonly static int MajorInterfaceVersion = 4; - - /// - /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version. - /// - public static string Version - { - get { return m_version; } - } } }