Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-03-10 | SL-409 - fixes for viewer asset metrics. Copy and/or assignment of Recording ↵ | Brad Payne (Vir Linden) | |
objects is failing, changed to create LLSD blob earlier and just copy that. | |||
2017-03-06 | merge changes for 5.0.2-release | Oz Linden | |
2017-03-06 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2017-02-27 | Look for logcontrol-dev.xml in the user settings directory | Oz Linden | |
2017-02-22 | Use new version info from CEF plugin to display in About box | Callum Prentice | |
2017-02-21 | First round of changes to replace LLCEFLib with Dullahan. Mostly Windows ↵ | Callum Prentice | |
changes in this batch since I'm working on Windows box but some speculative macOS ones too although they are quite untested | |||
2017-02-15 | MAINT-7051 Release Notes url shouldn't include the EDU parameter | AndreyL ProductEngine | |
2017-02-13 | Automated merge with head of callum_linden/viewer64-callum | callum@lindenlab.com | |
2017-02-03 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2017-01-27 | Merge | Rider Linden | |
2017-01-26 | MAINT-7082: Clean up, remove log spam. | Rider Linden | |
2017-01-26 | MAINT-7082: max_idle_time unused. | Rider Linden | |
2017-01-25 | MAINT-7082: Remove waiting loop in frame when textures queued for download ↵ | Rider Linden | |
in alternate thread. With debug spam for observation. | |||
2016-12-22 | MAINT-7024 Release notes page was requested prior to proxy initialization. | andreykproductengine | |
2016-12-20 | DRTVWR-418 fix BOOL/bool comparison that errors out as as warning on VS 2013 ↵ | Callum Prentice | |
builds | |||
2017-05-19 | MAINT-2060 Fixed Double Freeze when clicking on Help>About Second Life | username = daianakproductengine | |
2016-12-09 | Simplify version line in the About box, add address size to it | Oz Linden | |
2016-12-05 | merge changes for 5.0.0-release | Oz Linden | |
2016-12-05 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
DRTVWR-412 Bento (avatar skeleton extensions) | |||
2016-12-02 | show the build address size in the About box | Oz Linden | |
2016-11-21 | Merged in Ansariel/storm-2141 | AndreyL ProductEngine | |
2016-11-16 | merge | Brad Payne (Vir Linden) | |
2016-11-14 | STORM-2141: Fix various inventory floater related issues: | Ansariel | |
* Opening new inventory via Control-Shift-I shortcut uses legacy and potentinally dangerous code path * Closing new inventory windows don't release memory * During shutdown legacy and inoperable code for inventory window cleanup is called * Remove old and unused inventory legacy code | |||
2016-11-08 | Backed out changeset: 2a56972b1571 | AndreyL ProductEngine | |
Reverting MAINT-6259 | |||
2016-11-08 | Backed out changeset: 27782e83386b | AndreyL ProductEngine | |
Reverting MAINT-6793 | |||
2017-03-21 | pull from V64 gate | Glenn Glazer | |
2017-03-16 | merge cleanup | Glenn Glazer | |
2017-03-16 | pull from viewer64 gate | coyot@coyot-sager-PC | |
2017-02-28 | merge | coyot@coyot-sager-PC | |
2016-11-14 | MAINT-6920 More information in About Second Life floater | andreykproductengine | |
2016-11-14 | Merged in lindenlab/viewer-cleanup | AndreyL ProductEngine | |
2016-10-18 | merge | Brad Payne (Vir Linden) | |
2016-10-18 | MAINT-6793 Rigged mesh sometimes full of holes | andreykproductengine | |
2016-10-11 | MAINT-5232: Merge up to VLC viewer from viewer-release | Nat Goodspeed | |
2016-10-10 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-09-20 | merge | Brad Payne (Vir Linden) | |
2016-09-16 | Merge | Rider Linden | |
2016-09-16 | Merge | Rider Linden | |
2016-09-16 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
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 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-09-14 | Merge | Rider Linden | |
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: 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 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
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-20 | MAINT-6662 Don't show release notes on first login | AndreyL ProductEngine | |
2016-08-20 | MAINT-6663 [Win LibVLC] test video buttons still appearing in search | AndreyL ProductEngine | |