From 1cfcace30f6105520a3493eda8db2c33568e7541 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 26 May 2009 15:43:43 +0000 Subject: * Changed Version to property for great justice --- OpenSim/Framework/Servers/VersionInfo.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs index 1b8a8be..97d0b19 100644 --- a/OpenSim/Framework/Servers/VersionInfo.cs +++ b/OpenSim/Framework/Servers/VersionInfo.cs @@ -32,7 +32,7 @@ namespace OpenSim /// /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version. /// - public readonly static string Version = "OpenSimulator Server 0.6.5"; // stay with 27 chars (used in regioninfo) + private readonly static string m_version = "OpenSimulator Server 0.6.5"; // stay with 27 chars (used in regioninfo) public const int VERSIONINFO_VERSION_LENGTH = 27; /// @@ -50,5 +50,13 @@ 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