diff options
author | onefang | 2019-05-19 21:24:15 +1000 |
---|---|---|
committer | onefang | 2019-05-19 21:24:15 +1000 |
commit | 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb (patch) | |
tree | a9fbc62df9eb2d1d9ba2698d8552eae71eca20d8 /OpenSim/Framework/VersionInfo.cs | |
parent | Add a build script. (diff) | |
download | opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.zip opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.gz opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.bz2 opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.xz |
Dump OpenSim 0.9.0.1 into it's own branch.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/VersionInfo.cs | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/OpenSim/Framework/VersionInfo.cs b/OpenSim/Framework/VersionInfo.cs index 1b9ec76..fc0fb1a 100644 --- a/OpenSim/Framework/VersionInfo.cs +++ b/OpenSim/Framework/VersionInfo.cs | |||
@@ -29,9 +29,10 @@ namespace OpenSim | |||
29 | { | 29 | { |
30 | public class VersionInfo | 30 | public class VersionInfo |
31 | { | 31 | { |
32 | public const string VersionNumber = "0.8.2.1"; | 32 | public const string VersionNumber = "0.9.0.1"; |
33 | private const string IG_BUILD_NUMBER = "1"; | 33 | public const string AssemblyVersionNumber = "0.9.0.*"; |
34 | private const Flavour VERSION_FLAVOUR = Flavour.IG; | 34 | |
35 | public const Flavour VERSION_FLAVOUR = Flavour.Release; | ||
35 | 36 | ||
36 | public enum Flavour | 37 | public enum Flavour |
37 | { | 38 | { |
@@ -42,26 +43,25 @@ namespace OpenSim | |||
42 | RC3, | 43 | RC3, |
43 | Release, | 44 | Release, |
44 | Post_Fixes, | 45 | Post_Fixes, |
45 | Extended, | 46 | Extended |
46 | IG | ||
47 | } | 47 | } |
48 | 48 | ||
49 | public static string Version | 49 | public static string Version |
50 | { | 50 | { |
51 | get { return GetVersionString(VersionNumber, IG_BUILD_NUMBER, VERSION_FLAVOUR); } | 51 | get { return GetVersionString(VersionNumber, VERSION_FLAVOUR); } |
52 | } | 52 | } |
53 | 53 | ||
54 | public static string GetVersionString(string versionNumber, string buildNumber, Flavour flavour) | 54 | public static string GetVersionString(string versionNumber, Flavour flavour) |
55 | { | 55 | { |
56 | string versionString = "OpenSim " + versionNumber + " " + flavour + " build " + buildNumber; | 56 | string versionString = "OpenSim " + versionNumber + " " + flavour; |
57 | return versionString.PadRight(VERSIONINFO_VERSION_LENGTH); | 57 | return versionString.PadRight(VERSIONINFO_VERSION_LENGTH); |
58 | } | 58 | } |
59 | 59 | ||
60 | public const int VERSIONINFO_VERSION_LENGTH = 39; | 60 | public const int VERSIONINFO_VERSION_LENGTH = 27; |
61 | 61 | ||
62 | /// <value> | 62 | /// <value> |
63 | /// This is the external interface version. It is separate from the OpenSimulator project version. | 63 | /// This is the external interface version. It is separate from the OpenSimulator project version. |
64 | /// | 64 | /// |
65 | /// </value> | 65 | /// </value> |
66 | /// Commented because it's not used anymore, see below for new | 66 | /// Commented because it's not used anymore, see below for new |
67 | /// versioning method. | 67 | /// versioning method. |
@@ -70,23 +70,23 @@ namespace OpenSim | |||
70 | /// <summary> | 70 | /// <summary> |
71 | /// This rules versioning regarding teleports, and compatibility between simulators in that regard. | 71 | /// This rules versioning regarding teleports, and compatibility between simulators in that regard. |
72 | /// </summary> | 72 | /// </summary> |
73 | /// | 73 | /// |
74 | /// <remarks> | 74 | /// <remarks> |
75 | /// The protocol version that we will use for outgoing transfers | 75 | /// The protocol version that we will use for outgoing transfers |
76 | /// Valid values are | 76 | /// Valid values are |
77 | /// "SIMULATION/0.3" | 77 | /// "SIMULATION/0.3" |
78 | /// - This is the latest, and it supports teleports to variable-sized regions | 78 | /// - This is the latest, and it supports teleports to variable-sized regions |
79 | /// - Older versions can teleport to this one, but only if the destination region | 79 | /// - Older versions can teleport to this one, but only if the destination region |
80 | /// is 256x256 | 80 | /// is 256x256 |
81 | /// "SIMULATION/0.2" | 81 | /// "SIMULATION/0.2" |
82 | /// - A source simulator which only implements "SIMULATION/0.1" can still teleport here | 82 | /// - A source simulator which only implements "SIMULATION/0.1" can still teleport here |
83 | /// - this protocol is more efficient than "SIMULATION/0.1" | 83 | /// - this protocol is more efficient than "SIMULATION/0.1" |
84 | /// "SIMULATION/0.1" | 84 | /// "SIMULATION/0.1" |
85 | /// - this is an older teleport protocol used in OpenSimulator 0.7.5 and before. | 85 | /// - this is an older teleport protocol used in OpenSimulator 0.7.5 and before. |
86 | /// </remarks> | 86 | /// </remarks> |
87 | public readonly static float SimulationServiceVersionAcceptedMin = 0.3f; | 87 | public readonly static float SimulationServiceVersionAcceptedMin = 0.3f; |
88 | public readonly static float SimulationServiceVersionAcceptedMax = 0.5f; | 88 | public readonly static float SimulationServiceVersionAcceptedMax = 0.6f; |
89 | public readonly static float SimulationServiceVersionSupportedMin = 0.3f; | 89 | public readonly static float SimulationServiceVersionSupportedMin = 0.3f; |
90 | public readonly static float SimulationServiceVersionSupportedMax = 0.5f; | 90 | public readonly static float SimulationServiceVersionSupportedMax = 0.6f; |
91 | } | 91 | } |
92 | } | 92 | } |