Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-06 | merge changes for vmrg-196 | Oz Linden | |
2011-12-05 | STORM-1713: Mouse pointer flickers when hovering over any active/clickable ↵ | Ansariel | |
UI item | |||
2011-12-05 | WIP: Implementing VB manager for complex physics shapes | prep | |
2011-12-05 | LLSD-14: Optional entry points need conditional decls turned on. | Nat Goodspeed | |
Changeset 07cd70e75473 moved LLSD::outstandingCount() and allocationCount() to free functions so we could turn their visibility on/off via LLSD_DEBUG_INFO. But on some platforms, without proper LL_COMMON_API declarations visible when we compile llsd.cpp, those free functions lack proper linkage directives. Declare LLSD_DEBUG_INFO in llsd.cpp so that when the llcommon library is built, the free functions get proper linkage -- independent of compilations of LLSD consumers. | |||
2011-12-05 | STORM-591 Made change per code review request: disable audio when teleport ↵ | Jonathan Yap | |
progress bar is present Added code to start counting the fade in time on login when STATE_STARTED is set | |||
2011-12-02 | FIX VWR-17784 | eli | |
2011-12-02 | FIX VWR-17783 fix html entity | eli | |
2011-12-02 | FIX VWR-17783 | eli | |
2011-12-02 | STORM-1712 Do not sort recent speakers list if mouse is hovered over it | Jonathan Yap | |
2011-12-03 | EXP-1506 FIXED updating IM toasts visibility upoon mouse over and mouse ↵ | Seth ProductEngine | |
leave events. The mouse position is checked every frame in relation to the toast to catch the mouse leaving the toast "i" button when the toast is moved by the screen channel. The fix is intended to avoid the toasts that don't fade in the following scenario: 1. Have User A Send 4 IM messages to User B: a, b, c, d 2. Have User B hover their mouse over the i on toast c (don't click on it just hover) 3. As the other toasts fade observe toast c moves up to the top and does not fade | |||
2011-12-02 | EXP-1642 FIX -- Viewer crash on startup on Mac | Leslie Linden | |
Minimum window size setting no longer forces propagation to the OS before root view is initialized. | |||
2011-12-02 | EXP-1451 FIX -- I want to put my NEARBY CHAT window at the bottom left, but ↵ | Leslie Linden | |
then it obscures chatted text. I repositioned the chat, move and camera floaters. Chat toasts now start 80 up from the bottom left rather than 10. | |||
2011-12-02 | EXP-1649 FIX +1 (client) Turn off web loading spinner until a more visually ↵ | callum | |
pleasing one can be defined | |||
2011-12-02 | storm-1717: fix avatar names in object details floater | Ansariel Hiller | |
2011-12-02 | Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience | Richard Linden | |
2011-12-02 | made slplugin less spammy when it fails to launch | Richard Linden | |
2011-12-02 | EXP-1654 FIX fast timers does not show entire frame when Full bar = Max | Richard Linden | |
2011-12-05 | Automated merge with ↵ | Xiaohong Bao | |
https://bitbucket.org/VirLinden/viewer-development-shining-fixes | |||
2011-12-05 | fix for sh-2738: Texture fetching freezes due to LLcurl | Xiaohong Bao | |
2011-12-05 | merge | Dave Parks | |
2011-12-05 | merge | Brad Payne (Vir Linden) | |
2011-12-02 | fix for SH-2512: Some avatar textures in welcome area never load on first visit | Xiaohong Bao | |
2011-12-02 | EXP-1654 FIX fast timers does not show entire frame when Full bar = Max | Richard Linden | |
2011-12-02 | EXP-1476 FIXED (Moving speak button to empty toolbar while incoming/outgoing ↵ | Paul ProductEngine | |
call dialog is open does not move the dialog as well) Reason: A floater can be docked only to a button which is in visible chain, the visibility of the button itself is not enough. After the button was added to the empty toolbar: mButtonAddSignal is called and the floater tries to dock to the button, but the button's parent(mButtonPanel) is yet invisible at this moment (so the button is not in visible chain). mButtonPanel visibility updates in draw() depending on whether it contains some buttons or not. Solution: Updating mButtonPanel visibility right after the button was added, before mButtonAddSignal | |||
2011-12-02 | EXP-1463 ADDITIONAL FIX (IM chiclets overlay Mini-Location bar) | Paul ProductEngine | |
- Don't let chiclet list left side to be out of chiclet_container | |||
2011-12-02 | SH-1912 Tweak based on QA/resident feedback | Dave Parks | |
2011-12-02 | STORM-591 Made mininum fade time 0.01 seconds to prevent divide by zero and ↵ | Jonathan Yap | |
negative fade times. Rewrote two blocks of code to eliminate early returns. | |||
2011-12-02 | EXP-1372 FIXED Made minimum height of Appearance and Places floaters ↵ | Vadim ProductEngine | |
consistent with other FUI floaters. | |||
2011-12-01 | Automated merge with ↵ | Xiaohong Bao | |
https://bitbucket.org/VirLinden/viewer-development-shining-fixes | |||
2011-12-01 | ER-1473: fix teleporting in sit mode. Viewer fix - reviewed by Callum | Simon Linden | |
2011-12-01 | SH-2726 FIX -- Texture Console and Debug Console inaccessable | Leslie Linden | |
* Removed debug view post build step and moved initialization to first draw for proper setup. | |||
2011-12-01 | FIX VWR-25381 | eli | |
2011-12-01 | EXP-1649 FIX (client) Turn off web loading spinner until a more visually ↵ | callum | |
pleasing one can be defined | |||
2011-12-01 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2011-12-01 | fix for sh-2735: LLCurl causes SL to freeze when logout | Xiaohong Bao | |
2011-12-01 | LLSD-14: Move LLSD::(outstanding|allocation)Count() to free functions. | Nat Goodspeed | |
Free functions can be unconditionally compiled into the .o file, but conditionally hidden in the header file. Static class methods don't have that flexibility: without a declaration in the header file, you can't compile a function definition in the .cpp file. That makes it awkward to use the same llcommon build for production and for unit tests. Why make the function declarations conditional at all? These are debugging functions. They break the abstraction, they peek under the covers. Production code should not use them. Making them conditional on an #ifdef symbol in the unit-test source file means the compiler would reject any use by production code. Put differently, it allows us to assert with confidence that only unit tests do use them. Put new free functions in (lowercase) llsd namespace so as not to clutter global namespace. Tweak the one known consumer (llsd_new_tut.cpp) accordingly. | |||
2011-12-01 | Automated merge with ↵ | Xiaohong Bao | |
https://bitbucket.org/VirLinden/viewer-development-shining-fixes | |||
2011-12-01 | fix for SH-2560: Nearby avatar textures fail to load | Xiaohong Bao | |
and SH-2671: sometimes other avatar textures don't load | |||
2011-12-01 | Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience | Richard Linden | |
2011-12-01 | EXP-1588 FIX Floaters do not snap to edge | Richard Linden | |
2011-12-01 | Build fixes for mac, hopefully Linux too | Leslie Linden | |
2011-12-01 | merge changes for storm-1719 | Oz Linden | |
2011-12-01 | merge changes for storm-1686 | Oz Linden | |
2011-12-01 | storm-1686: make "Neck" and "Avatar Center" attach points available in ↵ | Oz Linden | |
context menus | |||
2011-12-01 | Renamed segment rendering class into RenderNavPrim | prep | |
2011-12-01 | EXP-1639 WIP Added debugging messages. | Vadim ProductEngine | |
2011-12-01 | New navmesh viewer options, rendering improvements, etc. | prep | |
2011-12-01 | STORM-1721 Set UI Size to Default Option Duplicated in Advanced Menu | Jonathan Yap | |
2011-11-30 | gcc fix attempt | Richard Linden | |
2011-11-30 | Automated merge with http://hg.secondlife.com/viewer-development | Richard Linden | |