Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-23 | Merge remote-tracking branch 'origin/main' into DRTVWR-559 | Brad Linden | |
2023-06-07 | SL-18328 Fix opening the right profile on click Callingcard embedded to a ↵ | Alexander Gavriliuk | |
Notecard | |||
2023-02-02 | Merge remote-tracking branch 'origin/main' into DRTVWR-559 | Brad Linden | |
2022-10-27 | DRTVWR-570 Mac build fix: unused variables cleanup | Andrey Lihatskiy | |
2022-10-08 | SL-18326 GLTF material functionality in a Notecard | Andrey Kleshchev | |
2022-06-29 | SL-17685 Drag and drop material support WIP | Dave Parks | |
2019-11-13 | Merge in from viewer-release 6.3.5 | Dave Houlton | |
2019-08-10 | DRTVWR-493 LLUI to LLParamSingleton | andreykproductengine | |
2018-08-28 | MAINT-8910 FIXED EEP - clicking at settings embedded into notecard does nothing | maxim_productengine | |
2018-07-19 | MAINT-8842 Should not be able to add Environment Setting Assets to Group ↵ | andreykproductengine | |
Notices on a Non-EEP region | |||
2018-06-20 | Adding settings DAD type | Rider Linden | |
2018-03-06 | Settings type inventory objects and upload the assests. | Rider Linden | |
2017-04-06 | MAINT-7267 Fixed UI missing last symbol of string on hi-res monitors. | andreykproductengine | |
2017-01-04 | MAINT-918 Newline was not displayed correctly in chat window. | andreykproductengine | |
2017-01-04 | MAINT-897 show confirmation dialog when copying notecard | Mnikolenko Productengine | |
2016-03-16 | merge changes for DRTVWR-417 | Oz Linden | |
2015-12-29 | MAINT-5984 FIXED Incorrect cursor position with UI scale >1.0 | andreykproductengine | |
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2014-10-20 | Update to build on Xcode 6.0: Large (and final) collection of fixes for ↵ | callum_linden | |
unused variables, unused const-variables, unused member variables & functions etc. Also removed flags from CMake | |||
2014-05-09 | MAINT-3981 FIXED [SECURITY] Notecard being passed around that crashes any V3 ↵ | AndreyL ProductEngine | |
based viewer when opened. Correct fix after testing. | |||
2014-03-12 | merge with release | Richard Linden | |
2013-10-01 | MAINT-3174 (When resident is sharing some item with you, there is no context ↵ | MaximB ProductEngine | |
menu in IM conversation.) | |||
2013-08-09 | second phase summer cleaning | Richard Linden | |
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc. | |||
2013-07-30 | Summer cleaning - removed a lot of llcommon dependencies to speed up build times | Richard Linden | |
consolidated most indra-specific constants in llcommon under indra_constants.h fixed issues with operations on mixed unit types (implicit and explicit) made LL_INFOS() style macros variadic in order to subsume other logging methods such as ll_infos added optional tag output to error recorders | |||
2013-04-19 | merge changes for DRTVWR-294 | Oz Linden | |
2013-03-29 | Update Mac and Windows breakpad builds to latest | Graham Madarasz | |
2013-01-24 | merging in viewer-beta. | Nyx Linden | |
Most of the merge was clean, a couple conflicts. Brought over a couple patches manually for llpolymesh. | |||
2012-10-11 | Updating linux build to gcc4.6 | Don Kjer | |
2012-08-23 | MAINT-836 FIXED Set title and description for Preview Texture floater if ↵ | maxim_productengine | |
it's called from link in notecard | |||
2012-01-31 | EXP-1513 FIX Underscore ( _ ) fails to show in first chat entry in Local Chat | Richard Linden | |
2011-11-04 | EXP-1541 update -- Route inventory items sent in a Notecard to correct ↵ | Leslie Linden | |
locations rather than auto-sorting by asset type * New code specifies explicit destination for "copy from notecard" or null, indicating the sim should determine the placement. Reviewed by Stone. | |||
2011-09-29 | EXP-1209 FIXED Sidetray removed. | Paul ProductEngine | |
- Removed all sidetray dependencies and the sidetray itself. - Also removed LLFloaterSidetrayTab and LLSidetrayListener as unused. | |||
2011-09-22 | EXP-1223 FIXED (Create and register a floater for Places side tab) | Paul ProductEngine | |
- Added xml for a new floater and registred it in the floaterreg - Removed side tray dependencies - Added static helper method: LLFloaterSidePanelContainer::showPanel | |||
2011-01-05 | SH-741 FIXED Mesh assets cannot be dragged into notecards | Loren Shih | |
Added DAD_MESH to list of text editor -allowed drag and drop types. Minor tab reformatting. | |||
2010-10-13 | correct licenses (fix problem with license change merge) | Oz Linden | |
2010-09-22 | Merge | Matthew Breindel (Falcon) | |
2010-09-22 | Remove LL_MESH_ENABLED macros (fixes drag and drop). Add mesh stitching ↵ | Dave Parks | |
type back into tools floater. | |||
2010-09-21 | Fix for build failures - disabling tcmalloc for now | Brad Payne (Vir Linden) | |
2010-08-25 | merge | Dave Parks | |
2010-07-22 | EXT-8459 FIXED preventing crashes: 1) ensure that pointer to inventory item ↵ | Mike Antipov | |
is still valid when landmark is loaded from notecard and 2) adding a check for region capability There are two reasons of the crash reported in the bug: * absence of the "CopyInventoryFromNotecard" capability in region (which leads to crash while logging of a LL_ERRS) * referencing to an invalid pointer to LLInventoryItem in callback. The first issue is fixed by preventing sending of the "CopyInventoryFromNotecard" message if it is not supported (in the "copy_inventory_from_notecard()") The second issue caused by such reason: * Notecard stores LLPointer to each embedded inventory item * When Landmark is clicked it should be opened in Places Panel and inventory item should copied into agent inventory * If it is unknown to agent it is requested and pointer (but not LLPointer!) to inventory item was bound to an appropriate callback * Then when landmark is loaded that inventory item is copied to inventory. * If notecard was closed before callback was trigged all instances to embedded inventory items were destroyed. This leads to crash when trigged callback tries to reference to bound pointer to inventory item (for landmarks) Fix is to pass LLPointer instead of pointer to inventory item into callback to ensure item is valid when it is needed. Details: * updated LLEmbeddedItems::getEmbeddedItem() to return LLPointer to inventory item (and renamed to getEmbeddedItemPtr) * updated LLViewerTextEditor::openEmbeddedItem() to get LLPointer to inventory item * updated LLViewerTextEditor::openEmbeddedLandmark() to get LLPointer to inventory item Patch also contains some more places where pointer is replaced with LLPointer to be consistent. NOTE: there are several LLViewerTextEditor::openEmbeddedXXX() methods which still get pointer to inventory item. It is safe for now because they use it synchronously. I have added a note at their declaration. Reviewed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/784/ --HG-- branch : product-engine | |||
2010-06-10 | Add "LL_MESH_ENABLED" preprocessor flag for toggling mesh code. Couple of ↵ | Dave Parks | |
merge fixes. | |||
2010-04-06 | YET another hairy merge from viewer-trunk. Conflicts resolved... so far. | Tofu Linden | |
2010-04-05 | EXT-6703 : LLInventory.h cleanup and create new LLInventoryDefines | Loren Shih | |
Took out enums and flags from LLInventory into LLInventoryDefines Did a bunch of header file reformatting for LLInventory.h Change made to simulator files as well. | |||
2010-03-20 | merge | Dave Parks | |
2010-03-18 | Fixed major bug EXT-2707 - Coalesced objects do not show the proper icon in ↵ | Dmitry Zaporozhan | |
inventory. Added new icon for multi-objects. New icon is used in inventory, object inventory and buy floater. New icon can not be used in Group Notices because server does not send enough info in GroupNoticesListReply. --HG-- branch : product-engine | |||
2010-02-03 | merge from viewer2. | Tofu Linden | |
2010-01-22 | merge | richard | |
2010-01-22 | LLPointer cleanup and fix for EXT-4413 | richard | |
reviewed by Rick | |||
2010-01-20 | Merge from viewer2. Minor conflict resolved. | Tofu Linden | |
2010-01-18 | work on EXT-4322 Remove the Communicate floater | Ychebotarev ProductEngine | |
leave some LLFloaterChat usages commented for later review... --HG-- branch : product-engine |