Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-10 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2017-02-06 | MAINT-2001 Fixes colums misbeheaving | andreykproductengine | |
2017-02-03 | MAINT-7103 New URI namespace /legacyname | Mnikolenko Productengine | |
2017-01-18 | MAINT-7059 [contribution] Import of custom spellcheck dictionary fails silently | Mnikolenko Productengine | |
2017-01-13 | MAINT-1747 Fixed after switching Preferences tabs, radio buttons don't get ↵ | andreykproductengine | |
focus on click | |||
2017-01-11 | MAINT-2001 Fixed the width of columns cannot be changed in Inspect Object | andreykproductengine | |
2017-01-11 | MAINT-7031 /displayname & /completename should perform regardless of "View ↵ | Mnikolenko Productengine | |
Display Names" viewer setting. | |||
2017-01-05 | MAINT-7029 Pop-up menu isn't shown in Place profile if all menu items are ↵ | Mnikolenko Productengine | |
disabled | |||
2017-01-04 | MAINT-918 Newline was not displayed correctly in chat window. | andreykproductengine | |
2016-12-22 | Merged in lindenlab/viewer-lynx | AndreyL ProductEngine | |
2016-12-21 | MAINT-7020 llui/llfloater.cpp should not access settings | AndreyL ProductEngine | |
2016-12-20 | Merged in lindenlab/viewer-lynx | AndreyL ProductEngine | |
2016-12-19 | Merged STORM-2142 | AndreyL ProductEngine | |
2016-12-14 | MAINT-6899 Viewer should use fixed buttons instead of a scroll list for tabs ↵ | Mnikolenko Productengine | |
in Appearance floater | |||
2016-12-08 | MAINT-6979 Scroll bar in Appearance -> Wearing jumps up to the top each time ↵ | Mnikolenko Productengine | |
an attachment is detached | |||
2016-11-28 | MAINT-5456 Button tooltips in Appearance floater should now be localisable | andreykproductengine | |
2016-11-19 | STORM-2140 LLLineEditor enabled-state cannot properly set via XUI | Ansariel | |
2016-11-16 | STORM-2140 LLLineEditor enabled-state cannot properly set via XUI | Mnikolenko Productengine | |
2016-11-15 | MAINT-6929 [Contribution] E-mail links are not parsed correctly when top ↵ | Mnikolenko Productengine | |
level domain is over 6 characters. | |||
2016-11-14 | Merged in lindenlab/viewer-cleanup | AndreyL ProductEngine | |
2016-11-07 | STORM-2140 LLLineEditor enabled-state cannot properly set via XUI | Mnikolenko Productengine | |
2016-10-21 | MAINT-6860 Appearance floater crash due to missnamed variable | andreykproductengine | |
2016-10-13 | MAINT-5232: Use LLHeteroMap for LLUICtrlFactory::ParamDefaults objs | Nat Goodspeed | |
instead of making every ParamDefaults specialization an LLSingleton in its own right. | |||
2016-10-11 | MAINT-5232: Merge up to VLC viewer from viewer-release | Nat Goodspeed | |
2016-10-11 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2016-10-10 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-09-26 | MAINT-4950 Appearance panel performance improvements. | andreykproductengine | |
2016-09-30 | MAINT-6783 Xml parser warnings should show the file name | Mnikolenko Productengine | |
2016-09-23 | MAINT-6747 eliminating convertion error | andreykproductengine | |
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-13 | MAINT-6726 Fixed LLLineEditor menus staying in memory forever | andreykproductengine | |
2016-09-12 | MAINT-6720 Fixed onVisibilityChange() crash in LLTextBase | andreykproductengine | |
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-08-30 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-08-25 | MAINT-6511 Buildfix | AndreyL ProductEngine | |
2016-08-23 | MAINT-6511 Crash in LLFloaterView::restoreAll - exception handling | AndreyL ProductEngine | |
2016-08-23 | MAINT-6511 Crash in LLFloaterView::restoreAll - exception handling | AndreyL ProductEngine | |
2016-08-23 | MAINT-6648 FIXED [SECURITY] Link tags do not filter unicode and allow for ↵ | Mnikolenko Productengine | |
easy URL spoofing. | |||
2016-08-16 | Merge VOB with 4.0.8-release | pavelkproductengine | |
2016-08-11 | merge changes for 4.0.7-release | Oz Linden | |
2016-08-09 | Reverted change to lllayoutstack.cpp which could possibly cause memory leak | pavelkproductengine | |
2016-08-10 | MAINT-6608 FIXED URI parser problem with links with username, password | Mnikolenko Productengine | |
2016-08-02 | MAINT-6605 Fix for the crash in LLClipboard::addToClipboard() - Added the ↵ | AndreyL ProductEngine | |
exception handling | |||
2016-07-28 | MAINT-6511 Replaced c-style casts with dynamic_cast in llfloater.cpp | AndreyL ProductEngine | |
2016-07-28 | Merged in lindenlab/viewer-lynx | AndreyL ProductEngine | |
2016-07-14 | MAINT-6572 FIXED UI freezes when clicking on a specific folder in the inventory | andreykproductengine | |