Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-09-06 | Core profile glCreateShader & return type GLuint | Erik Kundiman | |
to replace the less portable ARB versions. | |||
2023-09-06 | SL-20214 Crash at LLControlAVBridge::updateSpatialExtents | Andrey Kleshchev | |
(cherry picked from commit 3d2da2b2c09fc637c2eaccac1607e3480bede145) | |||
2023-09-05 | SL-19655 Remove a couple unused debug settings and related code (update) | Alexander Gavriliuk | |
2023-09-05 | SL-18125 Fixed default upload permissions being ignored | Andrey Kleshchev | |
2023-09-05 | Preprocess non portable GL funcs & macros | Erik Kundiman | |
so that implementations that don't include a certain GL implementation won't fail trying to compile the code. | |||
2023-09-05 | SL-19709 Fix for fullbright shiny not factoring out exposure (update) | Alexander Gavriliuk | |
2023-09-05 | SL-20236 BugSplat Crash in LLVertexBuffer::validateRange(708) | Alexander Gavriliuk | |
2023-09-05 | Exclude FBSD from more GL function redefinitions | Erik Kundiman | |
at the same time revert to less difference from upstream. | |||
2023-09-05 | Comment out redefinitions of GL functions | Erik Kundiman | |
which are mostly ARB ones, and instead we define GLEXT prototypes to be true so we still get access to the functions. | |||
2023-09-01 | SL-20167: Grey out the clipboard when copying the material to clipboard is ↵ | Cosmic Linden | |
not allowed | |||
2023-09-01 | SL-19664 Crash in LLAppViewer::initStrings(2985) - log extended info | Alexander Gavriliuk | |
2023-08-30 | SL-20242 UI overlap in object profile with DebugPermissions on | Andrey Kleshchev | |
2023-08-30 | SL-19842 Followup -- less aggressive ambient kill. | RunitaiLinden | |
2023-08-30 | SL-19842 Followup -- fix sunlight going black and make automatic object ↵ | RunitaiLinden | |
probes more wishy-washy (removes dark splotches where probes get stuck in walls) | |||
2023-08-30 | SL-19664 Crash in LLAppViewer::initStrings - make the error message more ↵ | Alexander Gavriliuk | |
informative | |||
2023-08-30 | SL-18366 Crash in LLCullResult::assertDrawMapsEmpty - make the error message ↵ | Alexander Gavriliuk | |
more informative | |||
2023-08-29 | SL-20229 Add GenericStreamingMessage and use it to receive GLTF material ↵ | RunitaiLinden | |
overrides | |||
2023-08-29 | Make it possible for external TOS to be agreed to | Erik Kundiman | |
The line that enables it in when on external TOS was only present in a similar scope which doesn't seem to be reachable. It must have been missed when the condition checking was moved. | |||
2023-08-29 | Replace login viewer name's left with circle logo | Erik Kundiman | |
2023-08-29 | Give the icons rounded corners | Erik Kundiman | |
2023-08-29 | Adjust the credits | Erik Kundiman | |
2023-08-29 | Copyright notice repro on statically linked libs | Erik Kundiman | |
2023-08-28 | Replace SL & Linden brands on macOS | Erik Kundiman | |
2023-08-28 | XDG desktop entry | Erik Kundiman | |
2023-08-28 | Temporary icons | Erik Kundiman | |
2023-08-28 | Temporary login MP logo so that we don't use SL's | Erik Kundiman | |
https://secondlife.com/corporate/third-party-viewers Section 5.c | |||
2023-08-27 | Supress warnings so GCC can finish shared libs | Erik Kundiman | |
2023-08-27 | Hidden visibility only when building static libs | Erik Kundiman | |
Otherwise it would fail to link SLPlugin. | |||
2023-08-27 | Force FreeBSD to accept TOS via external browser | Erik Kundiman | |
This forces the use of external browser for links too for now, as we don't have a solution for the HTML media plugin yet. | |||
2023-08-26 | Make using the system browser for links works | Erik Kundiman | |
First, in order for launch_url.sh to be executable, it needs to be installed as a program. Secondly, the spawn browser command path needs to be adjusted accordingly. And last, add chrome (applies to chromium too on FBSD), to the list of browser commands to try (so chrome wasn't there :/, but dillo has always been XD, and that's why it kept opening Dillo here haha). | |||
2023-08-26 | Don't install the libraries when they're static | Erik Kundiman | |
For runtime, they're already part of the executable. For development, we're not there yet. So this reduces the overall package size for now. | |||
2023-08-26 | Don't install the headers for now | Erik Kundiman | |
until we've tried building another project, but based on this project's liblinden. It's also because these headers would be in a separate -dev Debian package. | |||
2023-08-26 | Certificate authority bundle gets installed too | Erik Kundiman | |
When I tried using, for example, FBSD system's ca-root-nss.crt, at runtime, the viewer would fail at downloading textures, avatar names, and so on. So for now we're still relying on LLCA, it's just get installed automatically without having to track the file in the viewer project. | |||
2023-08-26 | Fonts get installed too | Erik Kundiman | |
2023-08-26 | CPack for packaging (when PACKAGE set to on) | Erik Kundiman | |
Since we could use the dynamic versioning from the configuration phase of CMake, the inclusion is put in BuildVersion.cmake. Other CPACK variables are usually static so can be set when running cmake. CPack somehow doesn't pick up the DESTINATION values in ViewerInstall (slplugin & libvlc too) from UnixInstall, so they're they're partially hardcoded again there. | |||
2023-08-26 | Add sysroot to GLH & Meshoptimizer include paths | Erik Kundiman | |
When cross-compiling, the host's /usr/local/include would be unsafely included before. The problem with this was that it leaked other host library headers unexpectedly, like Boost. The target compilation caught some function from the host headers which of a newer version, and then when trying to link to the target libraries, the function wasn't available yet in the older version. | |||
2023-08-25 | SL-20197 Remove 'Edit PBR material' from context menu when editing an attachment | Alexander Gavriliuk | |
2023-08-25 | SL-20199 Error creating new folder | Andrey Kleshchev | |
2023-08-25 | Fix another misleading indentation | Erik Kundiman | |
2023-08-24 | OpenAL createDefaultStreamingAudioImpl stub | Erik Kundiman | |
In llstartup, it says if the audio engine hasn't set up its own preferred handler for streaming audio, then the generic streaming audio implementation which uses media plugins will be used. The comparison is with NULL, so it's safe to return NULL (but probably not nullptr). | |||
2023-08-24 | Merge tag '6.6.14-release' | Erik Kundiman | |
source for viewer 6.6.14.581101 | |||
2023-08-23 | Fix merge breakage in windows installer_templete.nsi for DRTVWR-559 | Brad Linden | |
2023-08-23 | Merge branch main (DRTVWR-582) into DRTVWR-567 | Andrey Kleshchev | |
# Conflicts: # indra/newview/app_settings/settings.xml # indra/newview/llinventoryfunctions.cpp # indra/newview/llinventoryfunctions.h # indra/newview/llinventorymodel.cpp # indra/newview/llinventoryobserver.cpp # indra/newview/llinventoryobserver.h # indra/newview/skins/default/xui/ja/floater_inventory_item_properties.xml | |||
2023-08-23 | Merge remote-tracking branch 'origin/main' into DRTVWR-559 | Brad Linden | |
2023-08-23 | Increment viewer version to 6.6.15 | Vir Linden | |
following promotion of DRTVWR-582 | |||
2023-08-22 | Merge branch 'DRTVWR-559' of github.com:secondlife/viewer into DRTVWR-559 | RunitaiLinden | |
2023-08-22 | SL-19842 WIP -- Move sky auto adjustment magic numbers to debug settings. | RunitaiLinden | |
2023-08-22 | SL-20187 [AIS3] Don't fill thumbnail field if null thumbnail is set | Andrey Kleshchev | |
2023-08-22 | Can link to libglvnd, no need to set LEGACY pref | Erik Kundiman | |
2023-08-22 | Reindented | Erik Kundiman | |