aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-07-13replace o with ; in oXmlRpcPort in OpenSim.ini.exampleJustin Clark-Casey (justincc)1-1/+1
Thanks to Nebadon for the spot
2010-06-11remove SimianGrid Groups OpenSim.ini.example stuff that accidentally crept ↵Justin Clark-Casey (justincc)1-10/+3
in through a cherry-pick
2010-06-08Improve instructions for [Groups] setup in OpenSim.ini.exampleJustin Clark-Casey (justincc)1-12/+15
2010-06-07Stop some hud components disappearing on region crossingsJustin Clark-Casey (justincc)1-1/+3
If viewers (or at least, Linden Viewer 1.23.5) receive child hud object updates before the root prim, then the children are not displayed. Updates were being queued in LLClientView in the right order (root first) but were being sent in a random order since they were all at the same prioritization This commit prioritizes the root prim of a hud to its highest level when queued. I'm not sure if the periodic reprioritization triggered via ScenePresence might reset this, but boosting priority appears to work so far. Also committed is a belt and braces mechanism in LLClientView to prevent child hud prim being sent out before their root, but since this doesn't appear to be needed it is currently commented out.
2010-06-07commit code which stops full updates being fired multiple times when ↵Justin Clark-Casey (justincc)1-1/+1
attachments cross standalone region boundaries lots of messy debug code here too which would need to be removed
2010-06-04Revert "commit code which stops full updates being fired multiple times when ↵Justin Clark-Casey (justincc)1-1/+1
attachments cross standalone region boundaries" This reverts commit 5074d290e4aeb583560272cadc8ba09aa8337210. This gets rid of the massive amount of scene object log spam - sorry about that, folks
2010-05-27commit code which stops full updates being fired multiple times when ↵Justin Clark-Casey (justincc)1-1/+1
attachments cross standalone region boundaries lots of messy debug code here too which would need to be removed
2010-05-21Replace CSJ2K with fixed version (Mantis #3318)Melanie1-0/+0
2010-05-20Upgrade Newtonsoft.Json.dll from 1.3 to 3.5r6Justin Clark-Casey (justincc)3-990/+5827
Actually using the one built against Net 2.0 (labelled Newtonsoft.Json.Net20.dll) since the 3.5 build is not compatible with Mono 2.4 (though it is with Mono 2.6)
2010-05-15remove unrequired [Groups] section from GridCommon.ini.example, as per NebadonJustin Clark-Casey (justincc)1-5/+1
2010-05-05back port groups changesunknown1-5/+0
Signed-off-by: Melanie <melanie@t-data.com>
2010-05-05back port groups changesunknown2-3/+17
2010-04-30rename SQLiteNG to SQLite and SQLite to SQLiteLegacy this seems the least ↵Justin Clark-Casey (justincc)2-4/+18
evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.
2010-04-30add Mono.Data.Sqlite.dllJustin Clark-Casey (justincc)1-0/+0
2010-04-18Update OpenMetaverse libraries to those used in master as of commit 9a781e7Justin Clark-Casey (justincc)5-0/+0
This removes Mono.Security.dll which might help with Mono 2.6.3 compatability issues (notwithstanding the sqlite problem)
2010-03-09remove milliseconds from console log againJustin Clark-Casey (justincc)1-1/+1
2010-03-09Fix bug where approximately half the time, attachments would rez only their ↵Justin Clark-Casey (justincc)1-1/+1
root prim until right clicked (or otherwise updated). The root cause of this problem was that multiple ObjectUpdates were being sent on attachment which differed enough to confuse the client. Sometimes these would eliminate each other and sometimes not, depending on whether the scheduler looked at the queued updates. The solution here is to only schedule the ObjectUpdate once the attachment code has done all it needs to do. Backport from head.
2010-02-22Minor formatting cleanup.Jeff Ames2-36/+35
2010-01-28Fixes inconsistencies in the permissions module. Adds a region_manager_is_godMelanie1-0/+1
configurable. Previously, estate managers could enter god mode, but would not have any powers. Now estate managers can enter god mode only if this option is true, and then will have real god powers.
2010-01-20Console output no longer requires loglevel to be set to info; you can run ↵mbowman1-1/+1
the simulator with log level WARN or ERROR and see the output of console commands Signed-off-by: Melanie <melanie@t-data.com>
2010-01-19Add OpenSim.Server.ini.example documentation for the new AllowDuplicateNames ↵Justin Clark-Casey (justincc)1-0/+3
grid service setting
2010-01-19Adds example to OpenSim.ini.example for Admin Default Parcel settingsCareminster Staff1-0/+3
2010-01-15Add "create user" instructions to README.txtJustin Clark-Casey (justincc)1-0/+11
Add documentation to [Standalone] accounts_authenticate setting
2010-01-12minor: add a line of documentation to the new ForwardOfflineGroupMessages ↵Justin Clark-Casey (justincc)1-0/+2
[Messaging] switch
2010-01-11Add the option to reject duplicate region namesMelanie1-0/+1
2010-01-11Add explanation about AllowModFunctions to OpenSim.ini.exampleJustin Clark-Casey (justincc)1-0/+5
This switch allows scripts to pass messages to modules via the modSendCommand() function Modules can then send messages back to scripts via the link_message LSL event through invoking DispatchReply() on OpenSim.Region.Framework.Interfaces.IScriptModuleComms
2010-01-11Add the console port setting to ROBUST, tooMelanie1-0/+1
2010-01-11Add a console_port setting to let the rest console use a different portMelanie1-0/+1
from the region server
2010-01-10Add "StartDisabled" to [Startup] to make all regions start up withMelanie1-0/+3
logins disabled until enabled from the console. Add the AccessModule (WIP)
2010-01-08Add some notes to OpenSim.ini.example suggesting to use MySQL with Mono ↵dahlia1-1/+6
installations
2010-01-07Adds config option "ForwardOfflineGroupMessages" to allow disabling of group ↵dahlia1-0/+1
messages forwarded while offline. Addresses Mantis #4457
2010-01-04Update SQlite to newestMelanie4-0/+0
2009-12-27* Adding Google.ProtocolBuffers.dll dependency (BSD licensed)Adam Frisby1-0/+0
* For some experimental work with a Sirikata clientstack.
2009-12-23Library Module: allows adding folders/items to the Library from IAR files ↵Diva Canto4-1/+7
placed under bin/Library. This works only for standalones.
2009-12-15remove OpenSim.GridServer.ini.example that has been folded into ROBUSTJustin Clark-Casey (justincc)1-35/+0
please revert if I'm wrong
2009-12-15Delete obsolete AssetInventoryServer.ini.example which was for the removed ↵Justin Clark-Casey (justincc)1-119/+0
cable beach component
2009-12-14Add an option to exit an instance rather than restarting a region within itMelanie1-1/+9
2009-12-09Move osFunctions into a new Careminster script interfaceCasperW1-0/+3
2009-12-09Windlight configuration option in ini, and migrationunknown1-0/+6
2009-12-03* Clarifies that the PrimMaxPhys in OpenSim.ini.example does nothing. Tells ↵Teravus Ovares (Dan Olivares)1-1/+1
user to set it in Regions.ini. Melanie might want to take a look at this and see if it should be removed altogether.
2009-12-03* Fixes the 10x10x10 hard physics limitation. (wierdly, you have to set ↵Teravus Ovares (Dan Olivares)1-0/+3
this for each region in your Regions.ini[PhysicalPrimMax = 10(default)]) * Adds a configurable maximum object mass before the mass is clamped. Default is 10000.01. Configurable by changing maximum_mass_object in the [ODEPhysicsSettings] section. * Clamping the mass is important for limiting the amount of CPU an object can consume in physics calculations. Too high, and the object overcomes restitution forces by gravity alone. This generates more collisions potentially leading to 'deep think'.
2009-12-01Remove leftover IronPython DLLsJustin Clark-Casey (justincc)2-0/+0
This completes http://opensimulator.org/mantis/view.php?id=4395
2009-11-30minor: add disabled config and explanation for WebStatsJustin Clark-Casey (justincc)1-1/+9
2009-11-30enable messaging_server_url by default in OpenSim.ini.exampleJustin Clark-Casey (justincc)1-1/+1
having this enabled results just in warning messages if no message service is actually available haivng this disabled results in an unexpected failure if no message service is available
2009-11-25Add MIT/X11 licensed NDesk.Options (http://www.ndesk.org/Options) DLL to aid ↵Justin Clark-Casey (justincc)1-0/+0
command line parsing
2009-11-24Append a prefix to the god avatar names appearing in chat whilst in god mode ↵CasperW1-0/+3
(disabled by default, config entry admin_prefix)
2009-11-09Following various discussions on irc and in the OpenSim dev OSGrid meeting ↵Justin Clark-Casey (justincc)1-1/+1
last week, change av_capsule_tilted to false by default This appears to now give better ODE physics response (less sinking into the ground, etc.) Please change it back if this is actually a bad idea for some reason
2009-10-30* Moving parcel media and avatar update packets from the unthrottled ↵John Hurliman1-7/+7
category to task * Fixing a bug where the max burst rate for the state category was being set as unlimited, causing connections to child agents to saturate bandwidth * Upped the example default drip rates to 1000 bytes/sec, the minimum granularity for the token buckets
2009-10-30* Fixes issue #4329 "llDialog fails silently" by updating OpenMetaverse.dllJohn Hurliman2-1/+1
* Prints a warning for any future packet splitting failures
2009-10-29* Misc. formatting cleanup for the previous patchJohn Hurliman1-0/+7
* Added the new AppDomainLoading variable to the [XEngine] section in the example config