Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-28 | DRTVWR-440, merge in latest from 6.3.7 release | Dave Houlton | |
2019-11-13 | Merge in from viewer-release 6.3.5 | Dave Houlton | |
2019-11-12 | Downstream merge from 494-maint-wassail | AndreyL ProductEngine | |
2019-09-05 | Upstream merge from viewer-neko | AndreyL ProductEngine | |
2019-08-29 | Merge from lindenlab/viewer-release | andreykproductengine | |
2019-08-26 | Merge 6.3.1 viewer-release | Graham Linden | |
2019-08-10 | DRTVWR-493 LLUI to LLParamSingleton | andreykproductengine | |
2019-08-15 | SL-209 Cleanup Merchant Outbox | andreykproductengine | |
2018-07-30 | MAINT-8904: Creating new setting in inventory now causes simulator to assign ↵ | Rider Linden | |
default asset ID to inventory item. | |||
2018-06-28 | Creating settings objects in the correct folders. Correctly check if clouds ↵ | Rider Linden | |
paused. | |||
2018-06-08 | [DRTVWR-476] - create new wearable type | Anchor Linden | |
2018-05-10 | Settings editor available from the open context on the menu. Can edit ↵ | Rider Linden | |
inventory items. | |||
2018-05-03 | Inventory context menus and increment attrib for settings panels. | Rider Linden | |
2018-03-06 | Settings type inventory objects and upload the assests. | Rider Linden | |
2018-02-26 | Added settings inventory object with subtype | Rider Linden | |
2017-11-06 | MAINT-7961 Search link in Recent tab of Inventory should open the Search ↵ | Mnikolenko Productengine | |
filters for Inventory | |||
2017-06-20 | MAINT-7508 Fixed Trash says that it will delete items, but some items are ↵ | andreykproductengine | |
being ignored | |||
2017-05-22 | MAINT-7419 Workaround for some purge and trash issues, stuck descendants count | andreykproductengine | |
2017-02-15 | MAINT-7118 Swapping legacy people API with new cache | andreykproductengine | |
2016-11-21 | Merged in Ansariel/storm-2141 | AndreyL ProductEngine | |
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-14 | Merged in lindenlab/viewer-cleanup | AndreyL ProductEngine | |
2016-11-04 | MAINT-6906 Editing landmark name removes the land mark coordinates | 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-07-07 | Merged in lindenlab/viewer-lynx | AndreyL ProductEngine | |
2016-06-17 | MAINT-6490 Newly created inventory reports version mismatch | andreykproductengine | |
2016-05-20 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-04-20 | MAINT-6341 Changing properties of the object in inventory are not saved ↵ | Mnikolenko Productengine | |
after transfer it to next owner | |||
2016-04-04 | merge with 4.0.3-release | Oz Linden | |
2016-03-31 | I hate polluting the commit history. | Aura Linden | |
2016-03-31 | Faster to copy changes than merge branches. | Aura Linden | |
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2015-10-14 | MAINT-5732: Change to the way event polling handles error conditions and ↵ | Rider Linden | |
cancel calls. Refactor any remaining LLCore::HTTPHandlers to use boost::shared_ptr Started minor refactor in the materials manager into coroutines (unfinished) | |||
2015-08-28 | MAINT-5574: Added default parameter for callbalk on AISAPI interface. | Rider Linden | |
Better check on callback exsit in coroutine Don't create AISAPI::completion_t if there is no call back passed. | |||
2015-08-12 | MAINT-5500: Finish converting the AIS responders to the new coroutine model, ↵ | Rider Linden | |
Cleaned up dead an unused code. MAINT-4952: Added COPY and MOVE methods to Core:Http adapter | |||
2015-08-11 | Merge | Rider Linden | |
2015-07-31 | Mystery solved! compl is a keyword... who knew! | rider | |
2015-07-30 | Added patchAndYield to httputil adapter | Rider Linden | |
Converted All AISv3 commands (except copyLibrary) to coro model. | |||
2015-07-15 | Merge | Rider Linden | |
2015-07-14 | 3.8.1-release | Oz Linden | |
2015-06-09 | Removed dead code, llsdmessage, llcapabilitylistener and the associated tests. | Rider Linden | |
2015-05-29 | Pull merge from lindenlab/viewer-release | Merov Linden | |
2015-05-27 | merge | Brad Payne (Vir Linden) | |
2015-04-10 | DRTVWR-397 WIP - removed get_linked_uuid(), duplicate of ↵ | Brad Payne (Vir Linden) | |
gInventory.getLinkedItemID() | |||
2015-04-09 | MAINT-5069 WIP, MAINT-5071 WIP - handle dropping objects and attaching from ↵ | Brad Payne (Vir Linden) | |
ground. WIP on better tracking of attachment requests via various message in LLSelectMgr. | |||
2015-03-09 | SL-103 WIP - fix for some inventory items not enabling add | Brad Payne (Vir Linden) | |
2014-12-29 | Fix for potential crash on exit | Merov Linden | |
2014-12-19 | Pull merge from lindenlab/viewer-release | Merov Linden | |
2014-11-11 | Pull merge from lindenlanb/viewer-release | Merov Linden | |
2014-11-03 | merge | Brad Payne (Vir Linden) | |