aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-05-06Revert "fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()"Justin Clark-Casey (justincc)1-79/+99
There is a problem here with infinite recursion, but this patch loses the 'hunting' behaviour where the code will attempt multiple lookups if the avatar is teleporting rapidly around different simulators. This patch only does a single lookup before giving up. This reverts commit cecb446e0e91ede0b05ea9cf40c1313782241f3d.
2014-05-06Change version flavour to RC1. Make version number more normal "0.8" rather ↵Justin Clark-Casey1-2/+2
than "0.8.0"
2014-05-06Console commands for Estate MgmtDev Random3-0/+179
2014-05-06new version of patch to add default-user switch new version :qw :wq updated ↵Matt Lehmann1-0/+2
version of default user switch for load oar :q :q
2014-05-06updated version of default user switch for load oar :q :qMatt Lehmann3-6/+43
2014-05-06fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()Kunta Kinte1-99/+79
2014-05-06Fix avatars going to corner of region when they are sitting on a child prim ↵Vegaslon1-1/+1
and the prim is deleted.
2014-05-06Change llUnSit to be able to unsit any avatar that is currently sat on the ↵Vegaslon1-1/+2
object, not just avatars sitting on the sittarget in the object containing the script. or when the object is owned by the parcel, land group or estate owner.
2014-05-06Mantis 7146 The lsl function llGetMassMKS is not implementedTalun3-0/+13
This patch implements llGetMassMKS as it is described in the wiki http://wiki.secondlife.com/wiki/LlGetMassMKS
2014-05-06Better error handling in AssetServerPostHandler. Invalid XML causes an ↵Oren Hurvitz1-1/+1
InvalidOperationException, not an XmlException
2014-05-06When moving an item from a prim to a user's inventory, don't delete the item ↵Oren Hurvitz1-4/+25
from the prim until it was successfully copied to the user
2014-05-06Show more meaningful error messages when failed to move an item from a prim ↵Oren Hurvitz4-29/+56
to a user's inventory. Also, actually show the error to the user in more cases. (Previously, sometimes the operation failed without telling the user anything.)
2014-05-06Show more meaningful error messages when failed to give an item to another userOren Hurvitz6-29/+59
2014-05-06Log whenever an inventory operation is blocked because the item/folder isn't ↵Oren Hurvitz1-8/+52
in the Suitcase
2014-05-06- When sending the "My Suitcase" folder to the client, always claim it has ↵Oren Hurvitz4-10/+17
Folder Type 8. (Previously we had used Folder Type -1 in one place, and LLClientView didn't even bother changing Folder Type 100 to anything else.)
2014-05-06Added range-checking for the parameters to PRIM_POINT_LIGHT (used in ↵Oren Hurvitz1-3/+3
llSetLinkPrimitiveParamsFast() )
2014-05-04Please note: older simulators (0.7.6) still send the info about gzip in ↵Diva Canto1-2/+2
ContentType
2014-05-03Added a optional key between the group remote connectors, sim and service. ↵Diva Canto3-5/+44
This allows for more secure group services, to be used by collections of mutually-trusting grids.
2014-05-02minor: Comment out Cacheitems debug log lines for nowJustin Clark-Casey (justincc)1-6/+6
2014-05-01Mantis 7144 missing ATTACH_AVATAR_CENTER constantTalun1-0/+2
This patch adds ATTACH_AVATAR_CENTER and ATTACH_NECK
2014-05-01Fix issue where only one of multiple attachments on the same attachpoint for ↵Justin Clark-Casey (justincc)4-7/+74
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
2014-04-30minor: Use Vector2.Zero constant and only set in condition branch where it ↵Justin Clark-Casey (justincc)1-1/+2
was missing in TryParseConsole2DVector(). xbuild still compiles.
2014-04-30Change XEngine to call StateChange rather than RemoveScript on state changesMelanie1-1/+1
2014-04-30Add the "StateChange" function to the async comand manager to differentiateMelanie1-1/+23
between state changes and script exit/reset.
2014-04-30Assign value to 'vector' to fix building under xbuild and MonodevelopBlueWall1-0/+1
2014-04-30minor: Correct mistake in terrain flip error message from previous commit ↵Justin Clark-Casey (justincc)1-1/+1
5d01a1f
2014-04-30minor: Print output in response to terrain console commands on the console ↵Justin Clark-Casey (justincc)1-8/+9
rather than in the log.
2014-04-30Add "terrain show" console command which outputs terrain height for a given ↵Justin Clark-Casey (justincc)2-13/+87
region co-ordinate. For debug purposes.
2014-04-29minor: convert back some tabs to spaces that got into ScenePresence via ↵Justin Clark-Casey (justincc)1-4/+4
recent patch bc969a6b
2014-04-29Restore terrain height and flying adjustments that were eliminated from ↵Justin Clark-Casey (justincc)1-28/+28
non-megaregion paths in ScenePresence.MoveToTarget() by recent patch bc969a6b
2014-04-29Add regression test for NPC movement on a variable region.Justin Clark-Casey (justincc)2-10/+84
Extends basic physics to allow av movement on a varregion (basic physics is only really useful for regression test purposes).
2014-04-29Improved HTTP loggingOren Hurvitz3-5/+9
2014-04-29Fixed the UpdateAgentInformation CAP: the viewer expects the simulator to ↵Oren Hurvitz1-6/+7
echo back the maturity that it sent Without this change, attempts to change the maturity rating in the viewer's Preferences don't work.
2014-04-28BulletSim: non-functional changes to debugging statements and formatting.Robert Adams2-8/+7
2014-04-28BUlletSim: move safeynet ground plane to lower altitude. Define new BulletSimRobert Adams2-2/+6
parameter 'TerrainGroundPlane' which defaults to -500. BulletSim had assumed altitudes never went negative but that is not true. The ground plane is just a safety net so things wouldn't fall to infinity.
2014-04-28Removed dependency on Linq in OpenProfileClientOren Hurvitz1-1/+0
2014-04-25Add missing [Test] decorator to actually get the basic scene creation test ↵Justin Clark-Casey (justincc)1-0/+1
from 2227f51b to run
2014-04-25Add basic regression test for creating a var regionJustin Clark-Casey (justincc)2-1/+25
2014-04-25Add basic sanity regression test for creating a scene.Justin Clark-Casey (justincc)1-0/+7
2014-04-25Add regression test for terrain fill at two digit height and max ll height.Justin Clark-Casey (justincc)2-1/+76
2014-04-25Fix issue where terrain height values > 327 caused chaotic spiked terrain.Justin Clark-Casey (justincc)2-19/+19
Per http://wiki.secondlife.com/wiki/Tips_for_Creating_Heightfields_and_Details_on_Terrain_RAW_Files#Notes_for_Creating_Height_Field_Maps_for_Second_Life terrain heights up to 508 are possible on the LL grid (and were available on previous releases of OpenSimulator). The obvious way to allow both this and equivalent -z values, is to rewiden the internal terrain height storage from short to int. The memory tradeoff is most noticeable on the maximum 8192x8192 var region (equiv to 1024 normal regions), where it adds 128mb to resident use (128k on a normal region) This is still better than the double used in previous releases. This does not affect physics or data storage since they already use float and double respectively. This may not be the final solution if we actually want to sacrifice -z, >327 or something else. Relates to http://opensimulator.org/mantis/view.php?id=7076
2014-04-25Restore overload mode accidentally disabled in a prior commit. Add a newMelanie2-2/+10
config option, LogOverloads, to log when a thread pool overload occurs. This option defaults to "True" because the logging data is useful for diagnosing threading issues.
2014-04-25Adjust permissions to work hand in hand with what the viewer believes they are.Melanie1-7/+7
This fixes the issue of "Show in Search" seeming resetting at random.
2014-04-24Fixes a long-standing bug related to god-mode change ownership of objects ↵Diva Canto2-4/+6
permissive, where the permissions of the children prims' inventory items were not changed. As a consequence, we couldn't control some of the objects imported via HG and OARs even in god mode.
2014-04-24Revert "When linking a Hypergrid region, set the region's flags on the ↵Oren Hurvitz1-4/+4
in-memory GridRegion immediately." This reverts commit 463d0b2f8f0cd5f02c14391b763680b23c16e438.
2014-04-24When linking a Hypergrid region, set the region's flags on the in-memory ↵Oren Hurvitz1-8/+4
GridRegion immediately. (When using llTeleportAgent() this *specific* object is used for the teleport, so it should have the correct flags.)
2014-04-24- Created a standard function to send XML-RPC requests, which logs them like ↵Oren Hurvitz3-138/+145
we do for other types of HTTP activity. - Changed OpenProfileClient to use the new XML-RPC sending function - Improved logging in WebUtil
2014-04-24Changed how UserProfile performs a fallback call using the OpenProfile API, ↵Oren Hurvitz1-30/+37
because now JsonRpcRequest() returns an error result instead of throwing an exception
2014-04-24Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz2-1/+2
both the Simulators and Robust
2014-04-24When sending JSON-RPC calls (for UserProfile), use WebUtil instead of ↵Oren Hurvitz5-126/+94
constructing the HTTP requests manually. This allows the calls to be logged when using "debug http all 6".