aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-31- making font name used by VectorRenderModule configurable: can be setdr scofield (aka dirk husemann)1-0/+4
via [VectorRender] font_name = "Comic Sans MS" in OpenSim.ini - adding osSetFontName OSSL function
2009-08-29Add a slow cache cleaner thread. By default, the thread starts a cleanupMelanie1-1/+1
sweep every 10 minutes. If any texture data is older than 12 hours, it is regenerated and the memory cache is refreshed. After each decode, the thread delays for 5 seconds.
2009-08-29Make the j2kDecodeCache expire after 50 minutes (configurable). Alse allowsMelanie1-0/+7
setting the path for it. This commit introduces NEW DEFAULT BEHAVIOR. To retain the old behavior (eternal cache) you will need to change your OpenSim.ini and set the timeout to 0.
2009-08-28Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)4-132/+0
2009-08-27Add optimization comment suggestions for FlotsamCache MemoryCacheTimeout as ↵Justin Clark-Casey (justincc)1-0/+2
suggested by Whitestar. Thanks!
2009-08-25Patch from jhurliman to HttpServerTeravus Ovares (Dan Olivares)1-0/+0
Fixes cookie handling and header name casing in HttpServer Currently, cookies are never being processed on incoming HTTP requests. This patch makes sure cookies are parsed and inserted into IHttpRequest.Cookies, and fixes incoming headers to always have lower-case names. http://opensimulator.org/mantis/view.php?id=4052
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2-58/+0
folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
2009-08-18Added new OpenSim.ini setting: "client_throttle_max_bps" which overrides ↵dahlia1-0/+3
user's viewer network throttle settings
2009-08-18* Update HTTP Server with jhurliman's longheader fix. Changes 1024 with 4096.Teravus Ovares (Dan Olivares)3-3236/+3236
2009-08-17Apply http://opensimulator.org/mantis/view.php?id=3538Justin Clark-Casey (justincc)1-10/+15
Add ability to silence IRC relay of region joins and quits from certain users This is useful for admins who wish to remain hidden, or service bots. Thanks RemedyTomm
2009-08-18Added additional configuration options for MRM Security. See ↵Adam Frisby1-2/+20
OpenSim.ini.example under the [MRM] section.
2009-08-17Add the ability to use -console=rest to the region server. UserMelanie2-1/+3
and pass are specified the same way as for the ROBUST server
2009-08-17Add the remote console parameters to the example fileMelanie1-0/+6
2009-08-17Add the OpenSim.ConsoleClient app.Melanie2-0/+34
Usage: OpenSim.ConsoleClient -h <host> -p <port> -u <user> -P <pass> host defaults to localhost, port defaults to 8003.
2009-08-16Adding in Reflection-based testing, to ensure that all properties are covered.Kunnis1-1/+1
2009-08-16Misc cleanup.Jeff Ames1-60/+58
2009-08-11Try something to help the tests complete.Teravus Ovares (Dan Olivares)11-11/+110
2009-08-10Removed IAssetCache.Diva Canto1-4/+0
WARNING: PLEASE MAKE SURE TO USE THIS NEW bin/OpenSim.addin.xml
2009-08-10Removed IAssetServer.Diva Canto1-4/+0
2009-08-07add in stanzas for ppc64 and s390xSean Dague1-0/+2
2009-08-07add stanzas for s390x and ppc64 so that if you build these libraries,Sean Dague1-0/+2
and name them correctly, opensim will pick them up.
2009-08-06Update prebuild once againMelanie1-0/+0
2009-08-06Update prebuild binaryMelanie1-0/+0
2009-08-06Add the addon modules folderMelanie1-0/+1
2009-08-06Add the config-include statement to OpenSim.ini.example.Melanie1-0/+8
addon-modules/*/config/*.ini is now included in the configuration
2009-08-05Continue with renaming of Groups module componentsMichael Cortez1-15/+22
2009-08-05force back the Regions directory, which because it was empty in svn never madeSean Dague1-0/+0
the transition
2009-08-05* Fix OpenMetaverse.dll.configTeravus Ovares (Dan Olivares)1-2/+4
2009-08-05* Commit a slightly modified OpenMetaverse compiled as a .NET 2.0 targetTeravus Ovares (Dan Olivares)10-13345/+14243
* Hopefully this allows older mono versions to still work. * A couple of points of note: * TimeZoneInfo.. replaced with DateTime.UtcNow - TimeSpan.FromHours(7); * HashSet<uint> replaced with Dictionary<uint,object> * Force use of the managed version of ReaderWriterLockSlim (don't use the pre-processor defs)
2009-08-04Update a misspelled nameMelanie1-1/+1
2009-08-04Update config examplesMelanie2-1/+2
2009-08-04Configuration examples for the freeswitch moduleMelanie2-1/+10
2009-07-30* Reattempt at a compileTeravus Ovares1-0/+0
2009-07-30* Fixed another potential httpserver leak.Teravus Ovares2-0/+0
2009-07-30adding documentation for DisableUndergroundMovementDr Scofield1-0/+5
2009-07-29* An attempt to fix mantis #3953Teravus Ovares2-0/+0
2009-07-29Thank you, coyled, for a patch to change Flotsamcache path generationMelanie Thielker1-0/+11
to avoid directory overflow.
2009-07-29* Adds the ability to have a thread efficient long poll service (such as the ↵Teravus Ovares3-0/+5
eventqueue) * If this doesn't melt the Http Server, this will significantly reduce the number of threads in use on regions with many users. * Adds AddPollServiceHTTPHandler, and RemovePollServiceHTTPHandler to BaseHttpServer * Generic enough to be used for many long poll services, not only the EventQueue.
2009-07-27Update svn properties.Jeff Ames5-23455/+23455
2009-07-25* Updates libOMV to version 0.7.0Teravus Ovares11-0/+23455
* Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
2009-07-21* Updated C# WebServer to the latest available source download (r19869) and ↵Teravus Ovares3-4499/+2931
applied a few mods from the old version (now up on opensim-libs (VS 3.5 project). * Made various changes to BaseHttpServer to accommodate the new interfaces. * This version has been significantly re-architected and may fail in unusual and insidious ways. * Please pay attention to any errors you get and post a Mantis if you can reproduce an issue with the HTTPServer. I'm including the pdb and having the http server compiled in debug for a few weeks so that when an error occurs, it'll print the pertenant data. * Once again, this is the full C# WebServer, not the lite branch that is included in LibOMV (we need SSL!)
2009-07-11From: Dr Scofield <hud@zurich.ibm.com> & Alan Webb <alan_webb@us.ibm.com>Dr Scofield1-0/+58
this commit finally adds the VivoxVoiceModule: it supports positional as well as conference call type voice (currently only per region server), region and parcel voice, speaker indication (LL client family), direct avtar-to-avatar voice chat. NOTE: you need to obtain an customer admin account from Vivox to be able to use this module --- DON'T ask me about how to about an admin account, i've NO clue, we just wrote this code.
2009-07-10* minor: formatting adjustments in OpenSim.ini.exampleJustin Clarke Casey1-2/+10
2009-07-10* minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey1-2/+3
asset where appropriate * Send debug level notice to console if a user fails authentication
2009-07-08Experimental fix for tilted avatar capsule, Mantis #2905nlin1-0/+4
Set av_capsule_tilted to false in opensim.ini. Default is true, so there is no change in avatar behavior (and no breaking of existing content which relies on the tilted capsule). This commit straightens up the avatar capsule so it behaves consistently (e.g. same collision behavior against prims regardless of which direction the avatar is coming from; ability to fit through narrow doorways). Please note this introduces other side effects which have not been fixed. In particular: * The avatar frequently falls through the terrain if it is not flat, though the avatar behaves pretty well on flat terrain. This requires investigation of the ode terrain collider. * The apparent foot position of the avatar with respect to the ground is changed. This requires investigation of the avatar height/capsule height. Please consider this as work in progress.
2009-07-07B.U.S.T. Implant #1. Add inventory services to B.U.S.T.Melanie Thielker1-2/+13
OpenSim.Server.exe now runs both asset and inventory services
2009-07-07Removing the left over monolithic user server config filesMelanie Thielker2-47/+0
2009-07-07Committing the basic universal server Technology (B.U.S.T.)Melanie Thielker2-0/+60
2009-07-06Thank you, mcortez, for a patch to prebuild to allow includes with wildcards.Melanie Thielker1-0/+0
Fixes Mantis #3860
2009-06-25Add a comment and an example region config fileMelanie Thielker1-0/+47