summaryrefslogtreecommitdiff
path: root/indra/newview
AgeCommit message (Collapse)Author
2016-10-10increment viewer version to 4.1.2Oz Linden
2016-10-07Merged in lindenlab/viewer-bearAndreyL ProductEngine
2016-10-07MAINT-6792 Improvements for HUD warningandreykproductengine
2016-10-07Merged in andreyl_productengine/viewer-bear-marchcat (pull request #20)Andrey Lihatskiy
Fixes for two image loading crashes
2016-10-07MAINT-6800 FIXED Using Snapshot Freeze Frame option causes several issuesMnikolenko Productengine
2016-10-07Crashfixes for image loadingAndreyL ProductEngine
2016-10-06Merged in andreyl_productengine/viewer-neko-marchcat (pull request #55)Andrey Lihatskiy
MAINT-6785 Don't parse XML when creating dummy LLPanel
2016-10-06MAINT-6785 Don't parse XML when creating dummy LLPanelAndreyL ProductEngine
2016-10-06MAINT-6800 FIXED Using Snapshot Freeze Frame option causes several issuesMnikolenko Productengine
2016-10-05MAINT-6761 Play button in the top right corner was not functioning when pressedandreykproductengine
2016-10-04MAINT-6748 Add Report Abuse as new Toolbar entryandreykproductengine
2016-10-04MAINT-6779 Allow to use last pic from Abuse report floater after relogMnikolenko Productengine
2016-10-04Reverted 208c0e0AndreyL ProductEngine
2016-10-03MergeRider Linden
2016-09-30MAINT-6759: Do not automatically hide the "Stand" button. Rely on the state ↵Rider Linden
of the avatar to enable/disable buttons.
2016-09-30MAINT-6786 scale gets out of bonds and causes crashandreykproductengine
2016-09-30MAINT-6785 Clean up log spam caused by unused/undeclared "foto_bg_panel"AndreyL ProductEngine
2016-09-30Merged in lindenlab/viewer-bearAndreyL ProductEngine
2016-09-28SL-451 - SSE-optimized matrix multiply, used in initSkinningMatrixPalette()Brad Payne (Vir Linden)
2016-09-28MAINT-6123 Fix for LLTextureCache::writeToFastCache crashAndreyL ProductEngine
2016-09-28Merged lindenlab/viewer-neko into defaultRuslan Teliuk
2016-09-28MAINT-6773 Add payment messageMnikolenko Productengine
2016-09-27SL-451 - support for getJoint() by number, use in initSkinningMatrixPalette()Brad Payne (Vir Linden)
2016-09-27MAINT-5232: LLWinDebug has empty constructor.Nat Goodspeed
This didn't become apparent until we got past the other Windows build issues and attempted to link the viewer itself.
2016-09-27MAINT-6775 ParserWarning spam in viewer logMnikolenko Productengine
2016-09-27Merged lindenlab/viewer-neko into defaultRuslan Teliuk
2016-09-27MAINT-6737 [VOB] Show confirmation floater when dnd an image to an Outfit folderMnikolenko Productengine
2016-09-27mergeBrad Payne (Vir Linden)
2016-09-26MAINT-6756: Added ForceSitAvatar to the list of things an Exp can do in the ↵Rider Linden
dialog.
2016-09-26MAINT-4950 Appearance panel performance improvements.andreykproductengine
2016-09-29MAINT-6770 Remember appearance floater's chosen tab across loginsandreykproductengine
2016-09-29MAINT-6775 ParserWarning spam in viewer logMnikolenko Productengine
2016-09-26MergeRider Linden
2016-09-26Back out a change that never got merged into viewer-release.Rider Linden
2016-09-26Merged lindenlab/viewer-release into defaultRider Linden
2016-09-26MAINT-6744 'System UI size factor has changed... ' shouldn't appear after ↵AndreyL ProductEngine
installation
2016-09-20MAINT-6735 brackets fixandreykproductengine
2016-09-20MAINT-6655 fixed group list and inspector not always switching to default iconandreykproductengine
2016-09-20MAINT-6735 Teleport offer sound does not play when the the destination ↵andreykproductengine
region's maturity exceeds the current maturity settings
2016-09-20mergeBrad Payne (Vir Linden)
2016-09-19MAINT-6733 FIXED On build disabled land, the build button is enabled when ↵Mnikolenko Productengine
left clicking any touchable object.
2016-09-16MergeRider Linden
2016-09-16MergeRider Linden
2016-09-16MAINT-6570: Fix bad merge.Rider Linden
2016-09-16MAINT-5232: Fix a couple new LLGlobalEconomy::Singleton references.Nat Goodspeed
2016-09-16Automated merge with ssh://bitbucket.org/lindenlab/viewer-releaseNat Goodspeed
2016-09-16MAINT-6694 Console overflow crash in gestures.andreykproductengine
2016-09-15MAINT-5232: Normalize LLSingleton subclasses.Nat Goodspeed
A shocking number of LLSingleton subclasses had public constructors -- and in several instances, were being explicitly instantiated independently of the LLSingleton machinery. This breaks the new LLSingleton dependency-tracking machinery. It seems only fair that if you say you want an LLSingleton, there should only be ONE INSTANCE! Introduce LLSINGLETON() and LLSINGLETON_EMPTY_CTOR() macros. These handle the friend class LLSingleton<whatevah>; and explicitly declare a private nullary constructor. To try to enforce the LLSINGLETON() convention, introduce a new pure virtual LLSingleton method you_must_use_LLSINGLETON_macro() which is, as you might suspect, defined by the macro. If you declare an LLSingleton subclass without using LLSINGLETON() or LLSINGLETON_EMPTY_CTOR() in the class body, you can't instantiate the subclass for lack of a you_must_use_LLSINGLETON_macro() implementation -- which will hopefully remind the coder. Trawl through ALL LLSingleton subclass definitions, sprinkling in LLSINGLETON() or LLSINGLETON_EMPTY_CTOR() as appropriate. Remove all explicit constructor declarations, public or private, along with relevant 'friend class LLSingleton<myself>' declarations. Where destructors are declared, move them into private section as well. Where the constructor was inline but nontrivial, move out of class body. Fix several LLSingleton abuses revealed by making ctors/dtors private: LLGlobalEconomy was both an LLSingleton and the base class for LLRegionEconomy, a non-LLSingleton. (Therefore every LLRegionEconomy instance contained another instance of the LLGlobalEconomy "singleton.") Extract LLBaseEconomy; LLGlobalEconomy is now a trivial subclass of that. LLRegionEconomy, as you might suspect, now derives from LLBaseEconomy. LLToolGrab, an LLSingleton, was also explicitly instantiated by LLToolCompGun's constructor. Extract LLToolGrabBase, explicitly instantiated, with trivial subclass LLToolGrab, the LLSingleton instance. (WARNING: LLToolGrabBase methods have an unnerving tendency to go after LLToolGrab::getInstance(). I DO NOT KNOW what should be the relationship between the instance in LLToolCompGun and the LLToolGrab singleton instance.) LLGridManager declared a variant constructor accepting (const std::string&), with the comment: // initialize with an explicity grid file for testing. As there is no evidence of this being called from anywhere, delete it. LLChicletBar's constructor accepted an optional (const LLSD&). As the LLSD parameter wasn't used, and as there is no evidence of it being passed from anywhere, delete the parameter. LLViewerWindow::shutdownViews() was checking LLNavigationBar:: instanceExists(), then deleting its getInstance() pointer -- leaving a dangling LLSingleton instance pointer, a land mine if any subsequent code should attempt to reference it. Use deleteSingleton() instead. ~LLAppViewer() was calling LLViewerEventRecorder::instance() and then explicitly calling ~LLViewerEventRecorder() on that instance -- leaving the LLSingleton instance pointer pointing to an allocated-but-destroyed instance. Use deleteSingleton() instead.
2016-09-15increment viewer version to 4.0.9Oz Linden
2016-09-14MAINT-6731 Use web profile URLs from the grid configurationNatty Linden