aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()Kunta Kinte2014-05-061-99/+79
|
* Show more meaningful error messages when failed to give an item to another userOren Hurvitz2014-05-061-6/+5
|
* Fix issue where only one of multiple attachments on the same attachpoint for ↵Justin Clark-Casey (justincc)2014-05-011-0/+7
| | | | | | | | NPCs would be seen by other viewers. It appears that at least Singularity 1.8.5 (but probably others) rely on attachment FromItemIDs being different to display more than one. This commit resolves this by generating random IDs instead of always using UUID.Zero for NPCs. Resolves http://opensimulator.org/mantis/view.php?id=7110
* Changed how UserProfile performs a fallback call using the OpenProfile API, ↵Oren Hurvitz2014-04-241-30/+37
| | | | because now JsonRpcRequest() returns an error result instead of throwing an exception
* Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz2014-04-242-193/+1
| | | | both the Simulators and Robust
* Eliminated many warningsOren Hurvitz2014-04-232-1/+3
|
* Fixed: when a user logged-in, sometimes he didn't get notified of the Online ↵Oren Hurvitz2014-04-212-2/+24
| | | | | | | | status of friends, so they continued to appear Offline. This happened because these notifications (the UDP packets) can only be sent to Root Agents. But the notifications were done in OnClientLogin(), at which point the client is still a Child Agent. Since a FireAndForget is used, it became a race condition as to whether the packets would be sent before or after the client became a Root Agent. To fix this, we now only send the notifications once the client becomes a Root Agent for the first time.
* Catch empty url errorBlueWall2014-04-191-0/+3
|
* Refactored: use Scene.GetAgentHomeURI() to get the Home URI of a userOren Hurvitz2014-04-071-5/+1
|
* When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz2014-04-061-1/+7
| | | | | | entering the grid. This can affect which region to use. E.g., returning users may be allowed to enter any region, whereas users from other grids will have to enter a gateway region. Previously per-user decisions were only made later, but by then it's too late to change which region the user enters.
* When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz2014-04-031-1/+12
| | | | case of error
* minor: Fix warning in AvatarFactoryModuleJustin Clark-Casey (justincc)2014-04-031-1/+1
|
* Fix issue with user picks creation. The snapshot id is UUID.Zero in new parcels.BlueWall2014-03-251-6/+0
|
* Move JsonRpc request code out for general availabilityBlueWall2014-03-251-173/+19
|
* In Core Profiles: as a fallback, try to get profiles from foreign grids ↵Oren Hurvitz2014-03-252-2/+219
| | | | | | using the OpenProfile protocol Resolves http://opensimulator.org/mantis/view.php?id=6954
* Run slow operations in a separate thread, instead of using FireAndForget ↵Oren Hurvitz2014-03-251-1/+1
| | | | | | (which has a 1-minute timeout) Resolves http://opensimulator.org/mantis/view.php?id=6945
* Refactored Load IAR: created a generic mechanism to modify the SOG's as they ↵Oren Hurvitz2014-03-241-47/+19
| | | | | | are being loaded Resolves http://opensimulator.org/mantis/view.php?id=6942
* Fix negative stat for Active ScriptsDev Random2014-03-221-2/+3
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Reverting "Set default name for mute list" that was pushed by mistake.Kevin Cozens2014-03-221-1/+1
| | | | This reverts commit 58def34dbe01af970ca0cbd7362aa24cd85fc43d.
* Reverting "Pass method to offline.php" commit that was pushed by mistake.Kevin Cozens2014-03-221-2/+2
| | | | This reverts commit fe16a72a9a10c5b9057351f798d9098ada3002ae.
* Pass method to offline.php using ?blah instead of /blah/. Avoids issue with ↵Kevin Cozens2014-03-221-2/+2
| | | | Apache web servers running PHP via CGI.
* Set default name for mute list module as shown in OpenSim.ini.exampleKevin Cozens2014-03-221-1/+1
|
* Prevent adding a land object if it overlaps any existing objects that have ↵Justin Clark-Casey (justincc)2014-03-062-11/+25
| | | | | | | | not had their bitmaps adjusted. This is to prevent an immediate problem in http://opensimulator.org/mantis/view.php?id=7035 where a development code bug occasionally overlays all the existing parcels with a blank parcel owned by the estate manager and to gather more data. My guess is that this parcel is being created by the new code in LandManagementModule.GetLandObject(), probably some race between threads since this only happens occasionally. Adds regression tests for this case and for parcel subdivide.
* Improve regression test TestSetAppearance()Justin Clark-Casey (justincc)2014-02-241-42/+69
|
* Re-enable regression TestSaveBakedTextures()Justin Clark-Casey (justincc)2014-02-241-4/+2
|
* Stop mesh avatars that specify the alpha texture in their bake slots from ↵Justin Clark-Casey (justincc)2014-02-242-38/+67
| | | | | | | causing the simulator to continually request that they rebake This is because the alpha texture is not in the cache, we must continue to have the fallback of looking for these and other persisted bakes in the asset service. Relates to http://opensimulator.org/mantis/view.php?id=6927
* minor: Add some method doc to AFM,SetAppearanceAssets()Justin Clark-Casey (justincc)2014-02-201-0/+6
|
* For now, do not replacing missing wearables with default wearables if itme ↵Justin Clark-Casey (justincc)2014-02-201-144/+190
| | | | | | | | details cannot be found. This is causing many issues on OSGrid, possibly due to teleporting timing differences with simulators hosted in different places or HG teleports Added a bit more logging for debug purposes. See http://opensimulator.org/mantis/view.php?id=6939
* Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-02-142-2/+21
|\
| * Change warns associated with UserAgentServiceConnector to debugs, as this is ↵Justin Clark-Casey (justincc)2014-02-142-2/+2
| | | | | | | | | | | | not necessarily a problen with the source simulator (e.g. someone else's remote simulator cannot be contacted). This is Oren Hurvitz's second patch from http://opensimulator.org/mantis/view.php?id=6956 with a small amount of correction
| * If calls to UserAgentServiceConnector fail then throw an exception. This ↵Justin Clark-Casey (justincc)2014-02-142-2/+21
| | | | | | | | | | | | lets the caller decide whether to discard the error or not. This is Oren Hurvitz's 0001 patch from http://opensimulator.org/mantis/view.php?id=6956 but I ended up doing some tweaking to resolve patch application issues.
* | Remove the added whitespace, test concludedMelanie2014-02-041-1/+1
| |
* | Bot testMelanie2014-02-041-1/+1
| |
* | Remove compile error from returning value in void functionRobert Adams2014-02-031-1/+1
| |
* | Add one check for a blank URL because the module wasn't quite sure not to ↵Melanie2014-02-041-1/+3
| | | | | | | | work when unconfigured :|
* | Adding the Avination XBakesModule, the client for the persistent bakes systemMelanie2014-02-041-0/+189
| |
* | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-311-42/+35
|\ \ | |/
| * Make sure Web streams are disposed after useOren Hurvitz2014-01-311-42/+35
| |
* | Merge branch 'master' into varregionRobert Adams2014-01-211-2/+2
|\ \
| * | Materials module: a) Store materials as assets; b) Finalized it (removed the ↵Oren Hurvitz2014-01-201-2/+2
| | | | | | | | | | | | | | | | | | "Demo" label; removed most of the logging); c) Enabled by default Changed UuidGatherer to use 'sbyte' to identify assets instead of 'AssetType'. This lets UuidGatherer handle Materials, which are defined in a different enum from 'AssetType'.
* | | Merge branch 'master' into varregionRobert Adams2013-12-173-92/+543
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | Add new region crossing code to varregion Conflicts: OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs OpenSim/Region/Framework/Scenes/ScenePresence.cs
| * | Fix issue with editing notes for other avatarsBlueWall2013-12-161-2/+2
| | |
| * | Committing the Avination Scene Presence and related texture codeMelanie2013-12-112-90/+474
| |/ | | | | | | | | | | | | | | | | - Parts of region crossing code - New bakes handling code - Bakes now sent from sim to sim without central storage - Appearance handling changes - Some changes to sitting - A number of unrelated fixes and improvements
| * Add support for user preferences (im via email)BlueWall2013-12-061-0/+67
| |
* | varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams2013-12-142-4/+4
| | | | | | | | | | | | Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z. This keeps the downward compatibility and follows the scheme of 'region' and 'world' location naming that is happening in the Util module.
* | Merge branch 'master' into varregionRobert Adams2013-11-241-1/+1
|\ \ | |/
| * minor: Use default(UUID) in rez attachment failure error logging rather than ↵Justin Clark-Casey (justincc)2013-11-151-1/+1
| | | | | | | | | | | | | | (UUID)null Patch from http://opensimulator.org/mantis/view.php?id=6843 Thanks Kira.
* | Merge branch 'master' into varregionRobert Adams2013-11-151-2/+2
|\ \ | |/
| * refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)2013-11-151-2/+2
| | | | | | | | Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
* | Merge branch 'master' into varregionRobert Adams2013-10-161-2/+10
|\ \ | |/