aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/VersionInfo.cs
diff options
context:
space:
mode:
authoronefang2021-08-26 06:21:19 +1000
committeronefang2021-08-26 06:21:19 +1000
commitcdfbb899f1112dab44d5490838765e9bd73bc60e (patch)
tree52cddd0b76e7ad8544a0ada533f91bb5fc402025 /OpenSim/Framework/VersionInfo.cs
parentStill failing to reconnect for dbCount(), just set the fucking timeout to a y... (diff)
parentDon't strip (OWNER) out of script error report. (diff)
downloadopensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.zip
opensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.tar.gz
opensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.tar.bz2
opensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.tar.xz
Merge branch 'switch' into Domme.
Diffstat (limited to 'OpenSim/Framework/VersionInfo.cs')
-rw-r--r--OpenSim/Framework/VersionInfo.cs14
1 files changed, 9 insertions, 5 deletions
diff --git a/OpenSim/Framework/VersionInfo.cs b/OpenSim/Framework/VersionInfo.cs
index 2250496..d2674a0 100644
--- a/OpenSim/Framework/VersionInfo.cs
+++ b/OpenSim/Framework/VersionInfo.cs
@@ -29,8 +29,8 @@ namespace OpenSim
29{ 29{
30 public class VersionInfo 30 public class VersionInfo
31 { 31 {
32 public const string VersionNumber = "0.9.0.2"; 32 public const string VersionNumber = "0.9.1.1";
33 public const string AssemblyVersionNumber = "0.9.0.*"; 33 public const string AssemblyVersionNumber = "0.9.1.1";
34 public const string SC_BUILD_NUMBER = "0"; 34 public const string SC_BUILD_NUMBER = "0";
35 35
36 public const Flavour VERSION_FLAVOUR = Flavour.Dev; 36 public const Flavour VERSION_FLAVOUR = Flavour.Dev;
@@ -76,8 +76,12 @@ namespace OpenSim
76 /// <remarks> 76 /// <remarks>
77 /// The protocol version that we will use for outgoing transfers 77 /// The protocol version that we will use for outgoing transfers
78 /// Valid values are 78 /// Valid values are
79 /// "SIMULATION/0.8"
80 /// - up to 45 avatar textures - 11 baked
81 /// "SIMULATION/0.7"
82 /// TP uses call back again
79 /// "SIMULATION/0.3" 83 /// "SIMULATION/0.3"
80 /// - This is the latest, and it supports teleports to variable-sized regions 84 /// - supports teleports to variable-sized regions
81 /// - Older versions can teleport to this one, but only if the destination region 85 /// - Older versions can teleport to this one, but only if the destination region
82 /// is 256x256 86 /// is 256x256
83 /// "SIMULATION/0.2" 87 /// "SIMULATION/0.2"
@@ -87,8 +91,8 @@ namespace OpenSim
87 /// - this is an older teleport protocol used in OpenSimulator 0.7.5 and before. 91 /// - this is an older teleport protocol used in OpenSimulator 0.7.5 and before.
88 /// </remarks> 92 /// </remarks>
89 public readonly static float SimulationServiceVersionAcceptedMin = 0.3f; 93 public readonly static float SimulationServiceVersionAcceptedMin = 0.3f;
90 public readonly static float SimulationServiceVersionAcceptedMax = 0.6f; 94 public readonly static float SimulationServiceVersionAcceptedMax = 0.8f;
91 public readonly static float SimulationServiceVersionSupportedMin = 0.3f; 95 public readonly static float SimulationServiceVersionSupportedMin = 0.3f;
92 public readonly static float SimulationServiceVersionSupportedMax = 0.6f; 96 public readonly static float SimulationServiceVersionSupportedMax = 0.8f;
93 } 97 }
94} 98}