* Changed Version to property for great justice

0.6.6-post-fixes
lbsa71 2009-05-26 15:43:43 +00:00
parent bac1194391
commit 1cfcace30f
1 changed files with 9 additions and 1 deletions

View File

@ -32,7 +32,7 @@ namespace OpenSim
/// <value> /// <value>
/// This is the OpenSim version string. Change this if you are releasing a new OpenSim version. /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version.
/// </value> /// </value>
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; public const int VERSIONINFO_VERSION_LENGTH = 27;
/// <value> /// <value>
@ -50,5 +50,13 @@ namespace OpenSim
/// ///
/// </value> /// </value>
public readonly static int MajorInterfaceVersion = 4; public readonly static int MajorInterfaceVersion = 4;
/// <value>
/// This is the OpenSim version string. Change this if you are releasing a new OpenSim version.
/// </value>
public static string Version
{
get { return m_version; }
}
} }
} }