aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorlbsa712009-05-26 15:43:43 +0000
committerlbsa712009-05-26 15:43:43 +0000
commit1cfcace30f6105520a3493eda8db2c33568e7541 (patch)
tree464273846ed126c7b8af0ca7918d431638317e0b /OpenSim/Framework
parent* Added test to make sure version info is 27 chars long (still don't know exa... (diff)
downloadopensim-SC_OLD-1cfcace30f6105520a3493eda8db2c33568e7541.zip
opensim-SC_OLD-1cfcace30f6105520a3493eda8db2c33568e7541.tar.gz
opensim-SC_OLD-1cfcace30f6105520a3493eda8db2c33568e7541.tar.bz2
opensim-SC_OLD-1cfcace30f6105520a3493eda8db2c33568e7541.tar.xz
* Changed Version to property for great justice
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Servers/VersionInfo.cs10
1 files changed, 9 insertions, 1 deletions
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
32 /// <value> 32 /// <value>
33 /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version. 33 /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version.
34 /// </value> 34 /// </value>
35 public readonly static string Version = "OpenSimulator Server 0.6.5"; // stay with 27 chars (used in regioninfo) 35 private readonly static string m_version = "OpenSimulator Server 0.6.5"; // stay with 27 chars (used in regioninfo)
36 public const int VERSIONINFO_VERSION_LENGTH = 27; 36 public const int VERSIONINFO_VERSION_LENGTH = 27;
37 37
38 /// <value> 38 /// <value>
@@ -50,5 +50,13 @@ namespace OpenSim
50 /// 50 ///
51 /// </value> 51 /// </value>
52 public readonly static int MajorInterfaceVersion = 4; 52 public readonly static int MajorInterfaceVersion = 4;
53
54 /// <value>
55 /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version.
56 /// </value>
57 public static string Version
58 {
59 get { return m_version; }
60 }
53 } 61 }
54} 62}