Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix issue where only one of multiple attachments on the same attachpoint for ↵ | Justin Clark-Casey (justincc) | 2014-05-01 | 1 | -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 | ||||
* | minor: Correct mistake in terrain flip error message from previous commit ↵ | Justin Clark-Casey (justincc) | 2014-04-30 | 1 | -1/+1 |
| | | | | 5d01a1f | ||||
* | minor: Print output in response to terrain console commands on the console ↵ | Justin Clark-Casey (justincc) | 2014-04-30 | 1 | -8/+9 |
| | | | | rather than in the log. | ||||
* | Add "terrain show" console command which outputs terrain height for a given ↵ | Justin Clark-Casey (justincc) | 2014-04-30 | 1 | -0/+22 |
| | | | | | | region co-ordinate. For debug purposes. | ||||
* | BulletSim: non-functional changes to debugging statements and formatting. | Robert Adams | 2014-04-28 | 1 | -2/+1 |
| | |||||
* | Add regression test for terrain fill at two digit height and max ll height. | Justin Clark-Casey (justincc) | 2014-04-25 | 2 | -1/+76 |
| | |||||
* | Adjust permissions to work hand in hand with what the viewer believes they are. | Melanie | 2014-04-25 | 1 | -7/+7 |
| | | | | This fixes the issue of "Show in Search" seeming resetting at random. | ||||
* | Changed how UserProfile performs a fallback call using the OpenProfile API, ↵ | Oren Hurvitz | 2014-04-24 | 1 | -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 Hurvitz | 2014-04-24 | 2 | -193/+1 |
| | | | | both the Simulators and Robust | ||||
* | Show Group name when land is group-owned | Dev Random | 2014-04-23 | 1 | -7/+28 |
| | |||||
* | minor: Remove unused System.Linq reference and use ParcelFlags.None instead ↵ | Justin Clark-Casey (justincc) | 2014-04-23 | 1 | -2/+1 |
| | | | | of 0 from previous commit cb1f28 | ||||
* | Prevent sending Land Properties for unprivileged users | Dev Random | 2014-04-23 | 1 | -5/+8 |
| | |||||
* | Dynamic textures shouldn't be saved in the assets service (only in the ↵ | Oren Hurvitz | 2014-04-23 | 1 | -2/+2 |
| | | | | simulator cache) | ||||
* | Hypergrid: don't send Local assets to other grids | Oren Hurvitz | 2014-04-23 | 1 | -35/+34 |
| | | | | This commit also contains other changes, but they're all just for clarity. The only actual behavior change is to avoid Posting local assets. | ||||
* | Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵ | Oren Hurvitz | 2014-04-23 | 5 | -67/+1 |
| | | | | because it's Obsolete. | ||||
* | Eliminated many warnings | Oren Hurvitz | 2014-04-23 | 10 | -11/+13 |
| | |||||
* | Changed the maximum asset name and description lengths to constants. Also, ↵ | Oren Hurvitz | 2014-04-22 | 1 | -0/+2 |
| | | | | pre-truncate the description of dynamic textures. | ||||
* | Fixed: when a user logged-in, sometimes he didn't get notified of the Online ↵ | Oren Hurvitz | 2014-04-21 | 2 | -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. | ||||
* | Better error-handling when storing assets: recognize that 'null' is an error ↵ | Oren Hurvitz | 2014-04-20 | 2 | -12/+9 |
| | | | | value | ||||
* | Fixed: once a user has rezzed an object, they could then duplicate it as ↵ | Oren Hurvitz | 2014-04-20 | 1 | -3/+5 |
| | | | | much as they wanted even if the parcel's permissions had since been changed to disallow rezzing | ||||
* | Fixed: if a user belonged to the parcel's group then he was allowed to rez ↵ | Oren Hurvitz | 2014-04-20 | 1 | -16/+16 |
| | | | | object in the parcel even if the flag "Create Objects by Group" was disabled | ||||
* | Fixed: the parcel flag "Allow Scripts from Group" should only check if the ↵ | Oren Hurvitz | 2014-04-20 | 3 | -12/+17 |
| | | | | | | parcel has a Group set; it doesn't have to be *deeded* to the group Also some cleanup of the use of Group ID's (with no change to functionality). | ||||
* | Catch empty url error | BlueWall | 2014-04-19 | 1 | -0/+3 |
| | |||||
* | In teleports, when sending the Source region, set its ServerURI to the ↵ | Oren Hurvitz | 2014-04-13 | 2 | -2/+7 |
| | | | | Gatekeeper URI (which is used with Regions); not the Home URI (which is used with Users) | ||||
* | Allows to sell objects on a parcel of land together with that parcel of ↵ | Snoopy Pfeffer | 2014-04-10 | 1 | -0/+44 |
| | | | | land. The objects that are sold together with the parcel of land need to fulfill the following preconditions: owned by the current parcel owner, not set to a group, transferrable. This feature does not work for group owned parcels or land bought by a group. | ||||
* | In teleports, pass the source region to the destination (similar to an HTTP ↵ | Oren Hurvitz | 2014-04-09 | 4 | -18/+25 |
| | | | | referrer) | ||||
* | Improved error messages when a teleport fails. The viewer's dialog already ↵ | Oren Hurvitz | 2014-04-08 | 1 | -4/+4 |
| | | | | says "Teleport failed", so adding "Teleport refused" is redundant. | ||||
* | Allow invalidating the users cache | Oren Hurvitz | 2014-04-08 | 2 | -2/+15 |
| | |||||
* | When sending QueryAccess to a region, also send the user's Home URI | Oren Hurvitz | 2014-04-07 | 3 | -7/+10 |
| | |||||
* | Refactored: use Scene.GetAgentHomeURI() to get the Home URI of a user | Oren Hurvitz | 2014-04-07 | 3 | -14/+3 |
| | |||||
* | Fixed: during a teleport we always sent the error "The teleport destination ↵ | Oren Hurvitz | 2014-04-06 | 2 | -7/+1 |
| | | | | | | could not be found" to the client. This happened on both success and failure. On successful teleports this error wasn't actually shown to the user. But on failed teleports this error could hide the true cause of the failure. For example, attempting to use a Landmark that's more than 4095 regions away would result in two warnings appearing in the viewer: "Region too far" and "Destination could not be found". The second message hid the first one, so it wasn't obvious to the user what is actually the problem. | ||||
* | When preparing a Hypergrid teleport, tell the receiving grid which user is ↵ | Oren Hurvitz | 2014-04-06 | 3 | -6/+23 |
| | | | | | | 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. | ||||
* | Pass the correct position to QueryAccess() instead of UUID.Zero (it was ↵ | Oren Hurvitz | 2014-04-06 | 1 | -1/+1 |
| | | | | wrong in one place) | ||||
* | remove some whitespace that snuck in with last patch | Michael Cerquoni | 2014-04-03 | 1 | -2/+2 |
| | |||||
* | Add Varregion support to Terragen Handler | Dev Random | 2014-04-03 | 1 | -28/+23 |
| | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com> | ||||
* | Move new Estate commands to OpenSim.cs | Dev Random | 2014-04-03 | 2 | -188/+21 |
| | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com> | ||||
* | When teleporting using Hypergrid, show more informative error messages in ↵ | Oren Hurvitz | 2014-04-03 | 3 | -11/+39 |
| | | | | case of error | ||||
* | BulletSim: make avatar physical shape to be a rectangle rather than | Robert Adams | 2014-04-02 | 1 | -5/+1 |
| | | | | | | | | a capsule. Set the default to be the rectangle shape and adjust the parameters in OpenSimDefaults.ini for the new shape. The rectangle shape will perform better and avatar height can be computed more accurately. | ||||
* | minor: Fix warning in AvatarFactoryModule | Justin Clark-Casey (justincc) | 2014-04-03 | 1 | -1/+1 |
| | |||||
* | Wrap contents of ETM.CrossAgentToNewRegionAsync() in try/catch to avoid a ↵ | Justin Clark-Casey (justincc) | 2014-04-03 | 1 | -13/+19 |
| | | | | | | failure terminating simulators running on Windows In relation to http://opensimulator.org/mantis/view.php?id=7050 | ||||
* | Added assets service method AssetsExist(), which returns whether the given ↵ | Oren Hurvitz | 2014-04-02 | 4 | -20/+83 |
| | | | | | | list of assets exist. This method is used to optimize sending assets with embedded assets: e.g., when a Hypergrid visitor takes an item into the inventory. | ||||
* | fix orphaned code in sun module per mantis 7068 | Mic Bowman | 2014-04-01 | 1 | -5/+5 |
| | |||||
* | remove EstateManagmentCommands.m_commander that has been unused for some time | Justin Clark-Casey (justincc) | 2014-04-02 | 1 | -2/+0 |
| | |||||
* | Console command to rename Estate | Dev Random | 2014-04-02 | 2 | -221/+325 |
| | |||||
* | Console command to change Estate owner | Dev Random | 2014-03-29 | 2 | -3/+157 |
| | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com> | ||||
* | Removed default timeout when starting scripts after Load OAR | Oren Hurvitz | 2014-03-28 | 1 | -2/+2 |
| | |||||
* | Merge branch 'master' into m_test | BlueWall | 2014-03-27 | 2 | -6/+12 |
|\ | |||||
| * | refactor: Actually use MaptileStaticFile in RegionInfo rather than having ↵ | Justin Clark-Casey (justincc) | 2014-03-26 | 1 | -4/+10 |
| | | | | | | | | both a public field and a get property | ||||
| * | - Increased the threadpool timeout to 10 minutes | Oren Hurvitz | 2014-03-26 | 1 | -2/+2 |
| | | | | | | | | - Changed a few places that launch long-lasting threads to skip the timeout altogether | ||||
* | | Fix issue with user picks creation. The snapshot id is UUID.Zero in new parcels. | BlueWall | 2014-03-25 | 1 | -6/+0 |
| | |