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.
This commit is contained in:
Charles Krinke
2008-09-25 14:57:40 +00:00
parent f6650d33cc
commit 339671afc6
6 changed files with 8 additions and 15 deletions

View File

@@ -98,7 +98,7 @@ namespace OpenSim.Region.Environment.Scenes
private int m_incrementsof15seconds = 0;
private volatile bool m_backingup = false;
protected string m_simulatorVersion = "unknown";
protected string m_simulatorVersion = "OpenSimulator Server";
protected ModuleLoader m_moduleLoader;
protected StorageManager m_storageManager;

View File

@@ -183,7 +183,7 @@ namespace OpenSim.Region.Environment.Scenes
public virtual string GetSimulatorVersion()
{
return "OpenSimulator v0.5 SVN";
return "OpenSimulator Server";
}
#endregion