Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-27 | Merged lindenlab/viewer-neko into default | Ruslan Teliuk | |
2016-09-27 | MAINT-6737 [VOB] Show confirmation floater when dnd an image to an Outfit folder | Mnikolenko Productengine | |
2016-09-26 | MAINT-6756: Added ForceSitAvatar to the list of things an Exp can do in the ↵ | Rider Linden | |
dialog. | |||
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-29 | MAINT-6770 Remember appearance floater's chosen tab across logins | andreykproductengine | |
2016-09-29 | MAINT-6775 ParserWarning spam in viewer log | Mnikolenko Productengine | |
2016-09-26 | Merge | Rider Linden | |
2016-09-26 | Back out a change that never got merged into viewer-release. | Rider Linden | |
2016-09-26 | Merged lindenlab/viewer-release into default | Rider Linden | |
2016-09-26 | MAINT-6744 'System UI size factor has changed... ' shouldn't appear after ↵ | AndreyL ProductEngine | |
installation | |||
2016-09-23 | MAINT-6747 eliminating convertion error | andreykproductengine | |
2016-09-23 | MAINT-5232: Try workaround for dubious llcorehttp mem usage test. | Nat Goodspeed | |
2016-09-23 | Merged in Ansariel's fix for MAINT-6752 | AndreyL ProductEngine | |
2016-09-23 | MAINT-6752 Updated contributions.txt | AndreyL ProductEngine | |
2016-09-22 | MAINT-6694 Gesture floater crash | andreykproductengine | |
2016-09-20 | Small improvements to UI DPI scaling on Windows: | Ansariel | |
* Use USER_DEFAULT_SCREEN_DPI define from WinUser.h * Change Win32 SDK target version to Windows Vista or greater * Define WM_DPICHANGED as preprocessor definition as in WinUser.h * Cull manual definitions of WM_MOUSEWHEEL and WHEEL_DELTA which are part of the Win32 SDK since Windows NT 4.0 | |||
2016-09-20 | MAINT-6735 brackets fix | andreykproductengine | |
2016-09-20 | MAINT-6655 fixed group list and inspector not always switching to default icon | andreykproductengine | |
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-19 | MAINT-6733 FIXED On build disabled land, the build button is enabled when ↵ | Mnikolenko Productengine | |
left clicking any touchable object. | |||
2016-09-17 | MAINT-5232: Eliminate pointless string search for "class " prefix. | Nat Goodspeed | |
The Visual C++ runtime produces typeid(MyClass).name() as "class MyClass". It's prudent to check for the presence of that prefix before stripping off the first six characters, but if the first comparison should ever fail, find() would continue searching the rest of the string for "class " -- a search guaranteed to fail. Use compare() instead. | |||
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-16 | Merged in natty_linden/viewer-webprofileurl (pull request #16) | Andrey Lihatskiy | |
MAINT-6731 Use web profile URLs from the grid configuration | |||
2016-09-16 | Merged in Ansariel/viewer-bear-coro-namefix (pull request #14) | Andrey Lihatskiy | |
Fix HttpCoroutineAdapter name for clarity | |||
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-15 | Added tag 4.0.8-release for changeset 45eaee56883d | Oz 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 | MAINT-6731 Use web profile URLs from the grid configuration | Natty Linden | |
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 | MAINT-6718 Can't Wear - Replace current outfits. | Mnikolenko Productengine | |
2016-09-12 | MAINT-6720 Fixed onVisibilityChange() crash in LLTextBase | andreykproductengine | |
2016-09-12 | MAINT-6720 Fixed onVisibilityChange() crash in LLTextBase | andreykproductengine | |
2016-09-12 | SL-444 Add Abuse Report Submision Confirmation Pop up | Mnikolenko Productengine | |
2016-09-09 | MAINT-6462 Built-in browser plays video vertically flipped | callum@lindenlab.com | |
2016-09-09 | MAINT-6711 "Object view" rotates around the avatar | andreykproductengine | |
2016-09-07 | Restore version of CEF that has the correct Y flipping enabled - ↵ | Callum Prentice | |
(2526/chrome47 version - soon to be replaced with 2704/chrome 51) | |||
2016-09-07 | MAINT-6584, MAINT-5011: Change new 'throw' to LLTHROW() | Nat Goodspeed | |
to be consistent with new exception conventions. | |||
2016-09-07 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-vlc | Nat Goodspeed | |