Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2010-06-07 | minor: remove some commented out code and return ↵ | Justin Clark-Casey (justincc) | 2 | -7/+1 | |
ScenePresence.UpdatePriority() to private | |||||
2010-06-07 | Stop some hud components disappearing on region crossings | Justin Clark-Casey (justincc) | 3 | -13/+76 | |
If viewers (or at least, Linden Viewer 1.23.5) receive child hud object updates before the root prim, then the children are not displayed. Updates were being queued in LLClientView in the right order (root first) but were being sent in a random order since they were all at the same prioritization This commit prioritizes the root prim of a hud to its highest level when queued. I'm not sure if the periodic reprioritization triggered via ScenePresence might reset this, but boosting priority appears to work so far. Also committed is a belt and braces mechanism in LLClientView to prevent child hud prim being sent out before their root, but since this doesn't appear to be needed it is currently commented out. | |||||
2010-06-07 | reapply fix for double sending of attachment update on standalone region ↵ | Justin Clark-Casey (justincc) | 9 | -48/+48 | |
crossing | |||||
2010-06-07 | commit code which stops full updates being fired multiple times when ↵ | Justin Clark-Casey (justincc) | 9 | -22/+122 | |
attachments cross standalone region boundaries lots of messy debug code here too which would need to be removed | |||||
2010-06-04 | Revert "commit code which stops full updates being fired multiple times when ↵ | Justin Clark-Casey (justincc) | 9 | -122/+22 | |
attachments cross standalone region boundaries" This reverts commit 5074d290e4aeb583560272cadc8ba09aa8337210. This gets rid of the massive amount of scene object log spam - sorry about that, folks | |||||
2010-06-04 | Fix bug where prim items were not loaded in the new sqlite database handler | Justin Clark-Casey (justincc) | 1 | -27/+39 | |
This addresses mantis http://opensimulator.org/mantis/view.php?id=4739 | |||||
2010-06-02 | Revert "Next OSG test. Don't remove app domains if they contain running ↵ | Melanie | 1 | -6/+4 | |
threads." This reverts commit f831a1778baa766b4810e352f3ae2ab6736e4620. With this, post-fixes is back to normal. | |||||
2010-06-02 | Next OSG test. Don't remove app domains if they contain running threads. | Melanie | 1 | -4/+6 | |
2010-06-02 | Next OSG test. Cowardly refuse to save the state of badly behaved scripts, ↵ | Melanie | 1 | -2/+5 | |
instead of forcing the issue. | |||||
2010-06-02 | Revert "After aborting a thread, wait for it to actually finish. ↵ | Melanie | 1 | -1/+0 | |
EXPERIMENTAL for OSG" This reverts commit 241ed5734ee3c5b1417484dfa22af6cf6ae60b82. | |||||
2010-06-02 | After aborting a thread, wait for it to actually finish. EXPERIMENTAL for OSG | Melanie | 1 | -0/+1 | |
testing. DO NOT UPDATE TO THIS UNLESS YOU KNOW WHAT YOU'RE DOING! | |||||
2010-06-01 | Comment and remove JScript support. Mono 2.7Dev and 2.8 no longer include the | Melanie | 1 | -19/+19 | |
needed libraries | |||||
2010-05-30 | Fix a nullref in EventManager caused by RegionReady not setting the scene | Melanie Thielker | 1 | -0/+1 | |
2010-05-28 | Adjust Scene.DeleteAllSceneObjects() to not delete objects attached to avatars. | Justin Clark-Casey (justincc) | 1 | -2/+6 | |
This is going to be the right behaviour in all cases, I should think. This means that avatars in region when an oar is loaded do not lose their attachments | |||||
2010-05-27 | commit code which stops full updates being fired multiple times when ↵ | Justin Clark-Casey (justincc) | 9 | -22/+122 | |
attachments cross standalone region boundaries lots of messy debug code here too which would need to be removed | |||||
2010-05-26 | If a transfer request is received for a task inventory item asset, then ↵ | Justin Clark-Casey (justincc) | 2 | -25/+91 | |
route the permissions request through the existing CanEditScript() and CanEditNotecard() methods. This implements the 'share with group' flag for notecards and scripts in prim inventory since the PermissionsModule checks group membership and permissions. Other than that, the code in PermissionsModule duplicates the checks in LLClientView so there should be no change other than allowing group members to edit embedded notecards and scripts. For all other asset types, the permission checking code in LLClientView continues to be used, pending refactoring of suitable permissions code This means that 'share with group' will not yet work for prim inventory items other than notecards and scripts | |||||
2010-05-26 | check group membership and powers with the groups module rather than just ↵ | Justin Clark-Casey (justincc) | 1 | -12/+27 | |
the client's active group id this resolves the earlier issue where notecards/scripts shared with group could only be edited if the user had that group active | |||||
2010-05-26 | Partially implement share with group option for object inventory items | Justin Clark-Casey (justincc) | 4 | -7/+21 | |
If serverside permissions are off then this works as expected. Previously, it was impossible for more than one person to edit such items even if permissions were off. If serverside permissions are on then this works as expected if the object was created by an avatar who had the required group active. However, if the group for the object is later set then the contained item is still not editable. This may be linked to a wider bug where the object is still not modifiable by the group anyway Resolve conflict in LLClientView | |||||
2010-05-24 | backport from master fix for attachment display | Justin Clark-Casey (justincc) | 3 | -3/+5 | |
this fix stops two full updates being sent on attachment rather than one. Sending two can stop the client displaying attachments properly | |||||
2010-05-24 | backport some IGroupsModule method doc and an extra exposed method from git ↵ | Justin Clark-Casey (justincc) | 1 | -2/+31 | |
master | |||||
2010-05-24 | stop "load oar" reporting ignored objects when those objects were actually ↵ | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
loaded just fine this fix also means that loaded scripts are properly/more promptly started here, the fix is only done in the oar module. In master, the underlying problem was fixed instead but this is more invasive. | |||||
2010-05-21 | Apply http://opensimulator.org/mantis/view.php?id=4724 | Justin Clark-Casey (justincc) | 2 | -4/+17 | |
Tweak to update appearance calls Fix for deleting inventory items from a folder. Thanks StrawberryFride! | |||||
2010-05-21 | Only send dialogs and notices to root agents, not child agents | Justin Clark-Casey (justincc) | 1 | -5/+5 | |
Small change for backport Conflicts: OpenSim/Region/CoreModules/Avatar/Dialog/DialogModule.cs | |||||
2010-05-21 | Change the way the object perms are propagated to attempt to salvage | Melanie | 1 | -21/+23 | |
some older content | |||||
2010-05-20 | minor: correctly print out missing item id when it can't be found rather ↵ | Justin Clark-Casey (justincc) | 2 | -2/+4 | |
than a NullReferenceException | |||||
2010-05-20 | Don't append ACKs to zerocoded packets. Although this should fine in theory, ↵ | John Hurliman | 1 | -15/+20 | |
I'm seeing the viewer ignore or fail to parse ACKs appended to our zerocoded packets. This should cut down on viewer->sim resend traffic | |||||
2010-05-20 | When saving an oar/iar, don't attempt to write out the data byte array if ↵ | Justin Clark-Casey (justincc) | 1 | -1/+3 | |
it's empty On Mono 2.6 (and probably before) this causes a non-obvious IOException | |||||
2010-05-20 | minor: commented out code removal | Justin Clark-Casey (justincc) | 1 | -1/+0 | |
2010-05-20 | Completely prevent full update packets being sent after kill object packets | Justin Clark-Casey (justincc) | 1 | -3/+0 | |
If a full update is sent after the kill, the object remains as in the linden viewer but in an undeletable and unowned state until relog This patch prevents this by recording kills in LLClientView Backport from master | |||||
2010-05-20 | Completely prevent full update packets being sent after kill object packets | Justin Clark-Casey (justincc) | 1 | -5/+46 | |
If a full update is sent after the kill, the object remains as in the linden viewer but in an undeletable and unowned state until relog This patch prevents this by recording kills in LLClientView | |||||
2010-05-20 | minor: Print out port that http servers are using | Justin Clark-Casey (justincc) | 5 | -12/+19 | |
do this in callers so that we know who is setting up these things | |||||
2010-05-20 | put out full exception stack if something reaches top of base http server ↵ | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
OnRequest() on both mono and .net replace Newtonsoft.Json.XML since the updated copy got accidentally reverted by another commit | |||||
2010-05-20 | move linden notecard parsing from LSL_Api.cs to SLUtil so that region ↵ | Justin Clark-Casey (justincc) | 5 | -108/+307 | |
modules can use it backport from master | |||||
2010-05-15 | Address symptom of Mantis 4588 (though not the cause) by moving the avatar ↵ | Justin Clark-Casey (justincc) | 1 | -2/+3 | |
dereference inside the exception catch | |||||
2010-05-14 | * Allows both old and new OpenSim.ini params for the XmlRpc Groups Service ↵ | unknown | 2 | -31/+80 | |
Connector * Fix problem with RequestingAgentID not being sent correctly to server resulting in failed xmlrpc calls * Improved debug output | |||||
2010-05-14 | change 0.6.9 flavour to post-fixes | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
2010-05-14 | switch 0.6.9 flavour to release0.6.9-release | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
2010-05-14 | Apply patch from http://opensimulator.org/mantis/bug_view_page.php?bug_id=4671 | Justin Clark-Casey | 1 | -0/+4 | |
Fixes a bug where the viewer didn't recieve the uuid of a chat broadcasting object Thanks crystalsgalicia! | |||||
2010-05-14 | Apply patch from http://opensimulator.org/mantis/bug_view_page.php?bug_id=4671 | Justin Clark-Casey | 1 | -0/+4 | |
Fixes a bug where the viewer didn't recieve the uuid of a chat broadcasting object Thanks crystalsgalicia! | |||||
2010-05-14 | Fix linking issue introduced in my earlier commit | Melanie Thielker | 1 | -1/+19 | |
2010-05-05 | back port groups changes | unknown | 2 | -1329/+73 | |
Signed-off-by: Melanie <melanie@t-data.com> | |||||
2010-05-05 | back port groups changes | unknown | 5 | -443/+1798 | |
2010-05-05 | Revert "Patch from mcortez: Update groups, add ALPHA Siman grid connector ↵ | Melanie | 4 | -1570/+320 | |
for groups" The patch was for 0.7 This reverts commit 608bb0dfefbbc97aded6d1357dd9d350053411fb. | |||||
2010-05-05 | Patch from mcortez: Update groups, add ALPHA Siman grid connector for groups | Melanie | 4 | -320/+1570 | |
Mantis #4646 Signed-off-by: Melanie <melanie@t-data.com> | |||||
2010-05-03 | Address symptom of Mantis 4588 (though not the cause) by moving the avatar ↵ | Justin Clark-Casey (justincc) | 1 | -2/+3 | |
dereference inside the exception catch | |||||
2010-04-30 | take out some more sqlite db console debug lines | Justin Clark-Casey (justincc) | 1 | -6/+0 | |
2010-04-30 | fix an issue with user appearance where the new sqlite db adapter expects ↵ | Justin Clark-Casey (justincc) | 8 | -81/+25 | |
directly specification of byte[] type rather than base64 strings | |||||
2010-04-30 | Fix linking issue introduced in my earlier commit | Melanie Thielker | 1 | -1/+19 | |
2010-04-30 | Fix a bunch of issues that crop up after the naive porting of the new sqlite ↵ | Justin Clark-Casey (justincc) | 16 | -774/+24 | |
db from master to 0.6.9 | |||||
2010-04-30 | take out some debug logging in the sqlite db adaptor | Justin Clark-Casey (justincc) | 1 | -3/+3 | |