From f76615a66d3f94a219e85eeda1c016f286a81725 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 26 May 2009 15:46:09 +0000 Subject: * slowly getting there... --- OpenSim/Framework/Servers/VersionInfo.cs | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs index 97d0b19..200f0e2 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; } - } } } -- cgit v1.1