diff options
author | lbsa71 | 2009-05-26 15:46:09 +0000 |
---|---|---|
committer | lbsa71 | 2009-05-26 15:46:09 +0000 |
commit | f76615a66d3f94a219e85eeda1c016f286a81725 (patch) | |
tree | 6be571551c75cfb560762d5b1a0f9615e5371e1d /OpenSim/Framework/Servers | |
parent | * Changed Version to property for great justice (diff) | |
download | opensim-SC_OLD-f76615a66d3f94a219e85eeda1c016f286a81725.zip opensim-SC_OLD-f76615a66d3f94a219e85eeda1c016f286a81725.tar.gz opensim-SC_OLD-f76615a66d3f94a219e85eeda1c016f286a81725.tar.bz2 opensim-SC_OLD-f76615a66d3f94a219e85eeda1c016f286a81725.tar.xz |
* slowly getting there...
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/VersionInfo.cs | 19 |
1 files changed, 7 insertions, 12 deletions
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 | |||
29 | { | 29 | { |
30 | public class VersionInfo | 30 | public class VersionInfo |
31 | { | 31 | { |
32 | /// <value> | 32 | private const string m_versionNumber = "0.6.5"; |
33 | /// This is the OpenSim version string. Change this if you are releasing a new OpenSim version. | 33 | |
34 | /// </value> | 34 | public static string Version |
35 | private readonly static string m_version = "OpenSimulator Server 0.6.5"; // stay with 27 chars (used in regioninfo) | 35 | { |
36 | get { return "OpenSimulator Server" + " " + m_versionNumber; } | ||
37 | } | ||
38 | |||
36 | public const int VERSIONINFO_VERSION_LENGTH = 27; | 39 | public const int VERSIONINFO_VERSION_LENGTH = 27; |
37 | 40 | ||
38 | /// <value> | 41 | /// <value> |
@@ -50,13 +53,5 @@ namespace OpenSim | |||
50 | /// | 53 | /// |
51 | /// </value> | 54 | /// </value> |
52 | public readonly static int MajorInterfaceVersion = 4; | 55 | 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 | } | ||
61 | } | 56 | } |
62 | } | 57 | } |