aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-04-27adjust freeswitch grid connector to port 8003 to agree with the default 8003 ↵Justin Clark-Casey (justincc)2-2/+2
used in OpenSim.ini.example Adjusting to 8003 seems sensible since this service doesn't need to be exposed to viewers.
2011-04-25Removed stale client components: MXP and VWoHTTP.Diva Canto2-0/+0
2011-04-25Cleaned up various configuration options. Removed the category throttleMic Bowman1-23/+17
limits because the only ones used now are the defaults (which are overwritten by the client throttles anyway). Updated the default rates to correspond to about 350kbps. Also added a configuration to disable adaptive throttle. The default is the previous behavior (no adaptation).
2011-04-24Removed unused libraries: RAILS.dll and dependencies.Diva Canto3-0/+0
2011-04-24Removed unused libraries Castle.*Diva Canto3-0/+0
2011-04-23Added MaxAgents configuration option to RegionConfig.ini allowing region ↵E. Allen Soard1-0/+1
hosters to setup regions maintaining more control over system resources.
2011-04-21some mesh config astheticsBlueWall1-1/+1
2011-04-21Group collada meshies settings under [Mesh] in OpensimDefaults.iniBlueWall1-6/+6
2011-04-21Remove duplicated freeswitch settings.Justin Clark-Casey (justincc)1-4/+0
2011-04-19synchronize Robust.HG.ini.example FreeSWITCH config with other config filesJustin Clark-Casey (justincc)1-10/+32
2011-04-19For consistency, uncomment ColladaMesh option in OpenSimDefaults.ini. ↵Justin Clark-Casey (justincc)1-1/+1
Thanks for the spot, Ai Austin.
2011-04-19Clean up freeswitch config to what is currently required. Add explanation ↵Justin Clark-Casey (justincc)3-35/+63
to config parameters. Clean up some log messages.
2011-04-18Move mesh on/off swtich from [Startup] to [Mesh] in anticipation of future ↵Justin Clark-Casey (justincc)1-4/+6
config parameters. Default remains true. OpenSimDefault.ini changed so if you haven't overriden this switch then you don't need to do anything.
2011-04-18Provide a configuration setting to control whether multiple taken objects ↵Justin Clark-Casey (justincc)1-0/+7
are coalesced to inventory This is the CoalesceMultipleObjectsToInventory setting in [Inventory] in OpenSimDefaults.ini Default is true.
2011-04-14Add ColladaMesh switchBlueWall1-1/+5
2011-04-13Add ColladaMesh switchBlueWall1-1/+5
2011-04-12Move example HttpProxy setting to OpenSim.ini.example and tidyJustin Clark-Casey (justincc)2-9/+8
2011-04-12minor typo correction. thanks Ai Austin.Justin Clark-Casey (justincc)1-1/+1
2011-04-11slightly tweak OpenSim.ini.example textJustin Clark-Casey (justincc)1-2/+2
2011-04-11Add information comment to top of OpenSimDefaults.ini and make file consistentJustin Clark-Casey (justincc)1-13/+22
2011-04-11Add more instructions to OpenSim.ini.example to try and make it more ↵Justin Clark-Casey (justincc)1-35/+68
understandable for new users.
2011-04-08Update ODE for mac from source code in opensim-libs SVN library. This ↵Justin Clark-Casey (justincc)1-0/+0
version is r1755 + patches as detailed in the svn logs. This brings it into line with the Windows and Linux libraries. This is a universal dylib with x86_64, i386 and ppc parts. However, even on a 64 bit Intel machine Mono can only P/INVOKE the i386 version right now. ppc is untested. The configuration used to compile was CFLAGS="-g -O2 -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -arch ppc" CXXFLAGS="-g -O2 -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -arch ppc" LDFLAGS="-arch i386 -arch x86_64 -arch ppc" ./configure --enable-old-trimesh --disable-asserts --enable-shared --disable-dependency-tracking --disable-demos --without-x --disable-demos --without-x is required to build ODE on Mac OS X CFLAGS, CXXFLAGS and --disable-dependency-tracking are necessary to build the universal dylib (some compilation lines use CFLAGS instead of CXXFLAGS) The other settings are tweaks for using ODE with OpenSim
2011-04-08Remove old SQLite libraryJustin Clark-Casey (justincc)1-0/+0
2011-04-07Remove the SQLite legacy adaptor. This is no longer needed now that the ↵Justin Clark-Casey (justincc)3-30/+0
main adaptor works on Mac OS X. The SQLite legacy adapator was also not at all well maintained, even worse than the mainline sqlite adapator.
2011-04-07Bundle a built-from-source Mac OS X sqlite3 universal dylib with OpenSim and ↵Justin Clark-Casey (justincc)2-0/+1
use this instead of the system one. This means that Mac OS X users can now use the standard sqlite adaptor instead of the legacy one. This is SQLite 3.7.5. I configured the build with the line CFLAGS="-Os -g -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -arch ppc7400 -DSQLITE_ENABLE_COLUMN_METADATA" LDFLAGS="-arch i386 -arch x86_64 -arch ppc7400" ./configure --disable-dependency-tracking The SQLITE_ENABLE_COLUMN_METADATA flag exports the metadata symbols that modern Mono SQLite adaptors need. The -Os removes debugging symbols (as per the sqlite3 source pkg README) The other parts are to cross compile for x86_64, i386 and ppc. On Mac OS X, Mono can actually only P/INVOKE 32-bit libraries even on 64 bit platforms so i386 is being used. The dylib has not been tested on ppc.
2011-03-28Fix mantis #5413. WARNING: new config variable in section [GridService] of ↵Diva Canto2-0/+11
the simulators called Gatekeeper -- intended to have the URL of the grid's Gatekeeper service (so that it can be checked against). See ini.examples.
2011-03-28More touchup for SQLite.Marck1-1/+1
Apply the same change to both the 32-bit and 64-bit DLL target paths. This makes the previous addition to the instructions in the README for running on Linux unnecessary.
2011-03-27Touchup for SQLiteBlueWall1-1/+1
2011-03-23Fix a typo in the SQLite DLL config and amend the instructions for running ↵Marck1-1/+1
on Linux. Under Linux (and probably also under OSX), the operating system must be able to find the new SQLite DLL in the library search path.
2011-03-22Typo fixBlueWall1-1/+1
2011-03-22More SQLite work.BlueWall3-0/+4
2011-03-18Upgrade SQLite:BlueWall3-0/+1
Fixes metadata issues. Tested on Linux and Windows - may fix issues seen on OSx as well.
2011-03-09Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)1-0/+0
This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
2011-03-09Update MySql.Data.dll to version 6.3.6.Justin Clark-Casey (justincc)1-0/+0
This version fixes a bug so that MySqlCommand.CommandTimeout = 0 now correctly sets an infinite command timeout. This might help with failures on long-running migrations. The mysql.data.dll v2 is used from the mysql package (as opposed to v4). The v4 version (probably standing for NET 4.0) does not work under mono 2.6.7, which is still commonly used.
2011-02-22Parameterizes the view distance used to compute and manageMic Bowman1-0/+7
child agents in neighbor regions. This means you can extend the view on a simulator beyond the default 3x3 regions. This uses a region default draw distance and should be replaced at some point by the avatar specified draw distance. That will require more careful, dynamic recomputation of child agents every time the draw distance changes. WARNING: this is experimental and has known instabilities. specifically all regions "within site" should be running the same default draw distance or agents will not be closed correctly.
2011-02-16Changed default directory for storing map tile images from remote regions.Marck3-3/+3
2011-02-15Catch HttpServer exception: mantis #5381Diva Canto2-0/+0
2011-02-12Fixed a couple of tests in the HttpServer. Not sure if this is enough. ↵Diva Canto2-0/+0
Mantis #5373 and #5384
2011-02-11In SQLiteSimulationData.RemoveLandObject(), don't manually remove the row ↵Justin Clark-Casey (justincc)1-0/+0
from the data adaptor's Rows list in addition to calling Delete. This matches the behaviour for other deletions and stops this operation failing on Windows .NET (though mono is fine with the duplication). Probably a holdover from copying code from the older legacy adaptor. Resolves http://opensimulator.org/mantis/view.php?id=5361
2011-02-11minor: Add some more information to the mesh_sculpted_prim [PHYSICS] settingJustin Clark-Casey (justincc)1-0/+3
2011-02-04Added a config var to HGInventoryAccessModule called OutboundPermission that ↵Diva Canto3-0/+19
controls whether the sim lets asset POSTs happen to foreign grids or not. It's True by default. If ppl want to allow foreign visitors but don't want to allow any assets out of their grid, they should set this to False. This is the beginning of policies for these things...
2011-02-03Make UUID 3a367d1c-bef1-6d43-7595-e88c1e3aadb3 reference a full alpha texture.Justin Clark-Casey (justincc)1-0/+9
SL's viewer and some downstream projects assume that this UUID points to a full alpha texture, as per http://opensimulator.org/mantis/bug_view_advanced_page.php?bug_id=4751 and http://forums.kokuaviewer.org/viewtopic.php?f=8&t=1323 If the request isn't satified, some viewers will continuously make the request.
2011-01-28Add groups cache timeout setting for Flotsam Groups back to OpenSimDefaults.iniJustin Clark-Casey (justincc)1-0/+5
2011-01-13Make FireAndForgetWrapper a singleton classBlueWall1-0/+0
Made FireAndForgetWrapper a singleton class to allow us to drop dependancy on the BclExtras35 library. BclExtras is broken in Mono 2.8.2 and we used the library in only one function.
2011-01-13Make FireAndForgetWrapper a singleton classBlueWall1-0/+0
Made FireAndForgetWrapper a singleton class to allow us to drop dependancy on the BclExtras35 library. BclExtras is broken in Mono 2.8.2 and we used the library in only one function.
2011-01-08Moved the map tile processing used by the Simian GridMic Bowman1-0/+8
Frontend into a separate region module. Configuration settings added to the defaults ini file. Others may find this useful for pushing map tiles to a separate server.
2010-12-27WARNING: simulator config var change! This affects only system-facing ↵Diva Canto4-3/+9
configs. Nothing to do if you follow the rules of not messing with Grid.ini and GridHypergrid.ini. Change the remote Grid region module so that it takes the network connector as a config variable. This allows the region plugin to be reused for both Robust and Simian network connectors.
2010-12-18Replaced the HttpServer_OpenSim.dll with one compiled for .NET 3.5 (the last ↵Diva Canto3-2989/+2989
one was 4.0, and that doesn't work). Also added the corresponding .xml and .pdb, if that makes any difference.
2010-12-18Replaced HttpServer_OpenSim.dll with a version that locks certain ops in ↵Diva Canto1-0/+0
HttpForm -- mantis #5128.
2010-12-17remove now unused subversion serialization backup configJustin Clark-Casey (justincc)1-12/+3