aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/VersionInfo.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixes Mantis #3032. The VersionInfo.cs file was not updated from 0.6.1 to ↵Charles Krinke2009-01-221-1/+1
| | | | 0.6.2 with the last minor release and shows incorrectly on the console. This will resolve itself on the next svn update.
* Undoing the bump up of MajorInterfaceVersion number back to 2. This just ↵diva2009-01-031-1/+1
| | | | doesn't work in practice!
* Another interregion comms change that will not work well with previous ↵diva2009-01-031-1/+1
| | | | | | | versions. This commit moves InformRegionOfChildAgent from OGS1 to RESTComms, effectively having the complete child agent life cycle over REST: create=POST, update=PUT, close=DELETE. Additional changes include more functions in the IHyperlink interface, and some refactorings in the HG code for better reuse in RESTComms.
* Change VersionInfo.cs from 0.6.0 to 0.6.1 in preparationCharles Krinke2008-12-201-1/+1
| | | | | for the 0.6.1 minor release.
* Mantis#2811. Thank you kindly, Diva for a patch that resolvesCharles Krinke2008-12-131-1/+1
| | | | | | | some of our DNS/dotted decimal issues that plague teleporting. We are increasing the MajorInterfaceVersion from 1 to 2 in the gridserver, so sims will need to be updated on various grids.
* Add group permissions to agent inventory.Melanie Thielker2008-11-141-1/+1
| | | | | | | | | | Contains a migration. May contain nuts. Please back up your inventory data store. This revision changes the interface version!! No older regions can connect to these new UGAIM, and the new regions can't connect to the old UGAIM. Fixes a long-standing issue of permissions loss Currently persisted on MySQL only.
* * Implement basic region filtering as described in ↵Justin Clarke Casey2008-11-111-3/+19
| | | | | | | | | | | | https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
* Change Version string from 0.5.11 to 0.6.0 for release.Charles Krinke2008-11-081-1/+1
|
* * Bump server info number to 0.5.11Justin Clarke Casey2008-10-091-1/+1
|
* Mantis#2017. Thank you kindly, Tyre, for a patch that solves:Charles Krinke2008-09-251-1/+1
| | | | | | | | | | 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.
* * minor: upgrade version info to post 0.5.9Justin Clarke Casey2008-08-251-1/+1
|
* Change VersionInfo string fromCharles Krinke2008-06-151-1/+1
| | | | | | | "Opensimulator release (0.5.8)" to "Opensimulator trunk (post 0.5.8)" as we move forward with trunk again.
* Change VersionInfo string from:Charles Krinke2008-06-141-1/+1
| | | | | | | | "OpenSimulator trunk (post 0.5.7)" to "OpenSimulator release 0.5.8" in preparation for tagging this minor release.
* * Make version information common to all serversJustin Clarke Casey2008-05-311-0/+37
* Now all servers respond to the "show version" command on the console