Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | | |||||
* | | Move JsonRpc request code out for general availability | BlueWall | 2014-03-25 | 1 | -173/+19 |
|/ | |||||
* | In Core Profiles: as a fallback, try to get profiles from foreign grids ↵ | Oren Hurvitz | 2014-03-25 | 2 | -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 Hurvitz | 2014-03-25 | 4 | -7/+7 |
| | | | | | | (which has a 1-minute timeout) Resolves http://opensimulator.org/mantis/view.php?id=6945 | ||||
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim | Justin Clark-Casey (justincc) | 2014-03-25 | 7 | -112/+111 |
|\ | |||||
| * | In Load OAR, correctly restore group-owned objects | Oren Hurvitz | 2014-03-24 | 1 | -3/+3 |
| | | | | | | | | Resolves http://opensimulator.org/mantis/view.php?id=6943 | ||||
| * | In Load OAR: Zero isn't a valid Group ID | Oren Hurvitz | 2014-03-24 | 1 | -4/+2 |
| | | | | | | | | Resolves http://opensimulator.org/mantis/view.php?id=6943 | ||||
| * | During Load OAR, fix the User and Group ID's in objects that are embedded in ↵ | Oren Hurvitz | 2014-03-24 | 1 | -53/+77 |
| | | | | | | | | | | | | assets (previously only rezzed objects were fixed) Resolves http://opensimulator.org/mantis/view.php?id=6942 | ||||
| * | Refactored Load IAR: created a generic mechanism to modify the SOG's as they ↵ | Oren Hurvitz | 2014-03-24 | 1 | -47/+19 |
| | | | | | | | | | | | | are being loaded Resolves http://opensimulator.org/mantis/view.php?id=6942 | ||||
| * | When searching for users, don't add users from the local cache if they have ↵ | Oren Hurvitz | 2014-03-24 | 1 | -2/+3 |
| | | | | | | | | | | | | an invalid UUID Resolves http://opensimulator.org/mantis/view.php?id=6935 | ||||
| * | Trim search queries (for users, groups, etc.). I have found that sometimes ↵ | Oren Hurvitz | 2014-03-24 | 1 | -1/+3 |
| | | | | | | | | | | | | the viewer adds a space at the end, which causes searches to fail. Resolves http://opensimulator.org/mantis/view.php?id=6935 | ||||
| * | Fixed: OnRegionInfoChange was never triggered | Oren Hurvitz | 2014-03-24 | 1 | -3/+0 |
| | | | | | | | | Resolves http://opensimulator.org/mantis/view.php?id=6934 | ||||
| * | Save to database these parcel updates: Force Owner, Abandon Request, ↵ | Oren Hurvitz | 2014-03-24 | 1 | -0/+4 |
| | | | | | | | | | | | | Reclaim. (Previously these updates only changed the parcel in memory) Resolves http://opensimulator.org/mantis/view.php?id=6934 | ||||
| * | Fix negative stat for Active Scripts | Dev Random | 2014-03-22 | 1 | -2/+3 |
| | | | | | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com> | ||||
| * | Reverting "Set default name for mute list" that was pushed by mistake. | Kevin Cozens | 2014-03-22 | 1 | -1/+1 |
| | | | | | | | | This reverts commit 58def34dbe01af970ca0cbd7362aa24cd85fc43d. | ||||
| * | Reverting "Pass method to offline.php" commit that was pushed by mistake. | Kevin Cozens | 2014-03-22 | 1 | -2/+2 |
| | | | | | | | | This reverts commit fe16a72a9a10c5b9057351f798d9098ada3002ae. |