summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-17SL-20232 Allow deletion of worn items #5Andrey Kleshchev
2023-10-17SL-20232 Allow deletion of folders with worn content in gallery view #4Andrey Kleshchev
2023-10-17SL-20232 Allow deletion of folders with worn content in tree view #3Andrey Kleshchev
2023-10-17SL-20232 Fix gallery not checking descendantsAndrey Kleshchev
2023-10-17SL-20232 Allow deletion of worn items #2Andrey Kleshchev
2023-10-17SL-20232 Allow deletion of worn items #1Andrey Kleshchev
2023-10-17SL-20465 allow creating new items from the right-click context menuMaxim Nikolenko
2023-10-17SL-20163 Fix missing flagsAndrey 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-17SL-20163 Rename hide_sl_age to hide_ageAlexander Gavriliuk
2023-10-17SL-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-16SL-18837: Second Life Release.app=>Second Life Viewer.app in tarballNat Goodspeed
2023-10-16SL-18837: Create Second Life Viewer.app, not Second Life Release.appNat Goodspeed
2023-10-14SL-20163 Allow residents to hide exact join date on profilesAlexander Gavriliuk
2023-10-14SL-20163 Delete LLAvatarPropertiesProcessor::sendAvatarPropertiesUpdateAlexander Gavriliuk
2023-10-13PIE-1057: Pass sign-pkg-windows@azure the Azure-related secrets.Nat Goodspeed
2023-10-13SL-20422 Mac build fixAlexander Gavriliuk
2023-10-13SL-20163 Preliminary layout changesAlexander Gavriliuk
2023-10-13SL-18837: Update dullahan to v118.0.5993.54Nat Goodspeed
This includes this week's CEF 118.
2023-10-13SL-20422 Unit-tests fixAlexander Gavriliuk
2023-10-13SL-20233 Add menu command to remove selected avatar attachment(s)Andrey Kleshchev
2023-10-12PIE-1057: Engage viewer-build-util azure branch.Nat Goodspeed
2023-10-12SL-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-12SL-20286 Duplication of autocomplete results occurs when entering some ↵Alexander Gavriliuk
search queries in the navigation bar
2023-10-12SL-20417 Remove "loading" message from profile photoMnikolenko Productengine
2023-10-12SL-18837: Update openal to v1.23.1-18e315cNat Goodspeed
2023-10-12SL-20422 Clicking the 'Bring it back' link on Aditi displays a teleport alertAlexander Gavriliuk
2023-10-12SL-18837: Update llca to v202310121525.0-d22bd98Nat Goodspeed
2023-10-11SL-20419 Receiving new objects or items, etc causes inventory to switch from ↵Alexander Gavriliuk
recent to my inventory tab
2023-10-11SL-20403 FIXED People floater showing arrows on default sizeMaxim Nikolenko
2023-10-11SL-20378 Add menu bar entry and keyboard shortcut to open Notifications floaterAlexander Gavriliuk
2023-10-11SL-20432 Minor polishing in LLWearableItemsList::updateChangedItemsAlexander Gavriliuk
2023-10-11SL-20370 Change PDT to SLT on menu barAlexander Gavriliuk
2023-10-11SL-20432 BuildfixAlexander Gavriliuk
2023-10-11SL-20432 Filtering My Outfits with big number of items freezes UIAlexander Gavriliuk
2023-10-10SL-20288 Lags in Appearance floater (code format in LLAccordionCtrl)Alexander Gavriliuk
2023-10-10SL-20414 move tabs to left in Region/Estate floaterMnikolenko Productengine
2023-10-10SL-20288 Lags in Appearance floaterAlexander Gavriliuk
2023-10-10Get rid of a duplicate notificationPanteraPolnocy
InventoryLimitReachedAIS
2023-10-09SL-20377 Sort group notices by dateMnikolenko Productengine
2023-10-09SL-20411 Don't load all thumnails at once for large folders #2Andrey Kleshchev
2023-10-09SL-20411 Thumbnail textures should have less of an impact on performance #1Andrey Kleshchev
scale thumbnail textures down to 256 when needed. As we do to chat icons.
2023-10-09SL-20380 Add group notices button as hover button on Groups floaterMaxim Nikolenko
2023-10-06SL-20420 Emoji - Increase nearby chat history buffer sizeAlexander Gavriliuk
2023-10-06SL-18837: Update Tracy to 0.8.1-235e98fNat Goodspeed
2023-10-06SL-18837: Remove 32-bit Windows package entries.Nat Goodspeed
glext, which contains only header files, now builds only a single common package instead of platform-specific ones. But as long as we retain the platform-specific URLs, autobuild will continue to prefer those over the common platform. Remove all platform-specific glext package entries.
2023-10-06SL-18837: Update to Dullahan 1.14.0 with CEF 117Nat Goodspeed
2023-10-06SL-20413 Add zoom controls to menu barMnikolenko Productengine
2023-10-05SL-18837: Name the release for the build number to readily find it.Nat Goodspeed
2023-10-05SL-19826 Fix mac build issue (unused variable)Andrey Lihatskiy
2023-10-05SL-18837: When llrand_test.cpp fails, display the failing value.Nat Goodspeed
It's frustrating and unactionable to have a failing test report merely that the random value was greater than the specified high end. Okay, so what was the value? If it's supposed to be less than the high end, did it happen to be equal? Or was it garbage? We can't reproduce the failure by rerunning! The new ensure_in_exc_range(), ensure_in_inc_range() mechanism is somewhat complex because exactly one test allows equality with the high end of the expected range, where the rest mandate that the function return less than the high end. If that's a bug in the test -- if every llrand function is supposed to return less than the high end -- then we could simplify the test logic.