Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-10-25 | Merge branch 'main' into DRTVWR-591-maint-X | Andrey Lihatskiy | |
# Conflicts: # indra/newview/llinventorygallery.cpp | |||
2023-10-25 | SL-20513 Make profile floater use properties processor #3 | Andrey Kleshchev | |
2023-10-25 | SL-20513 Cleanup LLAvatarPropertiesProcessor #2 | Andrey Kleshchev | |
2023-10-25 | SL-20513 Cleanup LLAvatarPropertiesProcessor #1 | Andrey Kleshchev | |
2023-10-24 | Remove unnecessary make_pair call | Ansariel | |
2023-10-24 | Add some optimizations and modern C++ while already touching ↵ | Ansariel | |
LLAvatarPropertiesProcessor | |||
2023-10-24 | Fill agent_id fields in LLAvatarData correctly when using capability for ↵ | Ansariel | |
avatar properties request | |||
2023-10-23 | SL-13610 revert changes to floater_about_land | Andrey Kleshchev | |
Dupplicate. No idea how it got into the merge | |||
2023-10-23 | SL-13610 build fix | Mnikolenko Productengine | |
2023-10-23 | SL-13610 [MAC] Manufacturer based search | Andrey Kleshchev | |
2023-10-23 | SL-13610 [MAC] WIP filter out incompatible devices | Andrey Kleshchev | |
2023-10-23 | SL-13610 [MAC] WIP enable initing devices by local id | Andrey Kleshchev | |
2023-10-23 | SL-13610 [MAC] WIP List HID available devices in joystick selection | Andrey Kleshchev | |
Doesn't filter the list yet, just shows full list of usb devices Selecting visible devices doesn't work yet | |||
2023-10-20 | SL-20163 Rework LLAvatarPropertiesProcessor::sendRequest() | Alexander Gavriliuk | |
2023-10-20 | SL-20441 Do not recreate desktop shortcut when updating | Andrey Kleshchev | |
2023-10-20 | SL-20380 show group notice button only if user is a member of the group (#465) | Maxim Nikolenko | |
2023-10-20 | SL-20163 Rework hide_age in processAvatarPropertiesReply() | Alexander Gavriliuk | |
2023-10-20 | SL-20163 Rework add/remove observers in LLAvatarPropertiesProcessor | Alexander Gavriliuk | |
2023-10-20 | SL-20422 Unit test fix | Andrey Kleshchev | |
2023-10-20 | SL-20506 Crash when recreating LLViewerParcelMedia | Andrey Kleshchev | |
2023-10-19 | SL-20504 Chat history crashes on shutdown | Andrey Kleshchev | |
2023-10-19 | SL-20442 - build fix | Mnikolenko Productengine | |
2023-10-19 | SL-20497 FIXED Minimum distance is not updated correctly | Maxim Nikolenko | |
2023-10-19 | [BUG-234493] Add "Until key release" to the gesture "Wait" | Kyler Eastridge | |
2023-10-18 | SL-20376 Clarify group membership status and leave-group confirmation dialog | Maxim Nikolenko | |
2023-10-18 | SL-20463 Rename outfit dialog box accepts emoji characters | Alexander Gavriliuk | |
2023-10-18 | SL-20232 Cleanup #6 | Andrey Kleshchev | |
2023-10-17 | SL-20476: Don't let the compiler know we intend to crash. | Nat Goodspeed | |
clang has gotten smart enough to recognize an inline attempt to store to address zero. Fool it by storing to an address passed as a parameter, and pass nullptr from a different source file. | |||
2023-10-17 | SL-20232 Allow deletion of worn items #5 | Andrey Kleshchev | |
2023-10-17 | SL-20232 Allow deletion of folders with worn content in gallery view #4 | Andrey Kleshchev | |
2023-10-17 | SL-20232 Allow deletion of folders with worn content in tree view #3 | Andrey Kleshchev | |
2023-10-17 | SL-20232 Fix gallery not checking descendants | Andrey Kleshchev | |
2023-10-17 | SL-20232 Allow deletion of worn items #2 | Andrey Kleshchev | |
2023-10-17 | SL-20232 Allow deletion of worn items #1 | Andrey Kleshchev | |
2023-10-17 | SL-20465 allow creating new items from the right-click context menu | Maxim Nikolenko | |
2023-10-17 | SL-20163 Fix missing flags | Andrey Kleshchev | |
Just in case, this is not fully in use yet, mostly because requests for avatar icons will become very heavy due all that additional info | |||
2023-10-17 | SL-20163 Rename hide_sl_age to hide_age | Alexander Gavriliuk | |
2023-10-17 | SL-18837: Avoid stuffing build number into 32-bit int. | Nat Goodspeed | |
Even though LLVersionInfo::getBuild() already returns a 64-bit int, various consumers assumed it could fit into 32 bits. It was especially bad to pass it to a classic C style varargs function. Only on a little-endian CPU, and only because it was the last argument, the damage was limited to truncation -- instead of arbitrary undefined behavior. Where the consumer doesn't support 64-bit ints, pass as string instead. | |||
2023-10-16 | SL-18837: Second Life Release.app=>Second Life Viewer.app in tarball | Nat Goodspeed | |
2023-10-16 | SL-18837: Create Second Life Viewer.app, not Second Life Release.app | Nat Goodspeed | |
2023-10-14 | SL-20163 Allow residents to hide exact join date on profiles | Alexander Gavriliuk | |
2023-10-14 | SL-20163 Delete LLAvatarPropertiesProcessor::sendAvatarPropertiesUpdate | Alexander Gavriliuk | |
2023-10-13 | SL-20422 Mac build fix | Alexander Gavriliuk | |
2023-10-13 | SL-20163 Preliminary layout changes | Alexander Gavriliuk | |
2023-10-13 | SL-20422 Unit-tests fix | Alexander Gavriliuk | |
2023-10-13 | SL-20233 Add menu command to remove selected avatar attachment(s) | Andrey Kleshchev | |
2023-10-12 | SL-18837: Unify all llrand_test.cpp in-range tests. | Nat Goodspeed | |
The header file documents that no llrand function should ever return a value equal to the passed extent, so the one test in llrand_test.cpp that checked less than or equal to the high end of the range was anomalous. But changing that to an exclusive range means that we no longer need separate exclusive range and inclusive range functions. Replace ensure_in_range_using(), ensure_in_exc_range() and ensure_in_inc_range() with a grand unified (simplified) ensure_in_range() function. | |||
2023-10-12 | SL-20286 Duplication of autocomplete results occurs when entering some ↵ | Alexander Gavriliuk | |
search queries in the navigation bar | |||
2023-10-12 | SL-20417 Remove "loading" message from profile photo | Mnikolenko Productengine | |
2023-10-12 | SL-20422 Clicking the 'Bring it back' link on Aditi displays a teleport alert | Alexander Gavriliuk | |