aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allows to sell objects on a parcel of land together with that parcel of ↵Snoopy Pfeffer2014-04-101-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 Hurvitz2014-04-094-18/+25
| | | | referrer)
* Improved error messages when a teleport fails. The viewer's dialog already ↵Oren Hurvitz2014-04-081-4/+4
| | | | says "Teleport failed", so adding "Teleport refused" is redundant.
* Allow invalidating the users cacheOren Hurvitz2014-04-082-2/+15
|
* When sending QueryAccess to a region, also send the user's Home URIOren Hurvitz2014-04-073-7/+10
|
* Refactored: use Scene.GetAgentHomeURI() to get the Home URI of a userOren Hurvitz2014-04-073-14/+3
|
* Fixed: during a teleport we always sent the error "The teleport destination ↵Oren Hurvitz2014-04-062-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 Hurvitz2014-04-063-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 Hurvitz2014-04-061-1/+1
| | | | wrong in one place)
* remove some whitespace that snuck in with last patchMichael Cerquoni2014-04-031-2/+2
|
* Add Varregion support to Terragen HandlerDev Random2014-04-031-28/+23
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Move new Estate commands to OpenSim.csDev Random2014-04-032-188/+21
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz2014-04-033-11/+39
| | | | case of error
* BulletSim: make avatar physical shape to be a rectangle rather thanRobert Adams2014-04-021-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 AvatarFactoryModuleJustin Clark-Casey (justincc)2014-04-031-1/+1
|
* Wrap contents of ETM.CrossAgentToNewRegionAsync() in try/catch to avoid a ↵Justin Clark-Casey (justincc)2014-04-031-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 Hurvitz2014-04-024-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 7068Mic Bowman2014-04-011-5/+5
|
* remove EstateManagmentCommands.m_commander that has been unused for some timeJustin Clark-Casey (justincc)2014-04-021-2/+0
|
* Console command to rename EstateDev Random2014-04-022-221/+325
|
* Console command to change Estate ownerDev Random2014-03-292-3/+157
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Removed default timeout when starting scripts after Load OAROren Hurvitz2014-03-281-2/+2
|
* Merge branch 'master' into m_testBlueWall2014-03-272-6/+12
|\
| * refactor: Actually use MaptileStaticFile in RegionInfo rather than having ↵Justin Clark-Casey (justincc)2014-03-261-4/+10
| | | | | | | | both a public field and a get property
| * - Increased the threadpool timeout to 10 minutesOren Hurvitz2014-03-261-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.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-254-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/opensimJustin Clark-Casey (justincc)2014-03-257-112/+111
|\
| * In Load OAR, correctly restore group-owned objectsOren Hurvitz2014-03-241-3/+3
| | | | | | | | Resolves http://opensimulator.org/mantis/view.php?id=6943
| * In Load OAR: Zero isn't a valid Group IDOren Hurvitz2014-03-241-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 Hurvitz2014-03-241-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 Hurvitz2014-03-241-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 Hurvitz2014-03-241-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 Hurvitz2014-03-241-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 triggeredOren Hurvitz2014-03-241-3/+0
| | | | | | | | Resolves http://opensimulator.org/mantis/view.php?id=6934
| * Save to database these parcel updates: Force Owner, Abandon Request, ↵Oren Hurvitz2014-03-241-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 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
| |
* | Don't fail to enable permissions modules correctly if there is any leading ↵Justin Clark-Casey (justincc)2014-03-251-1/+2
|/ | | | or trailing whitespace between comma separate module combinations.
* Adding a way to disable/enable the in built Dwell ModuleH-H-H2014-03-201-3/+17
|
* Allow MaptileStaticFile path to be set to anywhere and not force it to ↵Michael Cerquoni2014-03-191-3/+3
| | | | bin/maptiles
* Allow Region specific static maptiles to be loaded from file.Jak Daniels2014-03-181-18/+35
|
* Add regression test for http inventory fetch.Justin Clark-Casey (justincc)2014-03-171-0/+4
| | | | Involved some restructuring to allow regression tests to dequeue inventory requests and perform poll responses synchronously rather than async
* Enable MapImageServiceModule with no refreshDev Random2014-03-111-12/+22
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2014-03-111-51/+97
|\