Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-01 | SL-18623 LLAvatarRenderInfoAccountant coroutine crash | Andrey Kleshchev | |
For unknown reason allocations of these coroutines often crash on client machines. 1. Limit quantity of coros running in parallel by reducing retries and wait time 2. Print out more diagnostic info | |||
2023-07-28 | SL-18399 'DisableCameraConstraints' debug setting is not working on RC | Alexander Gavriliuk | |
2023-07-26 | SL-18619 Eyes not rendering in Shape floater thumbnails | Alexander Gavriliuk | |
2023-07-26 | SL-20049 Don't show selection beam when attempting to drag avatar | Andrey Kleshchev | |
2023-07-25 | SL-18058 Updated profile picture not shown in Conversation floater | Andrey Kleshchev | |
2023-07-24 | update DejaVu Fonts to 2.37, including LICENSE | Lars Næsbye Christensen | |
2023-07-17 | Merge branch 'main' (DRTVWR-580) into DRTVWR-587-maint-V | Andrey Kleshchev | |
2023-07-17 | Increment viewer version to 6.6.14 | Nat Goodspeed | |
following promotion of DRTVWR-580 | |||
2023-07-17 | SL-19995 FIXED The context menu is not fully displayed for the navigation bar | Maxim Nikolenko | |
2023-07-17 | SL-19306 A method of displaying user-customized keybindings in user-visible text | Andrey Kleshchev | |
2023-07-15 | SL-20011 Restrict 'Empty Trash' if objects are attached | Maxim Nikolenko | |
2023-07-14 | Fix some spacing | Roxie Linden | |
2023-07-13 | SL-20009 - race condition - calling cards could be created without name | Roxie Linden | |
This happens when a calling card is created before the name is in the name cache. | |||
2023-07-12 | Merge branch 'brad/SL-19968-vocache-objects-missing' into DRTVWR-587-maint-V ↵ | Brad Linden | |
(#273) | |||
2023-07-12 | added info log lines for assistance diagnosing SL-19968 | Brad Linden | |
2023-07-11 | SL-19986 Crash at LLConversationItemSession::findParticipant | Andrey Kleshchev | |
Observed on bugsplat, no repro. Something destroys LLConversationItem without cleaning list (some sessions reuse the item, but they aren't supposed to remove it). Either item should inform floater to be properly removed or should be stored as an LLPointer. | |||
2023-07-07 | SL-19702 restore previous double clicking behavior for objects | Maxim Nikolenko | |
2023-07-07 | SL-19963 Group Profile's money details have misleading date | Andrey Kleshchev | |
2023-07-06 | SL-18164 Media type format not shown in the About Land's media tab | Andrey Kleshchev | |
2023-07-06 | SL-19702 restore previous double clicking behavior for objects (#266) | Maxim Nikolenko | |
2023-07-05 | SL-19950 don't try to change fly state if it's not needed | Maxim Nikolenko | |
2023-06-30 | SL-19816 Home location on world map for invalid locations | Alexander Gavriliuk | |
2023-06-28 | SL-19572 Fix some obscure cases of residents bypasing mute list | Andrey Kleshchev | |
2023-06-27 | SL-19924 Update profile type names | Andrey Kleshchev | |
2023-06-24 | SL-19805 Fix touch handling logic | Alexander Gavriliuk | |
2023-06-23 | SL-19805 Follow-up fix | Andrey Lihatskiy | |
2023-06-23 | SL-19805 Second Life Viewer last update made invisible parts visible | Alexander Gavriliuk | |
2023-06-01 | SL-19806 Crash at vobj | Andrey Kleshchev | |
2023-05-30 | SL-17429 Message user when their inventory hits AIS2 limits | Andrey Kleshchev | |
2023-05-23 | SL-19635 Better error handling | Andrey Kleshchev | |
2023-05-23 | SL-19744: Remove LLErrorThread and LLAppViewer::handleViewerCrash() | Nat Goodspeed | |
2023-05-22 | SL-19635 Implement DeepL tranlation support | Andrey Kleshchev | |
2023-05-19 | DRTVWR-580 Post-merge fix - unused code | Andrey Lihatskiy | |
2023-05-18 | SL-19649 Adjust other classes for new deleteAllChildren mechanics | Andrey Kleshchev | |
2023-05-17 | Merge branch 'main' into DRTVWR-580-maint-T | Andrey Lihatskiy | |
# Conflicts: # doc/contributions.txt # indra/llcharacter/llkeyframemotion.cpp # indra/newview/llfilepicker.cpp | |||
2023-05-17 | Increment viewer version to 6.6.13 | Nat Goodspeed | |
following promotion of DRTVWR-577 | |||
2023-05-10 | SL-19536 SL-19652 Fix inventory fetching | Andrey Kleshchev | |
2023-05-04 | Merge remote-tracking branch 'origin/zap-LLSDArray' into DRTVWR-577-maint-S | Andrey Lihatskiy | |
2023-05-04 | Merge remote-tracking branch 'origin/zap-LLSDArray' into DRTVWR-580-maint-T | Andrey Lihatskiy | |
2023-05-03 | SL-19647: Eliminate LLSDArray entirely. | Nat Goodspeed | |
Newer C++ compilers have different semantics around LLSDArray's special copy constructor, which was essential to proper LLSD nesting. In short, we can no longer trust LLSDArray to behave correctly. Now that we have variadic functions, get rid of LLSDArray and replace every reference with llsd::array(). | |||
2023-05-03 | SL-19681 Merge pull request #202 from PanteraPolnocy | akleshchev | |
Fix typos in floater_scene_load_stats.xml and llviewerstats.cpp | |||
2023-05-03 | DRTVWR-575: Replace some LLSDArray() usage with llsd::array(). | Nat Goodspeed | |
It seems newer compilers have a different interpretation of exactly when to engage LLSDArray's copy constructor. In particular, this assignment: some_LLSD_map[key] = LLSDArray(...)(...)...; used to convert the LLSDArray object directly to LLSD; now it first calls the custom copy constructor, which embeds the intended array within an outer array before assigning it into the containing map. The newer llsd::array() function avoids that problem because what it returns is already an LLSD object. Taking inventory of LLSDArray assignments of that form turned up a number of workarounds like LLSD(LLSDArray(...)). Replacing those with llsd::array() is both simpler and more readable. Tip of the hat to Chorazinallen for surfacing this issue! (cherry picked from commit bb718155bddfbe7007029a0c9e69a4a98615f14d) | |||
2023-05-02 | Fixing a small typo in llviewerstats.cpp | Pantera Północy | |
2023-05-02 | Update floater_scene_load_stats.xml | Pantera Północy | |
Reducing the packet loss... | |||
2023-05-02 | Merge branch 'main' into DRTVWR-577-maint-S | Andrey Lihatskiy | |
2023-05-02 | Merge branch 'main' into DRTVWR-580-maint-T | Andrey Lihatskiy | |
2023-05-02 | Increment viewer version to 6.6.12 | Vir Linden | |
following promotion of DRTVWR-539 | |||
2023-04-25 | SL-19652 Fixed 'working' cursor flicker | Andrey Kleshchev | |
2023-04-25 | SL-19652 Folder fetch dupplicate protection and over limit handling | Andrey Kleshchev | |
2023-04-22 | SL-19636 Profile badges | Andrey Kleshchev | |