summaryrefslogtreecommitdiff
path: root/indra
AgeCommit message (Collapse)Author
2021-05-12Revert "SL-15168 Changed format"Andrey Kleshchev
2021-05-11Merge branch 'DRTVWR-519' of https://bitbucket.org/lindenlab/viewer into ↵Callum Prentice
DRTVWR-519
2021-05-11Fix for SL-15226 Simple cache viewer: Integer overflow in cache size - via ↵Callum Prentice
FS:Ansariel
2021-05-11Merge branch 'DRTVWR-531' into DRTVWR-516-maintAndrey Lihatskiy
2021-05-11BUG-230697: Do not crash viewer during cache cleanupAnsariel
2021-05-11SL-15249 Fix MAC build issueAndrey Kleshchev
2021-05-11SL-15249 FIXED The F1 key does not close the guidebook after clicking a linkMnikolenko Productengine
2021-05-11SL-15245 Multiple guide books open, but cannot close them allAndrey Kleshchev
"how_to" floater is supposed to be single instance
2021-05-11SL-15168 Improved uri recognitionAndrey Kleshchev
2021-05-11SL-15168 Reset title of guidebook when openingAndrey Kleshchev
2021-05-11SL-15168 Changed formatAndrey Kleshchev
instead of an url function takes an uri
2021-05-11SL-15168 Reorginized contantsAndrey Kleshchev
2021-05-10SL-10297: Make LLSingletonBase::llerrs() et al. runtime variadic.Nat Goodspeed
Instead of accepting a fixed list of (const char* p1="", etc.), accept (std::initializer_list<std::string_view>). Accepting a std::initializer_list<T> in your parameter list allows coding (e.g.) func({T0, T1, T2, ... }); -- in other words, you can pass the initializer_list a brace-enclosed list of an arbitrary number of instances of T. Using std::string_view instead of const char* means we can pass *either* const char* or std::string. string_view is cheaply constructed from either, allowing uniform treatment within the function. Constructing string_view from std::string simply extracts the pointer and length from the std::string. Constructing string_view from const char* (e.g. a "string literal") requires scanning the string for its terminating nul byte -- but that would be necessary even if the scan were deferred until the function body. Since string_view stores the length, the scan still happens only once.
2021-05-10SL-15168 Mac build fixAndrey Kleshchev
2021-05-07SL-15241: Tweak viewer sources to permit compiling on Mac with C++17.Nat Goodspeed
2021-05-06SL-15168 Viewer side functionality for guidebook window opening #2Andrey Kleshchev
2021-05-06SL-15168 Viewer side functionality for guidebook window openingAndrey Kleshchev
2021-05-01Follow-up merge conflict fixAndrey Lihatskiy
2021-05-01DRTVWR-520 Post-merge build fix + error handling improvementAndrey Lihatskiy
2021-04-30SL-13395 Don't hide empty outfit foldersAndrey Kleshchev
Outfit folders can be created, managed and deleted by users, they should stay visible
2021-04-30Merge branch 'master' into DRTVWR-520-apple-notarizationAndrey Lihatskiy
2021-04-30Merge branch 'master' into DRTVWR-522-maintAndrey Lihatskiy
# Conflicts: # doc/contributions.txt
2021-04-30Merge branch 'master' into DRTVWR-521-maintAndrey Lihatskiy
2021-04-29Expose the flag to turn automatic VAD on and off. We will likely keep it ↵Callum Prentice
off since that appears to be working well for us but others may want to turn in on
2021-04-29Force a clean, full rebuildEuclid Linden
2021-04-29Clean up a merge conflictCallum Prentice
2021-04-29Merge remote-tracking branch 'origin/master' into DRTVWR-531Callum Prentice
2021-04-29Merge remote-tracking branch 'origin/master' into DRTVWR-533Callum Prentice
2021-04-29restored SL-14027 (merge conflict)Andrey Kleshchev
2021-04-29Merge master (DRTVWR-515) into DRTVWR-516-maintAndrey Kleshchev
# Conflicts: # autobuild.xml # doc/contributions.txt # indra/llcommon/llcoros.cpp # indra/llmessage/llcoproceduremanager.cpp # indra/newview/llfloaterfixedenvironment.cpp # indra/newview/llfloaterimsessiontab.cpp
2021-04-29Merge master into DV525-merge-6.4.19Dave Houlton
2021-04-29Merge branch 'master' into DRTVWR-518-uiAndrey Lihatskiy
# Conflicts: # indra/newview/llfloaterfixedenvironment.cpp # indra/newview/skins/default/xui/en/strings.xml
2021-04-29Increment viewer version to 6.4.19Nat Goodspeed
following promotion of DRTVWR-515
2021-04-29DRTVWR-520 Safety check; remove temporary zip fileAndrey Lihatskiy
2021-04-29buildfix (chmod a+x)Andrey Lihatskiy
2021-04-29DRTVWR-520 Notarize the viewer on TeamCityAndrey Lihatskiy
2021-04-28After a small but successful test at our standup, we're going to make the ↵Callum Prentice
default value for the VAD sensitivity 0 (off). The settings can all still be changed via Debug variables but this seems like a sensible starting point for the next test.
2021-04-28SL-15181 Crash at LLSkinningUtil::initSkinningMatrixPaletteAndrey Kleshchev
2021-04-28SL-15174 set Starting Guidebook location on-screenMnikolenko Productengine
2021-04-27DRTVWR-520 Sign greenlet.soAndrey Lihatskiy
2021-04-27typo fixAndrey Lihatskiy
2021-04-27DRTVWR-520 SLPlugin signing and hardened runtime for viewerAndrey Lihatskiy
2021-04-26SL-15170 remove mac_crash_loggerMnikolenko ProductEngine
2021-04-24SL-15150 Crash at LLScrollColumnHeader::updateResizeBarsAndrey Kleshchev
Looks like mHeader is invalid yet mHeader->updateResizeBars() gets called, decided to validate column pointer
2021-04-23SL-14842 Tooltip for clear historyAndrey Kleshchev
2021-04-23SL-14956 Fix landmarks sometimes staying in mLoadedCallbackMap #2Andrey Kleshchev
Improved fix
2021-04-23DRTVWR-520 added codesign for cef and libvlcMnikolenko ProductEngine
2021-04-23build fixMnikolenko ProductEngine
2021-04-23SL-15144 FIXED The "Remove" button is enabled with no selectionMnikolenko Productengine
2021-04-22SL-14842 Clear history should be it's own buttonAndrey Kleshchev