| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
like copy-paste items in inventory.
|
|
|
|
|
| |
staircases. This change is required because of the change in the
avatar default shape from the capsule to the rectangle.
|
|
|
|
|
|
| |
currently being used as a flag to orchestrate destination simulator threads on teleport.
If not reset, it's possible that teleports back and forth between simulators may not restart scripts in attachments.
|
|
|
|
|
|
|
| |
to restart attachment scripts before the source simulator's SP.UpdateAgent() thread had added them.
This commit changes the order of code so that attachments are re-added before the CompleteMovement() thread is released.
Relates to http://opensimulator.org/mantis/view.php?id=7148
|
|
|
|
| |
EstateManagementModule relating to RAW file uploading.
|
| |
|
|
|
|
|
|
| |
rather than infinite timeout.
This both signals a problem with the URL and eventually frees the thread, rather than hanging indefinitely with no information.
|
|
|
|
|
|
|
|
| |
handle notices to offline users directly as known undeliverable messages rather than discarding or attempting delivery.
Offline notices can still be controlled with the [Messaging] ForwardOfflineGroupMessages setting.
Looks to address more of http://opensimulator.org/mantis/view.php?id=7037
Only for Flotsam now for testing, but if approach works should be possible with core offline notices as well.
|
| |
|
|
|
|
| |
of xmlrpc and core offline IM modules
|
|
|
|
| |
GroupsMessagingModule.ProcessMessageFromGroupSession()
|
|
|
|
| |
assets associated with foreign users were being missed.
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| |
| |
| |
| | |
version of default user switch for load oar :q :q
|
| | |
|
| | |
|
| |
| |
| |
| | |
and the prim is deleted.
|
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| | |
This patch implements llGetMassMKS as it is described in the wiki
http://wiki.secondlife.com/wiki/LlGetMassMKS
|
| |\ |
|
| | |
| | |
| | |
| | | |
from the prim until it was successfully copied to the user
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.)
|
| | | |
|
| | |
| | |
| | |
| | | |
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.)
|
| | |
| | |
| | |
| | | |
llSetLinkPrimitiveParamsFast() )
|
| |/ |
|
|/
|
|
|
|
|
|
| |
central services of a Robust server EXCEPT assets. In other words, grids where the simulators' assets are kept in one DB and the users' inventory assets
are kept on another. When users rez items from inventory or take objects from world, an HG-like asset copy takes place between the 2 servers, the world asset server and the user's asset server. This makes the simulators independent of the central asset server.
Note that this an advanced configuration and requires some security strengthening coming up.
|
|
|
|
| |
This patch adds ATTACH_AVATAR_CENTER and ATTACH_NECK
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
between state changes and script exit/reset.
|
|
|
|
| |
5d01a1f
|
|
|
|
| |
rather than in the log.
|
|
|
|
|
|
| |
region co-ordinate.
For debug purposes.
|
|
|
|
| |
recent patch bc969a6b
|
|
|
|
| |
non-megaregion paths in ScenePresence.MoveToTarget() by recent patch bc969a6b
|
|
|
|
| |
Extends basic physics to allow av movement on a varregion (basic physics is only really useful for regression test purposes).
|
|
|
|
|
|
| |
echo back the maturity that it sent
Without this change, attempts to change the maturity rating in the viewer's Preferences don't work.
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
from 2227f51b to run
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
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.
|