Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-15 | merge | prep | |
2010-11-15 | Implemented support for getting at the child translational element if the ↵ | prep | |
SID fails to resolved. | |||
2010-11-15 | Backed out changeset: 1c9c6cdcccde | prep | |
2010-11-15 | Implemented support for getting at the child translational element if the ↵ | prep | |
SID fails to resolved. | |||
2010-11-12 | BUILDFIX allow curl host name scrub to work on non-windows platforms | Nyx (Neal Orman) | |
Needed an include for gethostbyname to be called properly. | |||
2010-11-12 | merge | Brad Payne (Vir Linden) | |
2010-11-12 | SH-275 FIX: non-production grids now default to different source of map tiles | Brad Payne (Vir Linden) | |
2010-11-11 | merge | Dave Parks | |
2010-11-11 | Fix for crash in curl. | Dave Parks | |
2010-11-10 | cleanup | prep | |
2010-11-10 | Bug fix for an avatar that would exhibit floating if pelvis was offset | prep | |
Bug fix for attach/detach so that it will recalculate certain avatar settings based upon bone positions. | |||
2010-11-08 | Fix for manual merge errors. | Loren Shih | |
2010-11-08 | Manual merge of llviewerwindow.cpp from mesh-development. | Loren Shih | |
2010-11-08 | Backout merge of llviewerwindow; need to do manual merge since this is messy. | Loren Shih | |
This checkin causes llviewerwindow to become the viewer-development version. | |||
2010-11-08 | Merge | Loren Shih | |
2010-11-08 | SH-396 WIP fix mac opensource build | Nyx Linden | |
Missed a reference to libcollada in viewer_manifest. Hopefully should be packaged and set properly now. | |||
2010-11-08 | removed unused variable | Brad Payne (Vir Linden) | |
2010-11-05 | BUILDFIX: commented out unused variable which breaks the mac build. | Nyx Linden | |
2010-11-05 | Automated merge with https://hg.secondlife.com/mesh-development | Nyx Linden | |
2010-11-05 | SH-396 FIX mac build on mesh-development is broken | Nyx Linden | |
Adding collada to the list of libraries we need to package with the viewer Not sure why this wasn't here earlier, but this should solve the packaging problem. | |||
2010-11-05 | merge | Brad Payne (Vir Linden) | |
2010-11-05 | additional analysis for --analyzeperformance option | Brad Payne (Vir Linden) | |
2010-11-05 | BUILDFIX making curl asserts llinfos for non-windows platforms | Nyx (Neal Orman) | |
linux curl appears to throw an initialization error once per session after login. Can't hunt it down right now, so making curl asserts llinfos for non-windows platforms. Also added a new assert on curl initialization. | |||
2010-11-04 | BUILDFIX curl error causes linux build to crash on login. | Nyx (Neal Orman) | |
Switching curl errors from llerrs to llinfos allows the client to continue on its merry way. Will file a jira to follow up later on why the error happens in the first place. | |||
2010-11-04 | merging up latest changes from viewer-development | Oz Linden | |
2010-11-04 | SH-396 WIP fix mac teamcity build for mesh-development | Nyx Linden | |
making sure we're copying over the necessary 3rd party library in the packaging stage | |||
2010-11-04 | automated merge from http://hg.secondlife.com/viewer-beta | Loren Shih | |
2010-11-04 | automated merge up from viewer-beta | Loren Shih | |
2010-11-04 | merge fix for STORM-450 | Oz Linden | |
2010-11-04 | merge fix for STORM-261 | Oz Linden | |
2010-11-04 | merge fix for STORM-194 | Oz Linden | |
2010-11-04 | merge fix for STORM-536 | Oz Linden | |
2010-11-04 | Automated merge up from viewer-development | Loren Shih | |
2010-11-04 | STORM-450 FIXED Incorrect help contexts for Sidebar People tab | Paul Guslisty | |
- Added checking whether panel is in visible chain instead of just visibility checking | |||
2010-11-04 | STORM-261 FIXED Changed line number color in script editor. | Andrew Productengine | |
- Changed text_readonly_color in script editor to darker gray, so that line numbers are visible when scrip editor is out of focus. | |||
2010-11-03 | Reverting fix for SH-391 until it works for all use cases | JonathanLinden | |
2010-11-03 | STORM-194 FIXED 'Show' button in inventory offer notification to open 'My ↵ | Seth ProductEngine | |
Inventory' SP if attachments were offered. Removed the check preventing inventory SP from opening when an item of IT_ATTACHMENT type has been offered. | |||
2010-11-03 | STORM-536 ADDITIONAL FIX Replaced extra calls to getChild() with using a ↵ | Seth ProductEngine | |
member pointer to LLAccordionCtrlTabHeader. | |||
2010-11-03 | STORM-536 FIXED scrolling to collapsed accordion tab with keyboard arrows in ↵ | Seth ProductEngine | |
Places SP->My Landmarks. - Fixed scrolling to selected item when a folder view receives selection inside an accordion tab while being out of visible scrolling area. - Fixed scrolling to collapsed accordion tab when it receives selection while being out of visible scrolling area. | |||
2010-11-03 | Fix for SH-391 'Viewer crash when enabling align planar faces on a mesh ↵ | JonathanLinden | |
object'. Paired with Runitai | |||
2010-11-03 | pull fix for STORM-422 | Oz Linden | |
2010-11-03 | CT-633 WIP ES translation for Viewer 2.3, Set19 | Eli Linden | |
2010-11-03 | SH-281 Make UI in snapshot off by default. | Dave Parks | |
2010-11-03 | STORM-472 Fixed crash that happened while decoding jpg image. | Andrew Productengine | |
In case of files provided in ticket problem occured in libjpeg's jpeg_start_decompress(to be more specofic- inside it's _jinit_color_deconverter()) because if cinfo's out_color_space is RGB, then jpeg_color_space can't be JCS_YCCK (JCS_YCCK jpeg_color_space is possible for JCS_CMYK out_color_space). So when the combination of RGB and JCS_YCCK was encountered, jpeglib called ERREXIT() inside which exit() was called and viewer crashed. - Checking for this combination before calling jpeg_start_decompress() would solve this problem in this specific case, but there are a lot of possible error combinations which cause libjpeg to exit and thus crash viewer, so copypasting checks from it into viewer code would be cumbersome, uneffective and ugly. So another approach was used instead- by default libjpeg calls exit() after encountering an error, but user can provide his own error handling function instead. on_jpeg_error() function was added in fix for this. It sets true a boolean flag that is used to determine whether there were errors in getImageDimensionsJpeg(), and this function's return value depends on it. | |||
2010-11-02 | STORM-283 : merge with viewer-development | Merov Linden | |
2010-11-02 | STORM-287 : merge with viewer-development | Merov Linden | |
2010-11-02 | STORM-420 : merge to viewer-development | Merov Linden | |
2010-11-02 | Reverting code for fixing non-uniform scale for mesh uploads as it breaks ↵ | JonathanLinden | |
rigged meshes. | |||
2010-11-02 | Better locking of queues when displaying download queue status. | Dave Parks | |
Reviewed by Nyx. | |||
2010-11-02 | Make sure mutex is locked before waiting on a signal. | Dave Parks | |
Reviewed by Nyx. |