aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/VersionInfo.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-09-25 14:57:40 +0000
committerCharles Krinke2008-09-25 14:57:40 +0000
commit339671afc67f9b6ce036733b7b746c572d78ddc3 (patch)
treeac3fd0b65a9a195151ec9990c0bcfab7b1c77686 /OpenSim/Framework/Servers/VersionInfo.cs
parentFixes an exception that is seen on regions running XEngine, where DNE (diff)
downloadopensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.zip
opensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.tar.gz
opensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.tar.bz2
opensim-SC_OLD-339671afc67f9b6ce036733b7b746c572d78ddc3.tar.xz
Mantis#2017. Thank you kindly, Tyre, for a patch that solves:
Check the client dialog box (from top menu) WORLD / REGION ESTATE / REGION tab. The client dialog box seems to have a hard limit of about 32 characters per line available for displaying the region version number. Our regions are sending a string which is greater than the limit, causing the client to wrap the text and look ugly.
Diffstat (limited to 'OpenSim/Framework/Servers/VersionInfo.cs')
-rw-r--r--OpenSim/Framework/Servers/VersionInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs
index d206fc3..ed3f2a5 100644
--- a/OpenSim/Framework/Servers/VersionInfo.cs
+++ b/OpenSim/Framework/Servers/VersionInfo.cs
@@ -32,6 +32,6 @@ namespace OpenSim
32 /// </summary> 32 /// </summary>
33 public class VersionInfo 33 public class VersionInfo
34 { 34 {
35 public readonly static string Version = "OpenSimulator trunk (post 0.5.9)"; 35 public readonly static string Version = "OpenSimulator Server 0.5.9"; // stay with 27 chars (used in regioninfo)
36 } 36 }
37} 37}