diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs index 1b8a8be798..97d0b198b4 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; } + } } }