aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Converted logging to use log4net.Jeff Ames2008-02-0510-0/+280
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Reverted MySQLDataStore.cs to not use static mutexes any more, patch didn't ↵Tedd Hansen2008-02-051-4/+5
| | | | | | | work anyway. Added js to OpenSim.ini.example.
* First part of avatar persistence, currently only really works in standalone ↵MW2008-02-041-0/+4
| | | | | | | | | mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed. To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure). This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database. But the work to move the code to one of the grid servers shouldn't be too much.
* * Chat Message format patch from kinoc (#443) Thanks!Adam Frisby2008-02-041-2/+12
|
* * Made sure the excuses are up to date and properly attributed.(pCampBot ↵Teravus Ovares2008-02-031-5/+2
| | | | uses them)
* * Adding the PhysicsCamperBot load testing app to the SVN in it's own ↵Teravus Ovares2008-02-031-0/+463
| | | | | | | folder. You'll have to build it separately to take advantage of it. *read the Readme file*. The bots created by this application roam around amusingly to simulate load. * Be smart, Don't use this on a public grid, lest you get banned permanently.
* * Added Full support for llSetTextureAnim. To ckrinke: Let the fountains ↵Teravus Ovares2008-02-021-0/+0
| | | | | | | | of Wright Plaza flow! * Fixed another bug in LibSL. This is the same version, as before just with a bug fix.
* fixed a timing bug in config re-read. Apparently there is 1000000000 ns in ↵Tedd Hansen2008-02-022-0/+0
| | | | one second...
* Added commands to change config file from console:Tedd Hansen2008-02-023-0/+0
| | | | | | | | | CONFIG SET section key value value value CONFIG GET section key CONFIG SAVE (it saves, but does it save correctly?:) ScriptEngine will react correctly to any config change made while it is running.
* Updated svn properties.Jeff Ames2008-02-022-0/+0
|
* Hopefully fixed MySQL DB crash on startup issue (so we can remove 3 sec wait).Tedd Hansen2008-02-022-0/+0
| | | | | | Added option to try alternate UDP ports if the one configured is in use. UDP packets are now bound to the actual outside IP address and hopefully won't "randomly" select IP on multihomed systems.
* Last patch was a disaster... reset terrain whenever bug occurred. Trying ↵Tedd Hansen2008-02-022-0/+0
| | | | again with some modifications on Mutex.
* And one more patch before sleepTedd Hansen2008-02-021-1/+0
| | | | | This annoying sleep during startup-problem still sometimes causes exceptions, so added some retry...
* Re-enabled AllowedCompilers functionTedd Hansen2008-02-023-0/+1
| | | | | Added notice in OpenSim.ini that config refresh function is disabled
* Almost forgot to check in:Tedd Hansen2008-02-023-0/+0
| | | | | | OpenSim.32BitLaunch.exe is a 32-bit application that loads OpenSim.exe using .Net framework, hence it is JIT-compiled to 32-bit. Use this app to start OpenSim on 64-bit systems (works great on Vista 64 :))
* Bugfixes. Now it even reads configuration before it uses it! ;)Tedd Hansen2008-02-021-3/+3
|
* Added load/unload queue size limitTedd Hansen2008-02-021-0/+12
| | | | | | | Added option to share script load/unload thread between regions Added event execution queue size limit + some bugfixes from all the changes
* Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen2008-02-021-0/+19
| | | | | | | | | | | | OpenSim in 32-bit mode. Added VISUAL BASIC.NET-support //cs, //lsl and //vb as first characters of script will determine what compiler is used. Compile warnings are no longer treated as errors. Script will still run. Added a few useless and useful config options: Write script source to harddisk for debug, Default compile language, Allowed compilers (languages), compile in release or debug mode, clean up old scripts on startup Loads of warnings for incorrect config
* Added some error checking to MaintenanceThread, no-crash (just log) loading ↵Tedd Hansen2008-02-021-5/+22
| | | | of script engines, and support to load multiple script engines
* SCRIPTING STILL BROKENTedd Hansen2008-02-011-2/+19
| | | | | | | | | | | Added comments and regions, restructured code Changed a lot of AppDomain junk from console from using Console.Write to Log.Verbose and set it to #if DEBUG All modules should now refresh their configuration runtime Made all logging in ScriptEngine.Common get script name from actual engine Renamed LSLLongCmdHandler to AsyncLSLCommandManager Added auto-recover with 5 sec throttle for new MaintenanceThread
* SCRIPT SUPPORT IS STILL BROKEN.Tedd Hansen2008-02-011-0/+3
| | | | | | | | | | | | | | Bugfix: Scripts exceeding max and set to be killed were not killed, only removed. Added ability to re-read configuration while OpenSim is running All regions now sharing one MaintenanceThread New MaintenanceThread: - checks for script execution timeout - re-reads config - starts/stops threads if thread active count becomes too high/low compared to config Speed increase on event execution: - Reuse of try{}catch{} blocks - Time calculation on event execution
* Config option to set number of scripts per AppDomainTedd Hansen2008-02-011-0/+8
|
* Added config options:Tedd Hansen2008-02-011-1/+10
| | | | | | ScriptThreadPriority to set script thread priority DeactivateScriptOnTimeout to remove script if it is executing too long
* ExperimentalTedd Hansen2008-02-011-0/+32
| | | | | | Moved DotNetScriptEngine configuration to config file. Added option to share script execution threads between regions.
* * Added more supported feature to particlesystems. While this appears to ↵Teravus Ovares2008-02-011-0/+0
| | | | | | | | have a libsl update... it's really a fix to the libsl version we're already using because of a bug in the particlesystem implementation * Added two new simstat counters in the simstat enum for the RCCS. (I'll find something cool to put in them) * fixed a time waster in ODEPlugin.cs
* Updated ODE lib for OS X (built from opensim-libs r27)Jeff Ames2008-01-301-0/+0
|
* Updating ODE.NET as the version I used possibly caused the slowness.Teravus Ovares2008-01-301-0/+0
|
* * This update restores *nix supportTeravus Ovares2008-01-301-0/+0
| | | | | * This stability optimization is disabled on Apple Computers until the .dylib library is updated.
* * Experimental ODE Update to make ODE more stableTeravus Ovares2008-01-302-0/+0
| | | | | * WARNING: This update will break *nix support. Will be restored in the next revision
* Rewrote svn properties handling script in python. Added more file types.Jeff Ames2008-01-2637-1397/+1397
|
* * Persistent prim inventory script storage is now turned on by defaultJustin Clarke Casey2008-01-231-2/+5
| | | | | | | | | * Persistence of things apart from scripts will be implemented later on - I at least want to do some work with asset server stats so loading can be monitored first. * No MSSQL implementation as of yet * Progress can be followed at http://opensimulator.org/wiki/OpenSim:Prim_Inventory_Persistence * Please let me know if you see issues resulting from this change.
* * 32bit Linux libode updateTeravus Ovares2008-01-131-0/+0
| | | | | * Improves heightfield collisions
* * HeightField handling update in ODE. Should improve the terrain pits. So ↵Teravus Ovares2008-01-131-0/+0
| | | | | | | far, only windows lib updated. Need to do the Linux version. * Update also checked into opensim-libs
* Changed URL in example to avoid RIAA issues.alondria2008-01-121-1/+1
|
* Fill out and add wiki link to OpenSim.ini.example for prim inventory persistenceJustin Clarke Casey2008-01-111-0/+7
|
* * Just an update to the default login formTeravus Ovares2008-01-101-5/+6
|
* * After fighting with it a bit more, Opensim is now compatible with the most ↵Teravus Ovares2008-01-101-1/+1
| | | | | | | | | | recent release client(RC) on the linden labs download page. * Don't forget, you need -loginuri *and* -loginpage * Ex: -loginpage http://10.1.1.2:8002/?method=login -loginuri http://10.1.1.2:8002/ * The ?method=login is important, don't forget to add it * If you customize your http_loginform.html file, be sure to keep the form post address as is.
* Minor spelling change on NotecardsAssetSet.xml. The example notecard should ↵Justin Clarke Casey2008-01-101-0/+0
| | | | now load up properly
* Set svn:eol-style.Jeff Ames2008-01-0937-2304/+2304
|
* * This update enables the web_login method.Teravus Ovares2008-01-091-0/+60
| | | | | * Remember, the client doesn't support web_login to other grids in the current RC, however the next RC will.
* moving Region store for SQLite into the OpenSim.Framework.Data.SQLiteSean Dague2008-01-091-1/+1
| | | | | | | | namespace to mirror what is done with MySQL. This will require a configuration change for people using SQLite for prims which is given as an example in OpenSim.ini.example
* * Added a hashtable based HTTP processor in preparation of the web_login_keyTeravus Ovares2008-01-092-0/+2
| | | | | | | | * Added the web_login_key to the users table * Added happy configurable http error message pages * This update is large enough to have 'awe' value.. so backup your users or weep. * Not tested on MSSQL, even though I added code to update the tables!
* Third part of CharlieO's library rework. We now have library organization! ↵Brian McBee2008-01-098-1095/+163
| | | | Thanks CharlieO!
* More inventory work for CharlieO. Final patch to make it all work yet to come.Brian McBee2008-01-0776-0/+3511
|
* For CharlieO: new folders created for new asset set stuff. Mantis 313Brian McBee2008-01-0662-0/+40
|
* Checked in my own Mono.Addins.dll by mistake. Here is correction.Tedd Hansen2008-01-051-0/+0
|
* Only one queue is used for load/unload of scripts.Tedd Hansen2008-01-051-0/+0
| | | | | So loading/unloading of scripts are now done in same sequence as they are called.
* Changes to ScriptServer to (hopefully) make it compile on both .Net and Mono.Tedd Hansen2008-01-051-1/+1
| | | | | Some debug info for startup added to find bugs. ++
* Full .dll-name in config option for ScriptEngine. Loading only scriptengine ↵Tedd Hansen2008-01-021-0/+6
| | | | | | | specified in config. ScriptServer will still not start!
* * You can add and remove a friend in standalone now within the same ↵Teravus Ovares2008-01-011-1/+1
| | | | | | | | simulator. It saves. * You can add and remove a friend in grid mode now within the same simulator. It doesn't save yet. * I got rid of Mr. OpenSim as a friend.. he bothers me /:b...