aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/FriendsModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Re-wrote IM that sends the friend request so that it displays the name of ↵Teravus Ovares2008-01-021-3/+10
| | | | the person who sent the request, or (hippos) if it can't find it.
* * You can add and remove a friend in standalone now within the same ↵Teravus Ovares2008-01-011-24/+151
| | | | | | | | 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...
* * Added graceful remote script server connection error handlingTeravus Ovares2007-12-301-2/+2
| | | | | * Removed a friends module test that I had.
* * Fixed References in Prebuild so the project compilesTeravus Ovares2007-12-301-3/+40
| | | | | | * Added Friends List methods to IUserData interface * Created Stub friendslist Database Methods
* * Optimized usingslbsa712007-10-301-2/+2
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* changes to pass nini config object to the modules that getSean Dague2007-10-191-61/+62
| | | | | | loaded so that they may read out any bits they are interested in
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-1/+29
|
* * Gave ModuleLoader some good lovin'lbsa712007-10-101-32/+32
| | | | | | | * Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
* getting all our line endings consistant againSean Dague2007-10-051-4/+4
|
* * Modernized ScriptManager to new interface-based module calls.lbsa712007-09-191-12/+5
| | | | | * 'remove redundant this qualifier' ftw
* fixing me some line endingsSean Dague2007-09-171-40/+40
|
* Some work on Module loading/management.MW2007-09-041-0/+5
| | | | | | | | Some more modules templates classes (hoping that someone will pick some of these and work on implementing them). Early version of the "Dynamic Texture Module", although currently there are no render modules included (so not really functional without them). Added osSetDynamicTextureURL script function, for attaching a dynamic texture to a prim. Some work on the console command handling. Added "change-region <regionname>" and "exit-region" so that after the use of change-region, the commands entered will apply to that region only. Then use exit-region to return to the top level (so commands then function as they did before and either apply to all regions or to the first region) (Note: this hasn't been tested very much)
* Added a Debug method to the Console/log class that has the Conditional ↵MW2007-08-311-1/+26
| | | | | | | attribute (set to "DEBUG"), so we can use that for writing extra debug info to the console. [for anyone who doesn't know about the Conditional attribute, it is a attribute that can be set on a method, and then any call to that method will on be compiled if the terms of that condition are met, ie is this case only if "DEBUG" is true. So its a cleaner implementation of the #if #endif directives]. A few other minor changes.
* Added some place holder classes for various modules.MW2007-08-301-0/+10
Some work on the asset cache, can people please test this. including on one of the public systems so we can see if it causes problems with multiple users.