Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2008-12-19 | minor: Remove some serialization module scene wrappers | Justin Clarke Casey | 1 | -5/+20 | |
2008-12-19 | * refactor: Rename IRegionSerialiser and move into interfaces namespace | Justin Clarke Casey | 1 | -2/+2 | |
2008-10-27 | * cleanup: Update the avatar factory (appearance module) in ↵ | Justin Clarke Casey | 2 | -281/+0 | |
Region/Environment and use that instead of the Region/Modules/AvatarFactory * Remove the AvatarFactory dll | |||||
2008-10-17 | * Apply a modified version of http://opensimulator.org/mantis/view.php?id=2290 | Justin Clarke Casey | 1 | -1/+0 | |
* This allows multiple user profile providers to be specified in OpenSim.ini separated by commas * If multiple providers are specified then a request for a user profile will query each in turn until the profile is either found or all have been queried * Unfortunately I don't believe this order can currently be specified, which if true is something that will need to be fixed. * Thanks to smeans for the original patch. | |||||
2008-09-06 | Mantis #2133 | Melanie Thielker | 1 | -1/+1 | |
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml | |||||
2008-09-06 | * This is the fabled LibOMV update with all of the libOMV types from JHurliman | Teravus Ovares | 2 | -9/+9 | |
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke. | |||||
2008-07-23 | Update svn properties. Formatting cleanup. Remove a compiler warning. | Jeff Ames | 1 | -6/+6 | |
2008-07-10 | Mantis#1391. Thank you kindly, Phrearch for a patch that: | Charles Krinke | 1 | -3/+5 | |
Solves svnbackup svn add directory failure. | |||||
2008-06-28 | Extracted the Avatar appearance functions out of the IUserService interface ↵ | MW | 1 | -3/+3 | |
and moved them into a IAvatarService Although "out of the box", there is no actual functional change to behavior | |||||
2008-06-28 | plumbing for multiple inventory servers. Mostly done on the region server side. | MW | 1 | -0/+1 | |
TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl) | |||||
2008-06-27 | last round of warning squashing. calling it a day now. | Dr Scofield | 2 | -13/+13 | |
2008-06-11 | Mantis 1370. Thanks lulurun for the patch | Johan Berntsson | 1 | -2/+3 | |
2008-05-28 | Formatting cleanup. | Jeff Ames | 1 | -2/+2 | |
2008-05-28 | Change a couple Windows directory separators in SVN module to be platform ↵ | Jeff Ames | 1 | -2/+2 | |
agnostic. | |||||
2008-05-25 | Update svn properties. Formatting cleanup. | Jeff Ames | 1 | -5/+5 | |
2008-05-22 | don't trust appearance assetid, instead do an inventory | Sean Dague | 1 | -31/+52 | |
lookup any time we get it from the server. This should preventent unwearable appearance. | |||||
2008-05-22 | catch case where avatar might have been child agent | Sean Dague | 1 | -1/+6 | |
2008-05-21 | Clean out some crufty in AvatarFactoryModule | Sean Dague | 1 | -180/+6 | |
Fix RequestUpdateInventoryItem so that asset changes generate a new asset, which is needed for editing appearance to do the right thing. Persistant appearance seems to work after this, except you need to rebake textures some times. | |||||
2008-05-21 | this removes use of the mapper for wearables, and I can confirm things | Sean Dague | 1 | -0/+5 | |
get saved to the database. There are still issues on wearing things after a cleared cache that I'm looking at now. | |||||
2008-05-20 | attempt to fix mysql mapper usage | Sean Dague | 1 | -1/+7 | |
2008-05-20 | Add copyright notices. | Jeff Ames | 5 | -10/+143 | |
Fix spelling typo (Thanks ChrisDown for pointing this out) | |||||
2008-05-19 | fix crash in standalone mode for initial appearance setup | Sean Dague | 1 | -1/+4 | |
2008-05-19 | i can haz pantz? | Sean Dague | 1 | -101/+103 | |
You sure can. This change set restores pants (and the rest of the default appearance) in grid mode. The root issue had to do with serializing multi-faced textures to the grid server. This also restores the lookup path through the avatar factory module, as that seems the reasonable place to have it live. Some clean up patches are coming later as well, plus testing on standalone, but this should be in a good kicking around state for grid users. | |||||
2008-05-18 | Formatting cleanup, minor refactoring. Fixed some comparisons of value ↵ | Jeff Ames | 1 | -4/+4 | |
types and null. | |||||
2008-05-17 | while this doesn't fix the initial no pants issue in grid (which still ↵ | Sean Dague | 1 | -28/+41 | |
baffles me) it does make setting appearance in grid stick. | |||||
2008-05-16 | move AppearanceTableMapper to OpenSim.Data.Base. The mapper | Sean Dague | 1 | -241/+0 | |
stuff should probably be collapsed soon, as it takes up 4 assemblies now. | |||||
2008-05-16 | Minor cleanup. | Jeff Ames | 1 | -1/+1 | |
2008-05-16 | Formatting cleanup. | Jeff Ames | 4 | -19/+19 | |
2008-05-16 | appearance now survives logout. Tommorrow will involve moving | Sean Dague | 1 | -29/+19 | |
the MSSQL and MYSQL mappers back in under datastores and looking at doing gid bits for this | |||||
2008-05-15 | minor refactor of some properties for readability | Sean Dague | 2 | -6/+6 | |
2008-05-11 | * Added NPCModule and NPCAvatar classes for NPCs. Primitive, but we can grow ↵ | Adam Frisby | 1 | -2/+0 | |
them out. * Fix for Scene.Inventory.cs - It assumes every entity at startup is a SceneObjectGroup. (Actually, this shouldn't have compiled[!] without a warning.) * Fix for LandManager at startup - it assumes there's a land channel when perhaps there isnt. (Bug that needs another refactor to fix. [Mike - I've assigned a ticket to you about this]) | |||||
2008-05-09 | Update svn properties. | Jeff Ames | 3 | -105/+105 | |
2008-05-08 | * Reduced sleep durations in a number of files. | Adam Frisby | 1 | -1/+2 | |
2008-05-08 | * Some refactorings. | Adam Frisby | 3 | -0/+105 | |
* Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module. | |||||
2008-05-03 | * Refactor: Renaming item and folder tree search methods to have Find*() ↵ | Justin Clarke Casey | 1 | -1/+2 | |
prefixes | |||||
2008-05-01 | * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵ | Adam Frisby | 1 | -1/+1 | |
with namespaces. | |||||
2008-04-30 | * Sometimes you know, you do something really stupid. | Adam Frisby | 2 | -3/+3 | |
* This is one of those times (should fix build) | |||||
2008-04-23 | Update svn properties. | Jeff Ames | 1 | -79/+79 | |
2008-04-22 | * Committing new terrain plugin effects system. Loads DLLs in /bin/Terrain/ ↵ | Adam Frisby | 1 | -0/+80 | |
as terrain module extensions. Committing sample plugin library. * prebuild.xml changes. | |||||
2008-04-21 | * Various compiler warning cleanups. | Adam Frisby | 1 | -11/+11 | |
2008-04-21 | * Formatted ExportSerialiserModule and SvnBackupModule | Adam Frisby | 1 | -69/+72 | |
* Added a form of GZip compression support to object.xml files produced by exportserialiser. Will look towards standard GZip support. File compression seems to be highly worthwhile reducing a 1.5mb sim state to 62kb. | |||||
2008-04-21 | * Optimised using statements and namespace references across entire project ↵ | Adam Frisby | 5 | -52/+52 | |
(this took a while to run). | |||||
2008-04-21 | * Added support for periodic autosaves - added to SvnBackupModule. Will ↵ | Adam Frisby | 1 | -8/+30 | |
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 | |||||
2008-04-20 | * Added some more fixes, refactored SVNModule slightly. | Adam Frisby | 1 | -12/+31 | |
2008-04-20 | * Added support for new "svn load-region <region name> [svn revision]" ↵ | Adam Frisby | 1 | -0/+44 | |
command to SVN Backup Module. | |||||
2008-04-20 | * Added experimental "svn load <revision>" command to allow you to load a ↵ | Adam Frisby | 1 | -7/+38 | |
region from a specified SVN revision. Potentially useful for rollbacks. | |||||
2008-04-20 | * Fixed three compiler warnings introduced in the previous commit. | Adam Frisby | 1 | -1/+1 | |
2008-04-20 | * Various SvnBackupModule fixes. | Adam Frisby | 1 | -1/+23 | |
2008-04-19 | * Fix build break in previous revision | Justin Clarke Casey | 1 | -1/+1 | |
2008-04-19 | * Several fixes for SvnBackupModule | Adam Frisby | 1 | -21/+53 | |
* SVNBackup module now works correctly when you have more than one region. * Various textual and feature improvements, including new 'ImportOnStartup' option for OpenSim.ini (place in [SVN] section) |