aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Following on from 50ea2e0, only fetch scene presence for check if ↵Justin Clark-Casey (justincc)2014-01-181-17/+38
| | | | lightscript function has failed initial IsEstateManagerOrOwner() check
* Fixed: Windlight functions caused an error if called when the script's owner ↵Oren Hurvitz2014-01-181-3/+9
| | | | isn't in the scene
* Revert "Fixed: Windlight functions caused an error if called when the ↵Justin Clark-Casey (justincc)2014-01-171-9/+3
| | | | | | | | script's owner isn't in the scene" This reverts commit 39e5785c0f5bfa9fce2549757ac895920c88825a. Did not mean to apply this yet.
* minor: Add Ai Austin to additional OpenSim contributors by request as he has ↵Justin Clark-Casey (justincc)2014-01-171-8/+3
| | | | added config corrections and does extensive liaison with other projects
* Fixed: Windlight functions caused an error if called when the script's owner ↵Oren Hurvitz2014-01-171-3/+9
| | | | isn't in the scene
* Actually put IsChildAgent = true inside the lock, otherwise there is still a ↵Justin Clark-Casey (justincc)2014-01-161-1/+3
| | | | small window for race conditions on duplicate CompleteMovement calls
* Prevent duplicate invocations or race dontision in SP.CompleteMovement()Justin Clark-Casey (justincc)2014-01-162-56/+65
| | | | | This can happen under poor network conditions if a viewer repeats the message send If this happens, physics actors can get orphaned, which unecessarily raises physics frame times
* Can delete the Offline Messages sent to/from a user.Oren Hurvitz2014-01-165-0/+44
| | | | This is useful if the user is deleted.
* In the offline message table, store the sender.Oren Hurvitz2014-01-164-5/+16
| | | | This data is useful for preventing abuse (e.g., someone who sends too many messages), or for deleting message if their sender has been deleted.
* Fixed offline IMOren Hurvitz2014-01-161-8/+4
|
* Remove old IInterRegionComms and references. This hasn't been used since ↵Justin Clark-Casey (justincc)2014-01-164-127/+4
| | | | 2009 and was superseded by ISimulationService
* minor: Add David Rowe to ctrlaltdavid handle by requestJustin Clark-Casey (justincc)2014-01-141-1/+1
|
* Allow Boolean nodes in XML to be specified as "0/1". AuroraSim does that.Oren Hurvitz2014-01-112-2/+4
|
* In library inventory, correct asset id for llSay example scriptJustin Clark-Casey (justincc)2014-01-102-4/+4
| | | | | From http://opensimulator.org/mantis/view.php?id=6917 Thanks to FreakyTech for this spot.
* minor: Add ctrlaltdavid to contributors listJustin Clark-Casey (justincc)2014-01-101-0/+1
|
* Fixed llTextBox error message textDavid Rowe2014-01-101-1/+1
|
* Dynamically adjust to the number of visual params sent.Melanie2014-01-101-1/+1
|
* When moving the root prim of an attachment: a) Change the attach position; ↵Oren Hurvitz2014-01-101-5/+5
| | | | b) Move the other prims in the reverse direction to compensate
* When creating a coalesced object, set its permissions to the ↵Oren Hurvitz2014-01-101-7/+16
| | | | lowest-common-denominator of all the sub-objects
* When creating a coalesced object, set its Creator ID if all the objects have ↵Oren Hurvitz2014-01-101-4/+15
| | | | the same creator
* Refactored: use a single function to apply an object's folded permissions to ↵Oren Hurvitz2014-01-106-39/+48
| | | | its main permissions
* Refactored setting permissions when rezzing items: use the same function ↵Oren Hurvitz2014-01-105-94/+160
| | | | | | when rezzing from user inventory and prim inventory. Also, fixed a bug: when rezzing a coalesced object from a prim's inventory, apply the coalesced object's name and description only to the first sub-object; not to all the objects in the coalescence. (This was already done correctly when rezzing from a user's inventory.)
* If an agent is sitting, then do send the rotation in the agent update ↵Justin Clark-Casey (justincc)2014-01-082-8/+19
| | | | | | | | instead of zeroing it to resolve mouselook camera problems Addresses http://opensimulator.org/mantis/view.php?id=6892 Thanks to tglion for this spot. This resolves a recent regression from 17b32b764acd815400d9eb903aaec6dcebd60ac7
* Add lsl arg syntax checking for control eventJustin Clark-Casey (justincc)2013-12-212-9386/+9716
|
* refactor: rename internal lsl parser VectorDeclaration -> VecDeclaration for ↵Justin Clark-Casey (justincc)2013-12-211-7907/+7903
| | | | consistency
* Add arg checking for at_target lsl eventJustin Clark-Casey (justincc)2013-12-212-8828/+9158
|
* Add lsl event arg checking for at_rot_targetJustin Clark-Casey (justincc)2013-12-212-8915/+9306
|
* Add lsl event argument checking for attach and on_rezJustin Clark-Casey (justincc)2013-12-212-8593/+8946
|
* Add missing viewer param elements for butt and breast physics.Justin Clark-Casey (justincc)2013-12-191-1/+75
| | | | | Patch from http://opensimulator.org/mantis/view.php?id=6864 except with tabs replaced by spaces Thanks cinderblocks!
* Create regression test TestSendAgentGroupDataUpdate() for groups agent data ↵Justin Clark-Casey (justincc)2013-12-184-8/+71
| | | | sending
* Extend TestLlGetNotecardLine() regression test to contain chars that are two ↵Justin Clark-Casey (justincc)2013-12-141-1/+1
| | | | bytes in utf8
* ParseNotecardToList() returned data past end of notecard text (mantis #6881).Kevin Cozens2013-12-141-15/+15
|
* Wrap analysis of the particle system in the UUID Gatherer in a separate ↵Justin Clark-Casey (justincc)2013-12-141-3/+12
| | | | | | try/catch as sometimes it appears that this can be corrupt. As per Oren's suggestion.
* After previous discussion, put eye-catcher 'SCRIPT READY' messages to ↵Justin Clark-Casey (justincc)2013-12-142-5/+7
| | | | | | | console rather than log as warning The problem with logging at warn is that these aren't actually warnings, and so are false positives to scripts that monitor for problems. Ideally, log4net would have a separate "status" logging level, but currently we will compromise by putting them to console, as they are user-oriented
* Convert if-blocks to return statements in small functions such as ↵Eva Comaroski2013-12-141-15/+5
| | | | GetStartParameter().
* Make WindParamSet success a console message rather than a log message.Justin Clark-Casey (justincc)2013-12-141-2/+1
| | | | This effectively disables the log message as requested by http://opensimulator.org/mantis/view.php?id=6890
* minor: Make wind console commands print out to console rather than logJustin Clark-Casey (justincc)2013-12-141-14/+21
|
* Add console utility commands "scale scene" and "translate scene". Note that ↵dahlia2013-12-101-2/+88
| | | | repeated use of these commands will induce floating point accumulation errors. Please back up your region before using.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimdahlia2013-12-061-3/+0
|\
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2013-12-0618-60/+314
| |\
| * | Fixed misleading commentDiva Canto2013-12-061-3/+0
| | |
* | | apparently mono DeflateStream has no CopyTo method =(dahlia2013-12-061-1/+5
| |/ |/|
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensimdahlia2013-12-0618-54/+337
|\ \
| * | Add support for user preferences (im via email)BlueWall2013-12-0614-36/+297
| | |
| * | Adding profile partners fix to SQLite and PgSQL driversBlueWall2013-12-052-4/+0
| | |
| * | Stop writing partner id to record when updating profile data. This should be ↵BlueWall2013-12-051-2/+0
| | | | | | | | | | | | changed only by admin in backend.
| * | Reversing back to the row["ColumnName"] case field name. ↵Fernando Oliveira2013-12-061-1/+1
| | | | | | | | | | | | http://opensimulator.org/mantis/view.php?id=6868
| * | minor: Use enums for setting inv/asset types on data upload rather than ↵Justin Clark-Casey (justincc)2013-12-061-7/+7
| | | | | | | | | | | | magic numbers
| * | Properly set InventoryType.Snapshot when a snapshot is uploadedJustin Clark-Casey (justincc)2013-12-061-0/+4
| |/ | | | | | | | | Resolves http://opensimulator.org/mantis/view.php?id=6857 This prevents the inventory service complaining later about an attempt to change an invariant
| * Fix regression where mouse look flight direction no longer worked by zeroing ↵Justin Clark-Casey (justincc)2013-12-052-14/+26
| | | | | | | | | | | | | | x/y rot before sending agent updates, instead of before any agent update processing It turns out that the x/y rot data in mouselook is needed to implement this and to push the avatar against the ground if walking in mouselook. Doing this in the terse send so that we preserve mouselook rotation information