aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Adds llSetStatus(STATUS_ROTATE_X | STATUS_ROTATE_Y | STATUS_ROTATE_Z,TF)Teravus Ovares2008-04-231-0/+0
| | | | | | | | * Currently if you apply that to only one or two axis you get unpredictable and sometimes explosive results. * Three axis works well enough to play with it anyway. More work is needed here. * Fixed an incorrectly named method in ODE.NET
* * ODE Update! If you roll your own, make sure to download the lib source ↵Teravus Ovares2008-04-222-0/+0
| | | | | | | again from http://opensimulator.org/svn/opensim-libs/trunk * Gracefully handles two asserts that were being pesky.
* * Added support for periodic autosaves - added to SvnBackupModule. Will ↵Adam Frisby2008-04-211-0/+3
| | | | | | | | cause a SVN revision to be saved every X minutes. (Default = 15) * Added 'Autosave' options to OpenSim.ini.Example * Added 'ImportOnStartup' option to OpenSim.ini.example
* * Added a directory for the SVN module. More about to come.* SVNBackupModuleAdam Frisby2008-04-171-1/+8
| | | | | | | | | | * See OpenSim.ini.example settings for how to use * Only compatible with svn:// and http:// authentication for the moment (and only using simple authentication). SSL/SSH key support is supported by the library used (SvnDotNet), but is not yet supported in OpenSim. * Use the command "svn save" to make a copy of your regions to SVN. Presently this is not an automatic process, but such a feature is on the todo list. * It will in your repository create a subdirectory for each region with the regions UUID, inside there it will create a 'terrain load' compatible 'heightmap.r32', and a load-xml2 compatible 'objects.xml' plus information files. * Untested on Linux, some compatibility work may be needed by Linux peoples. The dependencies will be the same as for SvnDotNet which is supposedly mono-compatible.
* * Committing a whole bunch of binaries needed for SvnDotNet to function. ↵Adam Frisby2008-04-1716-0/+0
| | | | Namely the apache portable runtime project. Under Apache 2.0 License.
* * Committing PumaCode SvnDotNet DLL library - a C# binding for SVN access.Adam Frisby2008-04-161-0/+0
| | | | | | * Required for upcoming work on a specialised module. * Added license file (LGPL) to ThirdPartyLicenses/
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-151-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | ansgar and i have been working on an asterisk voice module that will allow us to couple opensim with an asterisk VoIP gateway. the patch below consists of * AsteriskVoiceModule region module: alternative to the plain-vanilla VoiceModule, will make XmlRpc calls out to an asterisk-opensim frontend * asterisk-opensim.py frontend, living in share/python/asterisk, takes XmlRpc calls from the AsteriskVoiceModule * account_update: to update/create a new SIP account (on ProvisionVoiceAccountRequest) * region_update: to update/create a new "region" conference call (on ParcelVoiceInfo) * a asterisk-opensim test client, living in share/python/asterisk, to exercise astersik-opensim.py this still does not give us voice in OpenSim, but it's another step on this path...
* From: dirk husemann <hud@zurich.ibm.com>Sean Dague2008-04-151-0/+4
| | | | | | | | | | | | | | | | | attached is a patch set that * adds further robustness checks for the CreateUser and CreateRegion XmlRpc * fixes SceneManager.TryGetScene(IPEndPoint, Scene) --- contrary to my expectation IPEndPoint.Address is not sufficient for a comparision, IPEndPoint.Address.Address (the long representation) does work however. * add [RemoteAdmin] section to OpenSim.ini.example * fixes XML doc comments good night, dirk
* * Fix a bug in the friends module that causes a friend not to appear online ↵Teravus Ovares2008-04-131-1/+8
| | | | | | | | when they were. * A few things for testing. * This makes a modification to the region registration with the grid server so that the region can send it a chosen password to identify itself. It will not cause any errors, if either one are not updated.
* * Added a "regionload_regionsdir" option to OpenSim.ini which determines ↵Adam Frisby2008-04-111-0/+3
| | | | where Region.XML files are stored. If not set, it will default to the usual location.
* * Updates BetaGridLikeMoneyModuleTeravus Ovares2008-04-101-0/+50
| | | | | | | * Several people have asked for a way to limit uploads, so I've decided to show people how to do this in the BetaGridLikeMoneyModule. * Configure it in OpenSim.ini using the [Economy] header. See the bottom of the OpenSim.ini.example for more information. * This also fleshes out the Economy API a bit more.
* added NHibernate stanza to the config which reduces our verbosenessSean Dague2008-04-081-0/+7
| | | | | | to reasonable levels
* Update value in OpenSim.ini.example to new DLL name.Jeff Ames2008-04-081-2/+2
|
* * Update code to use patched libsecondlife.dll which removes the problem ↵Justin Clarke Casey2008-04-081-0/+0
| | | | | | | | | where the AssetType enum was 'Primitive' rather than 'Object' * The libsecondlife patch was also applied to libsecondlife itself in r1714 * Many, many thanks to Dr Schofield (IBM) for his help on this :)
* * Updated ODE.NET bindings to the ODE library.Teravus Ovares2008-04-071-0/+0
| | | | | * Fixed some Tapers with Cylinders in the Meshmerizer
* Thank you kindly Diva & KMeisthax for adding the beginningsCharles Krinke2008-04-071-1/+17
| | | | | | of search capability to OpenSim in the form of a configurable module.
* Update Mac OS X ODE binary to opensim-libs r41.Jeff Ames2008-04-061-0/+0
|
* * ODE Library hackery.Teravus Ovares2008-04-052-0/+0
| | | | | * You know the drill if you roll your own ODE. (h ttp://opensimulator.org/wiki/PhysicsEngines )
* Add four nHibernate dll's into bin/Charles Krinke2008-04-044-0/+0
|
* move NullStorage => OpenSim.Data.Null to be consistant withSean Dague2008-04-031-1/+1
| | | | | | where other data storage assemblies are.
* * From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-031-1/+1
| | | | | | | * This patch removes voice code into a region module. This required the implementation of events and other code to allow region modules to register their own caps handlers, and should allow different voice module implementations. * CAVEAT: This does not provide complete voice support, it merely provides the hooks so that it can be plugged in.
* Update OS X libode binary to opensim-libs r36.Jeff Ames2008-04-021-0/+0
|
* change references to OpenSim.DataSean Dague2008-04-021-8/+8
|
* * Updating the version of the ODE library. (big update). The Mac library ↵Teravus Ovares2008-04-022-0/+0
| | | | | | | needs to be updated still. * Adding some XMPP stuff that's incomplete.
* * Make it a little clearer that the voice config options won't actually do ↵Justin Clarke Casey2008-03-311-0/+1
| | | | anything yet
* * From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-03-311-0/+10
| | | | | | | | | * (and Ansgar/Ansi) * Fleshes out the voice stubs to better interact with the viewer CAPS requests - no actual voice support yet! * In his own words "the attached patch enhances the existing voice support by returning a proper voice account user and password and is preparing the config file so that we can specify a SIP server (not yet working). currently the SIP is hardcoded. the next step is to refactor voice support into a region module. working on that. "
* Modify NAnt target in Prebuild to copy .mdb files to bin in debug ↵Jeff Ames2008-03-311-0/+0
| | | | | | | configuration. (bug #55) Use 'mono --debug OpenSim.exe' to get line number output on stack traces.
* Update svn properties.Jeff Ames2008-03-312-0/+0
|
* * Added competely untested MSSQLMapperlbsa712008-03-301-0/+1
| | | | | | | * Added the new mapper to the mapper factory * Made choice of mapper configurable * This means, in hteory, that we can persist avatar appearance on MSSQL as well
* * Updating ODE Libraries to release / dNODEBUGTeravus Ovares2008-03-294-0/+0
| | | | | | * If you compile your own libraries, be sure to follow the updated directions on http://opensimulator.org/wiki/PhysicsEngines * The previous libs are now -debug for people who wish to work on the ODELibrary and want the feedback.
* Add "warnings as errors" support for nant and monodevelop to Prebuild ↵Jeff Ames2008-03-251-0/+0
| | | | (though monodevelop may ignore this).
* Merged changes in Prebuild trunk up to r258 into OpenSim's Prebuild.Jeff Ames2008-03-171-0/+0
| | | | | | Hopefully this should make merging upstream easier. Building with NAnt should still work, but Visual Studio is untested.
* * Change opensim.ini.example guidance on asset_database setting to be ↵Justin Clarke Casey2008-03-131-4/+9
| | | | | | | | | | "local" or "grid" * See OpenSim.ini.example for more details * The old sqlite/mssql settings were redundant and effectively ignored anyway. Hence, there's no need for you to change your current settings, which will still work * In fact, asset_database should probably be moved to [Network] since it's meaningless for standalone installations
* * Change opensim.ini.example to flesh out database *_plugin optionsJustin Clarke Casey2008-03-131-2/+8
| | | | | | * Making each have sqlite (uncommented) and mysql (commented) strings
* * Updated LibSL _packets_.cs to latest revision. AKA New Packets.Teravus Ovares2008-03-121-0/+0
| | | | | | * Added the DataBlockExtended From the Message Template Data Block to the Media Update Request manually. * Set TickCount public from internal (whenever LibSL regenerates _packets_.cs this needs to be done)
* * Applied patch #681 from tyrelbsa712008-03-073-0/+0
| | | | | | * This fixes three broken default assets Thanks, tyre!
* More compiler warning cleanup.Jeff Ames2008-02-291-4/+1
| | | | | Removed verbose flag, since it doesn't do anything any more.
* Backported MACOSX OS identifier into Prebuild.Jeff Ames2008-02-271-0/+0
|
* I keep forgetting that my Linux OpenSim has the wrong version of ↵Tedd Hansen2008-02-241-0/+0
| | | | libopenjpeg-libsl-2.1.2.0.so
* eolTedd Hansen2008-02-241-0/+0
|
* * Reduced size of 'startup complete message' by several thousand lines.Adam Frisby2008-02-231-41/+1
|
* One more: Async LSL command thread is also shared now.Tedd Hansen2008-02-221-6/+4
|
* Better timing of MaintenanceThread's tasks (uses less CPU)Tedd Hansen2008-02-221-14/+17
| | | | | | Updated OpenSim.ini.example
* Fix exception when reading OpenSim.ini file.Jeff Ames2008-02-201-6/+2
|
* Added to OpenSim.ini.example:Tedd Hansen2008-02-191-0/+5
| | | | | | | ; Should avatars in neighbor sims see objects in this sim? see_into_this_sim_from_neighbor=True
* More distinct startup logo + include the link to FAQ.Dalien Talbot2008-02-191-28/+38
|
* A bit more prominent sign of start up completion :-) thanks HashBox for the ↵Dalien Talbot2008-02-181-0/+31
| | | | ASCII!
* Thank you very much, Hashbox for:Charles Krinke2008-02-182-459/+4
| | | | | | | | | | Changed the public IsAdministrator back to protected, now checks Config to see whether it is allowed to run or not. Defaults to false (not allowed). To use add the following to OpenSim.ini [LL-Functions] AllowosConsoleCommand=true
* Back with old libopenjpeg-libsl-2.1.2.0.soTedd Hansen2008-02-171-0/+0
|
* SVN propset thingieTedd Hansen2008-02-172-459/+459
|