From 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb Mon Sep 17 00:00:00 2001
From: onefang
Date: Sun, 19 May 2019 21:24:15 +1000
Subject: Dump OpenSim 0.9.0.1 into it's own branch.
---
OpenSim/Framework/VersionInfo.cs | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
(limited to 'OpenSim/Framework/VersionInfo.cs')
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
{
public class VersionInfo
{
- public const string VersionNumber = "0.8.2.1";
- private const string IG_BUILD_NUMBER = "1";
- private const Flavour VERSION_FLAVOUR = Flavour.IG;
+ public const string VersionNumber = "0.9.0.1";
+ public const string AssemblyVersionNumber = "0.9.0.*";
+
+ public const Flavour VERSION_FLAVOUR = Flavour.Release;
public enum Flavour
{
@@ -42,26 +43,25 @@ namespace OpenSim
RC3,
Release,
Post_Fixes,
- Extended,
- IG
+ Extended
}
public static string Version
{
- get { return GetVersionString(VersionNumber, IG_BUILD_NUMBER, VERSION_FLAVOUR); }
+ get { return GetVersionString(VersionNumber, VERSION_FLAVOUR); }
}
- public static string GetVersionString(string versionNumber, string buildNumber, Flavour flavour)
+ public static string GetVersionString(string versionNumber, Flavour flavour)
{
- string versionString = "OpenSim " + versionNumber + " " + flavour + " build " + buildNumber;
+ string versionString = "OpenSim " + versionNumber + " " + flavour;
return versionString.PadRight(VERSIONINFO_VERSION_LENGTH);
}
- public const int VERSIONINFO_VERSION_LENGTH = 39;
+ public const int VERSIONINFO_VERSION_LENGTH = 27;
///
/// This is the external interface version. It is separate from the OpenSimulator project version.
- ///
+ ///
///
/// Commented because it's not used anymore, see below for new
/// versioning method.
@@ -70,23 +70,23 @@ namespace OpenSim
///
/// This rules versioning regarding teleports, and compatibility between simulators in that regard.
///
- ///
+ ///
///
/// The protocol version that we will use for outgoing transfers
- /// Valid values are
- /// "SIMULATION/0.3"
+ /// Valid values are
+ /// "SIMULATION/0.3"
/// - This is the latest, and it supports teleports to variable-sized regions
/// - Older versions can teleport to this one, but only if the destination region
/// is 256x256
/// "SIMULATION/0.2"
/// - A source simulator which only implements "SIMULATION/0.1" can still teleport here
/// - this protocol is more efficient than "SIMULATION/0.1"
- /// "SIMULATION/0.1"
+ /// "SIMULATION/0.1"
/// - this is an older teleport protocol used in OpenSimulator 0.7.5 and before.
///
public readonly static float SimulationServiceVersionAcceptedMin = 0.3f;
- public readonly static float SimulationServiceVersionAcceptedMax = 0.5f;
+ public readonly static float SimulationServiceVersionAcceptedMax = 0.6f;
public readonly static float SimulationServiceVersionSupportedMin = 0.3f;
- public readonly static float SimulationServiceVersionSupportedMax = 0.5f;
+ public readonly static float SimulationServiceVersionSupportedMax = 0.6f;
}
}
--
cgit v1.1