aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Set flavour to release.0.7.4Justin Clark-Casey (justincc)2012-08-311-1/+1
|
* Replace SendBannedUserList with Avination's version. Untested in core. Not ↵Melanie2012-08-311-25/+32
| | | | even test compiled.
* Fix regression introduced in a0d178b2 (Sat Aug 25 02:00:17 2012) where ↵Justin Clark-Casey (justincc)2012-08-3110-52/+231
| | | | | | | | | | | folders with asset type of 'Folder' and 'Unknown' were accidentally treated as system folders. This prevented more than one additional ordinary folder from being created in the base "My Inventory" user folder. Added regression test for this case. Switched tests to use XInventoryService with mostly implemented TestXInventoryDataPlugin rather than InventoryService Disabled TestLoadIarV0_1SameNameCreator() since this has not been working for a very long time (ever since XInventoryService) started being used since it doesnt' preserve creator data in the same way as InventoryService did and so effectively lost the OSPAs. However, nobody noticed/complained about this issue and OSPAs have been superseded by HG like creator information via the --home save oar/iar switch.
* copying documentation from http://opensimulator.org/wiki/Threat_levelSignpostMarv2012-08-311-0/+59
|
* adding some files to .gitignore that get generated when debugging in c# ↵SignpostMarv2012-08-311-0/+4
| | | | express with OpenSim.32BitLaunch as the startup project
* Add VectorRenderModule.TestRepeatSameDrawDifferentExtraParams()Justin Clark-Casey (justincc)2012-08-311-2/+32
|
* Add VectorRenderModuleTests.TestRepeatDrawContainingImage()Justin Clark-Casey (justincc)2012-08-311-0/+31
|
* Add VectorRenderModuleTests.TestRepeatDraw()Justin Clark-Casey (justincc)2012-08-311-11/+48
|
* Following on from f8a89a79, do not allow more than one 'type' folder (e.g. ↵Justin Clark-Casey (justincc)2012-08-311-16/+49
| | | | | | | | calling cards) to be created in the base "My Inventory" user folder. This is to accomodate situations where viewers will create more than one 'type' subfolder (e.g. calling cards) But at the same time to prevent multiple such 'system' folders (those in the base "My Inventory" user folder). This also makes GetFolderForType() only return a folder in the base "My Inventory" folder, if such a type folder exists
* Allow multiple calling card type inventory folders to be created.Justin Clark-Casey (justincc)2012-08-311-0/+1
| | | | Modern viewers want to create Friends and All folders of this type inside the root Calling Cards folder.
* minor: Fix bad log message for failure to create an inventory folderJustin Clark-Casey (justincc)2012-08-311-1/+1
|
* Log initial script startup info notice when xengine actually starts to do ↵Justin Clark-Casey (justincc)2012-08-312-3/+5
| | | | this for debugging purposes, rather than before it actually starts to do this.
* Extend "Restarting scripts in attachments" debug log message to show actual ↵0.7.4-rc2Justin Clark-Casey (justincc)2012-08-241-1/+3
| | | | name of user and the region they are in
* If a connecting scene presence is replacing an existing scene presence then ↵Justin Clark-Casey (justincc)2012-08-241-1/+1
| | | | bypass close checks.
* Bump version number to 0.7.4-rc2Justin Clark-Casey (justincc)2012-08-241-1/+1
|
* Pass the "attachToBackup" bool given to SceneGraph.AddNewSceneObject() down ↵Justin Clark-Casey (justincc)2012-08-241-1/+1
| | | | | | | into the 3-parameter AddNewSceneObject() method instead of always hardcoding true. This doesn't affect any core OpenSimulator code since all callers were passing true anyway But it allows region modules to create objects that are never persisted.
* adding sqlite journal files to .gitignoreSignpostMarv2012-08-241-0/+1
|
* If a script state save fails for some reason on shutdown/region removal, get ↵Justin Clark-Casey (justincc)2012-08-241-2/+25
| | | | xengine to spit out some useful information and continue to save other script states
* Add an [HGAssetService] section to SQLiteStandalone.ini with the same ↵Justin Clark-Casey (justincc)2012-08-241-0/+10
| | | | | | | | | | | | | connection string as [AssetService]. This is necessary because commit 8131a24 (Tue Mar 27 10:08:13 2012) started passing the config section name rather than hardcoding "AssetService" This meant that the HG external-facing asset service tried to read ConnectionString from [HGAssetService] rather than [AssetService]. On SQLite, not finding this meant that it fell back to [DatabaseService], which is set for OpenSim.db rather than Asset.db. Therefore, all external asset requests returned null. Solution taken here is to create an [HGAssetService] section with the same ConnectionString as [AssetService]. This bug does not affect normal MySQL/MSSQL config since they use the [DatabaseService] connection string anyway. Addresses http://opensimulator.org/mantis/view.php?id=6200, many thanks to DanBanner for identifying the exact problem commit which was very helpful. This was a regression from OpenSimulator 0.7.3.1 which did not contain this bug.
* Lock disposal of separate gdi+ objects under different threads since this ↵Justin Clark-Casey (justincc)2012-08-241-26/+42
| | | | | | | | | | prevents malloc heap corruption seen under Ubuntu 10.04.1 and 11.04 - probably a libcairo issue In testing, it appears that if multiple threads dispose of separate GDI+ objects simultaneously, the native malloc heap can become corrupted, possibly due to a double free(). This may be due to bugs in the underlying libcairo used by mono's libgdiplus.dll on Linux/OSX. These problems were seen with both libcario 1.10.2-6.1ubuntu3 and 1.8.10-2ubuntu1. They go away if disposal is perfomed under lock.
* Fix bug in SoundModule.PlayAttachedSound() where every sound update to an ↵Justin Clark-Casey (justincc)2012-08-241-3/+5
| | | | | | avatar would base its gain calculation on the previous avatar's gain, instead of the original input gain This is similar to commit d89faa which fixed the same kind of bug in TriggerSound()
* Tighten up OpenSim.Framework.Cache locking to avoid race conditions.Justin Clark-Casey (justincc)2012-08-241-30/+53
| | | | | This is to resolve a reported issue in http://opensimulator.org/mantis/view.php?id=6232 Here, the land management module is using OpenSim.Framework.Cache (the only code to currently do so apart from the non-default CoreAssetCache).
* Add --force flag to "kick user" console command to allow bypassing of recent ↵Justin Clark-Casey (justincc)2012-08-2414-23/+70
| | | | | | | | | race condition checks. This is to allow a second attempt to remove an avatar even if "show connections" shows them as already inactive (i.e. close has already been attempted once). You should only attempt --force if a normal kick fails. This is partly for diagnostics as we have seen some connections occasionally remain on lbsa plaza even if they are registered as inactive. This is not a permanent solution and may not work anyway - the ultimate solution is to stop this problem from happening in the first place.
* Fix llDialog responses so that they can be heard throughout the region. This ↵Melanie2012-08-241-1/+1
| | | | now conforms to the behaviour in SL.
* When reporting a thread timeout, create a copy of the info rather than ↵Justin Clark-Casey (justincc)2012-08-241-1/+14
| | | | | | | passing the original ThreadWatchdogInfo structure. This is to avoid the possibility of misleading reporting if a watchdog update outraces an alarm. Should address any remaining issues from http://opensimulator.org/mantis/view.php?id=6012
* Add information to ThreadStackSize about possibly increasing if suffering ↵Justin Clark-Casey (justincc)2012-08-241-1/+3
| | | | StackOverflowExceptions during script conversion/compilation (e.g. on Windows 64-bit)
* minor: Make xengine debug message on script load a scripting loading message ↵Justin Clark-Casey (justincc)2012-08-241-7/+9
| | | | | | instead. This is more useful if compilation fails due to an uncatchable exception since we know what was being compiled.
* Correct an exception report in SceneObjectPart so it outputs the stack.Robert Adams2012-08-241-1/+1
|
* Implementing PRIM_LINK_TARGET in a non-recursive fashionSignpostMarv2012-08-241-49/+74
|
* Don't enable the thread watchdog until all regions are ready.Justin Clark-Casey (justincc)2012-08-242-7/+33
| | | | This is to avoid false positives when the machine is under heavy load whilst starting up.
* adding ATTACH_*_PEC constantsSignpostMarv2012-08-241-0/+2
|
* minor: Add Gryc Ueusp to CREDITS for commit 884edac amongst others, by request.Justin Clark-Casey (justincc)2012-08-241-0/+1
|
* Prevent race conditions when one thread removes an NPC SP before another ↵Justin Clark-Casey (justincc)2012-08-242-39/+50
| | | | thread has retreived it after checking whether the NPC exists.
* Release http-in URLs when llResetScript is calledMelanie2012-08-241-0/+6
|
* Flip version to 0.7.4-rc10.7.4-rc1Justin Clark-Casey (justincc)2012-08-031-1/+1
|
* Strip experimental tag from --publish option of "save oar" region console ↵Justin Clark-Casey (justincc)2012-08-031-8/+7
| | | | command
* Fix old regression that stopped saving parcel owner data in OARs.Justin Clark-Casey (justincc)2012-08-033-36/+73
| | | | | | This was working in 0.7.2 but was accidentally removed from 0.7.3. The --publish option for "save oar" will now save oars stripped of parcel owner information as well as scene object info. Please use the --publish option if you want to publish oars that may be later loaded by others to the same grid from which they were saved.
* Fix build break.Justin Clark-Casey (justincc)2012-08-031-1/+1
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimRobert Adams2012-08-031-4/+4
|\
| * Update settings loading in AvatarFactoryModule which should have been in ↵Justin Clark-Casey (justincc)2012-08-031-4/+4
| | | | | | | | last commit 205f2326
* | BulletSim: update DLLs and SOsRobert Adams2012-08-034-0/+0
| |
* | BulletSim: pass collision subscription information to the C++ code so ↵Robert Adams2012-08-033-16/+45
| | | | | | | | collisions on objects that don't care are not reported up.
* | BulletSim: Add AddObjectForce to BulletSim API.Robert Adams2012-08-033-20/+38
|/ | | | | | Add interface 2 enhancements to BSCharacter. Modify AddForce and SetForce to use the new Bullet interface. More DetailLog statements for character.
* Consolidate PersistBakedTextures, DelayBeforeAppearanceSend and ↵Justin Clark-Casey (justincc)2012-08-033-23/+23
| | | | | | DelayBeforeAppearanceSave into [Appearance] section from [Startup] config section so that all appearance settings are in the same place and not in the startup bucket. All these settings are in OpenSimDefaults.ini only. If you are using them then please adjust your OpenSim.ini
* Restore SOG constructor chaining removed in recent 513b77b. This is not a ↵Justin Clark-Casey (justincc)2012-08-031-1/+1
| | | | functional change.
* Fix the recent windows compile error by putting newFont for case "R" in ↵Justin Clark-Casey (justincc)2012-08-031-3/+8
| | | | VectorRenderModule inside its own context, rather than disposing of the old font before using it as a prototype for the new.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2012-08-031-2/+2
|\
| * attempting to fix a build issueSignpostMarv2012-08-031-2/+2
| | | | | | | | Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* | Move previously unadvertised SendPeriodicAppearanceUpdates setting from ↵Justin Clark-Casey (justincc)2012-08-032-2/+15
|/ | | | | | | | | | [Startup] to [Appearance] config section. Add description and default of false (as before) to OpenSimDefaults.ini If set to true, this config switch will resend avatar appearance information (a small amount of UUID data, not the baked textures themselves) to other avatars in the sim every 60 seconds. For me, this has helped with situations where avatars appear persistently grey - the LL viewer sometimes did not appear to request assets the first time the appearance data was sent. However, this switch will not help with other appearance failure situations (e.g. failure to bake assets). This setting is experimental but will not have any significant impact on the simulator if turned to true.
* refactor: rename SOG.RezzingObjectID to SOG.FromPartID to match ↵Justin Clark-Casey (justincc)2012-08-033-3/+3
| | | | FromFolderID, FromItemID and to reflect that it's a SOP ID rather than a SOG ID.