summaryrefslogtreecommitdiff
path: root/indra
AgeCommit message (Collapse)Author
2011-01-19Automated merge with https://bitbucket.org/mani_linden/viewer-autobuildAndrew A. de Laix
2011-01-19update google-breakpad package; fix call to dump symbols.Andrew A. de Laix
2011-01-19Cmake updates to get llkdu building on linux. Need to rebuild kdu tarball next.jenn
2011-01-18Added 'slvoice' (vivox) to autobuild.xml for linux.jenn
This is version 3.1 of the lib; viewer was using version 3.2, but this version has been rebuilt using the new package layout. Hopefully it will work, though we may need to convert version 3.2 if it does not. Updated Copy3rdParyLibs.cmake paths for linux installation of vivox files.
2011-01-18Automated merge with https://bitbucket.org/mani_linden/viewer-autobuildAndrew A. de Laix
2011-01-18fix path to prebiuld slvoice libraries on mac and linux.Andrew A. de Laix
2011-01-18windows build fixes.Alain Linden
2011-01-18Added entries to autobuild.xml for 'openal_soft' and 'google' libs on linux.jenn
These packages have been rebuilt to use the new package layout (thanks alain!). 'openal_soft' was also renamed to use an underscore in its name rather than a dash.
2011-01-14windows autobuildibatized (bye bye install.py...)Alain Linden
2011-01-13mac buiding with autobuild and autobuild style packages (just say no to ↵Andrew A. de Laix
install.py)
2011-01-11remove develop.py and references to it (use autobuild instead)Andrew A. de Laix
2011-01-11STORM-807 : pull into viewer-developmentMerov Linden
2011-01-10STORM-807 : Clean up code as discussed with AndrewMerov Linden
2011-01-10pull from viewer-betaMerov Linden
2011-01-10SOCIAL-437 FIX Viewer crashes opening My Profile panelcallum
2011-01-07mergeAndrew Meadows
2011-01-07mergeAndrew Meadows
2011-01-07Adding group owned check for enabling returnability of objects on parcels.Andrew Meadows
2011-01-07merge changes for vwr-1095Oz Linden
2011-01-07merge changes for storm-826Oz Linden
2011-01-07VWR-1095 fix for problems with uploads following bulk upload failureCoaldust Numbers
de minimus contribution accepted without CA - Oz Linden
2011-01-07increment minor revision number to make version "2.6.0"Oz Linden
2011-01-07STORM-826: fix line endings and mixed tabs/spacesOz Linden
2011-01-07merge changes for storm-34Oz Linden
2011-01-06merge changes for web profilesOz Linden
2011-01-06SOCIAL-423 FIX Display name and username are wrong in My Profile tabcallum
2011-01-06Validation check for edit classified and edit pick slappsBrad Payne (Vir Linden)
2011-01-06merge changes for storm-812Oz Linden
2011-01-06merge changes for storm-714Oz Linden
2011-01-06merge changes for storm-438Oz Linden
2011-01-06Merge from viewer-development before merge to viewer-development request ↵callum
submitted
2011-01-06STORM-826 (workaround): correct mixed and dos-style line endingsOz Linden
2011-01-05Merge with viewer-developmentcallum
2011-01-05SOCIAL-304 FIX Modify side panel to reflect Profiles changescallum
2011-01-05merge changes for storm-806Oz Linden
2011-01-05merge changes for storm-825Oz Linden
2011-01-05SH-716 FIXED Water reflections should not default to ON for High graphics ↵Loren Shih
setting Revert to previous behavior. Reflections stay at "minimal".
2011-01-05Automated merge from viewer-developmentLoren Shih
2011-01-05SH-716 FIXED Water reflections should not default to ON for High graphics ↵Loren Shih
setting Revert to previous behavior. Reflections stay at "minimal".
2011-01-04merge changes for storm-398Oz Linden
2011-01-04merge changes for storm-467Oz Linden
2011-01-04merge changes for storm-485Oz Linden
2011-01-04merge changes for storm-737Oz Linden
2011-01-04merge changes for storm-466Oz Linden
2011-01-04merge changes for storm-513Oz Linden
2011-01-04merge changes for storm-493Oz Linden
2011-01-04merge changes for storm-669Oz Linden
2011-01-04merge changes for storm-823Oz Linden
2010-12-30STORM-825 : update Merge from viewer-developmentWolfpup Lowenhar
2010-12-30STORM-823 FIXED Fixed Tab Key not working properly in floaters.Andrew Productengine
Bug was caused by not fiding focus root in LLUICtrl::findRootMostFocusRoot() when tab was pressed in floaters. When it was not found, LLPanel::handleKeyHere() didn't move focus to the next control. Floaters had erroneous behaviour because of focus_root xml param: though value of focus root was set with setFocusRoot() in floater's constructor , later it was overwritten in LLFloater::initFloaterXML() with value from xml again. This problem was introduced in af49c237b0f9 - there focus root was moved to xml. - To fix the problem, setFocusRoot() call was added after initFromParams() in LLFloater::initFloaterXML() to set proper value of focus root after overwriting it from xml. The drawback of the fix is that focus_root param is ignored by floaters and its value is determined depending on chrome, as it did before but the only other way to fix this problem would be to set the param in xml manually for each existing floater, and do it for each new floater added to viewer.