Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-20 | MAINT-6735 Teleport offer sound does not play when the the destination ↵ | andreykproductengine | |
region's maturity exceeds the current maturity settings | |||
2016-09-20 | merge | Brad Payne (Vir Linden) | |
2016-09-19 | MAINT-6733 FIXED On build disabled land, the build button is enabled when ↵ | Mnikolenko Productengine | |
left clicking any touchable object. | |||
2016-09-16 | Merge | Rider Linden | |
2016-09-16 | Merge | Rider Linden | |
2016-09-16 | MAINT-6570: Fix bad merge. | Rider Linden | |
2016-09-16 | MAINT-5232: Fix a couple new LLGlobalEconomy::Singleton references. | Nat Goodspeed | |
2016-09-16 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-09-16 | MAINT-6694 Console overflow crash in gestures. | andreykproductengine | |
2016-09-15 | MAINT-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-15 | increment viewer version to 4.0.9 | Oz Linden | |
2016-09-14 | MAINT-6731 Use web profile URLs from the grid configuration | Natty Linden | |
2016-09-15 | MAINT-6734 Fixed processData() crash in LLMeshHeaderHandler | andreykproductengine | |
2016-09-15 | Merged in pavelkproductengine/visual-outfit-browser | AndreyL ProductEngine | |
2016-09-15 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-09-14 | Merge | Rider Linden | |
2016-09-14 | MAINT-6723 FIXED [VOB] Crash in LLOutfitGallery::buildItemPanel(int) | Mnikolenko Productengine | |
2016-09-13 | MAINT-6726 Fixed LLLineEditor menus staying in memory forever | andreykproductengine | |
2016-09-13 | MAINT-6726 Fixed LLLineEditor menus staying in memory forever | andreykproductengine | |
2016-09-13 | SL-455 - avatar_lad.xml small fixes for asymmetry bugs | Brad Payne (Vir Linden) | |
2016-09-13 | MAINT-6718 Can't Wear - Replace current outfits. | Mnikolenko Productengine | |
2016-09-12 | SL-455 - Fix for slider bug: body width on mTail6 had wrong scales. | Brad Payne (Vir Linden) | |
2016-09-12 | SL-444 Add Abuse Report Submision Confirmation Pop up | Mnikolenko Productengine | |
2016-09-09 | MAINT-6711 "Object view" rotates around the avatar | andreykproductengine | |
2016-09-07 | MAINT-6699 FIXED [VOB] Crash in LLSnapshotLivePreview::getBigThumbnailImage() | Mnikolenko Productengine | |
2016-09-06 | SL-395 - can enable/disable scale lock in mesh upload UI. Feature works. | Brad Payne (Vir Linden) | |
2016-09-06 | MAINT-6698 [VOB] "Save" button is always enabled for outfit with non-default ↵ | Mnikolenko Productengine | |
image even if there were no changes | |||
2016-09-05 | MAINT-6697 make sure we have data to process | andreykproductengine | |
2016-09-05 | MAINT-6685 [VOB] Outfit Image from an Outfit Gallery disappears after ↵ | Mnikolenko Productengine | |
editing outfit | |||
2016-09-02 | SL-395 - partial support for joint scale locking via flag in skin info | Brad Payne (Vir Linden) | |
2016-09-02 | merge | Brad Payne (Vir Linden) | |
2016-09-02 | MAINT-6461 crash due to invalid menu pointer during visibility change | andreykproductengine | |
2016-09-02 | MAINT-6461 crash due to invalid menu pointer during visibility change | andreykproductengine | |
2016-09-02 | SL-124 - small comment cleanups | Brad Payne (Vir Linden) | |
2016-09-01 | MAINT-6686 FIXED [VOB] Outfit Snapshot floater should be resized ↵ | Mnikolenko Productengine | |
independently of general Snapshot floater | |||
2016-08-31 | MAINT-6386 Update first-time Viewer Login screen with new LISI screenshots | AndreyL ProductEngine | |
2016-08-31 | MAINT-5232: Add LLSingletonBase::cleanupAll() and deleteAll() calls | Nat Goodspeed | |
near the end of LLAppViewer::cleanup() so every LLSingleton class that hasn't already been explicitly cleaned up gets a chance to perform its own cleanup. | |||
2016-08-31 | MAINT-5232: LLMetricPerformanceTesterBasic::cleanClass->cleanupClass | Nat Goodspeed | |
for consistency with everything else, so we can use SUBSYSTEM_CLEANUP() macro to call it. | |||
2016-08-30 | MAINT-5232: LLGlobalEconomy is now an LLSingleton. | Nat Goodspeed | |
It used to contain an LLSingleton called Singleton, requiring LLGlobalEconomy::Singleton::instance() to access it rather than the conventional LLGlobalEconomy::instance(). This has been fixed, so normalize references accordingly. | |||
2016-08-30 | MAINT-5232: Change getIfExists() call to instanceExists(). | Nat Goodspeed | |
LLSingleton::getIfExists() has been eliminated. The only remaining way to detect whether a given LLSingleton has been instantiated is to call instanceExists(). But the relevant cleanup code should be refactored to cleanupSingleton() anyway, which would make this specific call moot. | |||
2016-08-30 | MAINT-5232: Remove unreferenced mInFlightCounter. | Nat Goodspeed | |
This fixes fatal warnings. | |||
2016-08-30 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-08-30 | MAINT-6682 Viewer crashes when deleting notecards one by one | Mnikolenko Productengine | |
2016-08-29 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-vlc | Nat Goodspeed | |
2016-08-26 | MAINT-5011: Add top-level exception handlers in LLAppViewer::frame(). | Nat Goodspeed | |
2016-08-26 | MAINT-5011: Fix misleading indentation in WINMAIN(). | Nat Goodspeed | |
2016-08-26 | MAINT-6658 Profile was opening app url in browser. | andreykproductengine | |
2016-08-29 | MAINT-1768 Previous changes are reverted. Sharing items from trash is ↵ | Mnikolenko Productengine | |
disabled now. | |||
2016-08-26 | MAINT-6665 [Contribution] Viewer crashes when setting a local texture from a ↵ | Mnikolenko Productengine | |
path containing non-standard characters | |||
2016-08-26 | MAINT-6676 FIXED Viewer crashes when clicking "Default creation permissions" ↵ | Mnikolenko Productengine | |
before logging in. |