aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/VersionInfo.cs
diff options
context:
space:
mode:
authorUbitUmarov2015-09-28 12:37:12 +0100
committerUbitUmarov2015-09-28 12:37:12 +0100
commit4c0ef5a0efe830747d38d2c9c47efa2ef17be530 (patch)
tree03a8275a0b861ec8c88dc545adb3b8e61eca42d3 /OpenSim/Framework/VersionInfo.cs
parent add missing Makefile from master, put me on contributors (diff)
downloadopensim-SC_OLD-4c0ef5a0efe830747d38d2c9c47efa2ef17be530.zip
opensim-SC_OLD-4c0ef5a0efe830747d38d2c9c47efa2ef17be530.tar.gz
opensim-SC_OLD-4c0ef5a0efe830747d38d2c9c47efa2ef17be530.tar.bz2
opensim-SC_OLD-4c0ef5a0efe830747d38d2c9c47efa2ef17be530.tar.xz
change version string
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/VersionInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/VersionInfo.cs b/OpenSim/Framework/VersionInfo.cs
index ad39845..a285db0 100644
--- a/OpenSim/Framework/VersionInfo.cs
+++ b/OpenSim/Framework/VersionInfo.cs
@@ -33,7 +33,7 @@ namespace OpenSim
33 private const Flavour VERSION_FLAVOUR = Flavour.Dev; 33 private const Flavour VERSION_FLAVOUR = Flavour.Dev;
34 34
35 public enum Flavour 35 public enum Flavour
36 { 36 {
37 Unknown, 37 Unknown,
38 Dev, 38 Dev,
39 RC1, 39 RC1,
@@ -51,7 +51,7 @@ namespace OpenSim
51 51
52 public static string GetVersionString(string versionNumber, Flavour flavour) 52 public static string GetVersionString(string versionNumber, Flavour flavour)
53 { 53 {
54 string versionString = "OpenSimulator" + versionNumber + " " + flavour; 54 string versionString = "OpenSim " + versionNumber + " " + flavour;
55 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH); 55 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH);
56 } 56 }
57 57