aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Warnings--onefang2019-06-045-7/+6
|
* Add DefaultRegionAccess in [AuthorizationService] section.onefang2019-06-031-1/+2
|
* A little tweaking of log levels.onefang2019-06-012-5/+5
|
* ProfileServiceURL not ProfileURLonefang2019-05-191-1/+1
|
* Merge Warp3DCachedImageModule from Christopher Latza.onefang2019-05-191-45/+180
| | | | | Plus some of my own tweaks. Minus some of his.
* Remove silly 4096 sim TP check for a client bug that was fixed long ago.onefang2019-05-191-47/+0
|
* Various logging fix ups.onefang2019-05-191-5/+0
| | | | | | Mostly removing console spam. Default to INFO on the console and DEBUG in the log files. More time stamp resolution.
* Remove useless executable bit that Windows adds.onefang2019-05-191-0/+0
|
* Move cache, config, logs out of tree, and various related clean ups.onefang2019-05-191-2/+2
|
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-19212-9143/+16130
|
* Various little clean ups.David Walter Seikel2016-12-091-1/+2
|
* Actually tell us what the problem object is with sculpties in map generation.David Walter Seikel2016-11-221-4/+15
|
* Reduce various console spam.David Walter Seikel2016-11-221-2/+4
|
* Various random white space clean ups.David Walter Seikel2016-11-221-1/+1
|
* Fix file execute permissions, coz Windows.David Walter Seikel2016-11-071-0/+0
|
* Attempt to move everything writable, and the configs, out of the bin directory.David Walter Seikel2016-11-041-1/+1
| | | | Log configs are still in the bin directory.
* Even OpenSim removed the silly IAR avatar presence check. Purge it with fire.David Walter Seikel2016-11-031-139/+70
|
* Remove a bunch of spammy console messages.David Walter Seikel2016-11-031-5/+0
|
* No, we don't need to enshrine viewer bugs in the server, we need to fix the ↵David Walter Seikel2016-11-031-45/+0
| | | | | | viewer, which is half done. Less to delete this time.
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-03161-5602/+18325
|
* No, we don't need to enshrine viewer bugs in the server, we need to fix the ↵David Walter Seikel2013-02-231-46/+0
| | | | viewer, which is half done.
* On IAR loading, if loading of a coaleseced item entirely fails, then ↵Justin Clark-Casey (justincc)2013-02-081-0/+18
| | | | continue with the IAR load rather than failing completely.
* Added option for UUID as command parameters. This lets the command handle ↵Dan Lake2013-02-081-0/+4
| | | | the UUID parsing and type checking before the command is executed.
* minor: Tidy up disabled logging on AssetTransactionModule for future use. ↵Justin Clark-Casey (justincc)2013-02-081-8/+10
| | | | Make it clear that transaction parameter to HandleUDPUploadRequest is an ID.
* Prevent items being destroyed by rename operations. Renaming of a wearable alsoMelanie2013-02-081-1/+2
| | | | | | | | | sends an asset transaciton but it is empty. So we can't ignore name data when a transaction is present and can't treat every transaction as valid. Conflicts: OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
* Fix issue where the "set terrain texture" console command did not tell the ↵Justin Clark-Casey (justincc)2013-02-081-1/+1
| | | | | | viewers that textures had updated (hence they did not display the changes). Addresses http://opensimulator.org/mantis/view.php?id=6513
* minor: Fix full scene part console report to show proper Light* names rather ↵0.7.5-rc2Justin Clark-Casey (justincc)2013-01-261-5/+5
| | | | than all wrongly FlexiDrag
* Changed a couple of debug messages at the request of osgrid.Diva Canto2013-01-251-2/+2
|
* Move scene debug commands into separate module. Command changes from "debug ↵Justin Clark-Casey (justincc)2013-01-251-7/+12
| | | | scene <key> <value>" to "debug scene set <key> <value>" to accomodate future settings
* minor: Add some doc to the extremely unhelpful 'fudge....' comment as to why ↵Justin Clark-Casey (justincc)2013-01-041-1/+4
| | | | we're deselecting the prim in code before scheduling an update on attachment
* Fix problem where object attached from ground often does not get attached ↵Justin Clark-Casey (justincc)2013-01-041-9/+1
| | | | | | | | properly. It seems this is happening because we send a kill for objects that are selected when attached. A code comment says that this is to get the client to deselect it, but v3 and v1 clients do this just fine without the kill. Aims to address http://opensimulator.org/mantis/view.php?id=6456
* Fixed: the AvatarEnteringNewParcel event wasn't triggered in some casesOren Hurvitz2013-01-041-0/+6
| | | | If an avatar moved between regions: A -> B -> A, then when returning to region A the AvatarEnteringNewParcel wasn't triggered. This happened because the ScenePresence in region A still remembered its previous 'currentParcelUUID', so it appeared as if the avatar didn't change parcels. Now, however, when a ScenePresence becomes a child presence we clear its 'currentParcelUUID'.
* minor: Change channel digger replacement message in TerrainModule to Info ↵Justin Clark-Casey (justincc)2013-01-041-1/+1
| | | | | | from Warn. This is to stop this unnecessarily triggering log analysis code which reports warn and error level statements.
* Implemented Return Objects when it's invoked from the Top Colliders or Top ↵Oren Hurvitz2013-01-041-5/+55
| | | | Scripts dialogs
* Fix sounds so that they play from inventory after teleport rather than only ↵Justin Clark-Casey (justincc)2012-12-131-2/+2
| | | | | | | | | on initial login region. Regression from commit ed162a10 (Fri Oct 5 13:50:12 2012) We had started listening for the client login event for attaching the sound trigger event rather than OnNewClient Addresses http://opensimulator.org/mantis/view.php?id=6453 Many thanks to danbanner for identifying the exact commit where this went wrong, which made identifying the fix easy.
* HGAssetMapper: Get wasn't really working. It's true that some assets are ↵Diva Canto2012-12-091-3/+35
| | | | copied in the process of being gathered their UUID, but not all. Specifically, terminal assets like textures aren't copied. We have to go one more time through the ids.
* UserManagementModule: search the local cache for names too.Diva Canto2012-12-091-0/+10
| | | | Inventory transfers: don't do async on asset transfers or now.
* Re-enable code disabled in f605a62 to allow a TaskInventoryAccepted message ↵Justin Clark-Casey (justincc)2012-12-081-70/+68
| | | | | | | | | | to nominate a non-root destination folder. This is in relation to http://opensimulator.org/mantis/view.php?id=6311 This is after further analysis which shows the viewer expects the server to move the folder for #RLV give but then should be renaming the folder itself. For some reason this is not happening, possibly because we are not sending BulkUpdates or because we are not using transaction IDs properly. This needs to be fixed in the future. However, moving the folder even if the rename isn't correctly triggered in the viewer seems preferable to disabling this code altogether.
* minor: Fix more compiler warnings in CoreModules tests by properly ↵Justin Clark-Casey (justincc)2012-12-055-5/+16
| | | | overriding OpenSimTestCase.SetUp()
* minor: also comment out the debug log message which reports searching for ↵Justin Clark-Casey (justincc)2012-12-041-2/+2
| | | | child agents in simulator scenes for now.
* minor: Comment out "Delivering IM to..." messages for now.Justin Clark-Casey (justincc)2012-12-041-3/+3
|
* Bug fix in OfflineMessageModule. Mantis #6446Diva Canto2012-12-041-1/+1
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2012-11-271-3/+57
|\
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2012-11-281-0/+3
| |\
| * | Show many more primitive properties on console command "show part name/id/pos"Justin Clark-Casey (justincc)2012-11-281-3/+57
| | |
* | | Bug fix in Offline IM for inventory transfers. The items were being placed ↵Diva Canto2012-11-271-11/+15
| |/ |/| | | | | twice in the receiver's inventory.
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2012-11-2721-406/+467
|\ \ | |/
| * Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)2012-11-249-10/+10
| | | | | | | | automatically turns off any logging enabled between tests
| * In ArchiverTests, use the local instantiated SceneManager rather than ↵Justin Clark-Casey (justincc)2012-11-241-20/+7
| | | | | | | | potentially cross-contaminating tests by relying on the static SceneManager.Instance
| * Fix bug where loading an OAR with a deeded parcel would always set the ↵Justin Clark-Casey (justincc)2012-11-245-147/+224
| | | | | | | | | | | | | | | | | | parcel owner ID to the estate owner even if the group UUID was present. Aims to address http://opensimulator.org/mantis/view.php?id=6355 As part of this work, an incomplete IXGroupsData was added which currently only allows store/fetch/delete of group records (i.e. no membership data etc) This is subject to change and currently only an in-memory storage implementation exists for regression test purposes.