| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-03-30 | Merge tag 'Second_Life_Release#f148dbcc-26.2' into 2026.02 | Erik Kundiman | |
| 2026-03-16 | Mac build fix for a merge issue. | Andrey Kleshchev | |
| 2026-03-16 | #2975 Fix scale calculation | Andrey Kleshchev | |
| Needs to account for rotation | |||
| 2026-03-07 | Merge tag 'Second_Life_Release#3529bc5f-2026.02' into 2026.02 | Erik Kundiman | |
| 2026-01-30 | #2975 PBR support for planar aligment | Andrey Kleshchev | |
| Since checkbox is shared between pbr and normal textures, I'm making it affect both for now. | |||
| 2026-01-21 | Reduce temporary istringstream allocations during LLDate and GLTF override ↵ | Rye | |
| parsing | |||
| 2026-01-21 | Replace usage of remaining boost::unordered containers with std | Rye | |
| Replace LLUUID and LLMaterialID container hashing functions with more collision resistant versions Utilize boost::hash_combine for TEMaterialPair to generate good hash distribution Generalize is_in_map and get_if_there for usage with all mapped types | |||
| 2026-01-05 | Optimize away repeated map finds for getParameterEntry* functions via pointers | Rye | |
| Signed-off-by: Rye <rye@alchemyviewer.org> | |||
| 2025-12-04 | Merge remote-tracking branch 'secondlife/release/2026.01' into 2026.01 | Erik Kundiman | |
| 2025-12-02 | #5086 Fix 'Copy SLURL' generating obsolete http link | Andrey Kleshchev | |
| use https | |||
| 2025-12-01 | #5078 Replace boost::function with std::function | Rye | |
| * Replace boost::function usage with std::function for easier debugging and reduced compiler warnings * Remove a few remaining instances of boost::noncopyable that were missed in tests Signed-off-by: Rye <rye@alchemyviewer.org> | |||
| 2025-11-07 | Merge branch 'main' into 2025.08 | Erik Kundiman | |
| 2025-11-07 | Update the upstream ColladaDOM revision used to 10 | Erik Kundiman | |
| As the maintenance using an external patch is getting harder, I had to revert the patching to internal and the building to be in the configuration phase, made worse by CMake 4 on Arch, Gentoo and Tumbleweed that treats the absence of a minimum requirement as an error (the BSD sed condition is put there as an anticipation for when in the future (Mac)Ports' CMake gets updated to 4 too). | |||
| 2025-10-26 | Merge tag 'Second_Life_Release#4e2a9667-2025.08' into 2025.08 | Erik Kundiman | |
| 2025-10-25 | Merge tag 'Second_Life_Release#01823996-2025.08' into 2025.08 | Erik Kundiman | |
| 2025-10-20 | Rework new convex decomp into a physicsextensions stub package and fix havok ↵ | Rye | |
| and havok_tpv builds for darwin universal to utilize new vhacd stub (#4858) | |||
| 2025-10-10 | Merge pull request #4783 from RyeMutt/rye/convexdecomp | Jonathan "Geenz" Goodman | |
| Introduce initial VHACD based llconvexdecomposition library | |||
| 2025-10-06 | Fix #4195: Preserve transforms when switching PBR materials (#4725) | Aqil Ahmad | |
| Fixes texture transforms being reset when switching from Blinn-Phong to PBR materials and between PBR. Previously, custom scale, offset, and rotation settings would be lost, making it tedious to switch between PBR materials. | |||
| 2025-10-03 | Initial VHACD based llconvexdecomposition | Rye | |
| 2025-10-01 | Merge tag 'Second_Life_Release#a6d4c1d3-2025.07' into 2025.07 | Erik Kundiman | |
| 2025-08-20 | Merge branch 'develop' of github.com:secondlife/viewer into rye/infinitemac | Rye | |
| 2025-08-19 | Fix macOS deprecation warnings | Rye | |
| 2025-08-08 | Merge branch '2025.05' into 2025.06 | Erik Kundiman | |
| 2025-08-06 | Merge branch develop into 2025.06 | Andrey Kleshchev | |
| # Conflicts: # indra/newview/llvoavatar.cpp | |||
| 2025-07-29 | Merge tag 'Second_Life_Release#288bce10-2025.05' into 2025.05 | Erik Kundiman | |
| 2025-07-22 | #4393 Handle unknown exceptions in uploader better | Andrey Kleshchev | |
| Output is highly technical, but better than nothing | |||
| 2025-07-22 | #4318 Warn or log when texture gets scaled down | Andrey Kleshchev | |
| for material and model upload | |||
| 2025-07-21 | #4399 Crash at load_face_from_dom_triangles | Andrey Kleshchev | |
| Since these offsets are used for idx[i+offset] where i starts from 0, they shouldn't be below 0 to not go out of bounds. | |||
| 2025-07-18 | Merge tag 'Second_Life_Release#f5d350fb-2025.05-gltf-mesh-import' into 2025.05 | Erik Kundiman | |
| 2025-07-18 | Merge branch 'main' into 2025.05 | Erik Kundiman | |
| 2025-07-18 | Merge branch 'main' into 2025.05 | Erik Kundiman | |
| 2025-07-08 | #4314 Fix model suffixes | Andrey Kleshchev | |
| Usecase: Unable to use the same GLB model for physics | |||
| 2025-07-07 | Get the viewer installable on Debian arm64 | Erik Kundiman | |
| The Debian version supported is 13 (trixie), because that's the version I could install on my M1, hence the Boost default version is 1.83 & we can use system's OpenJPEG 2.5.3. Somehow CMake's FindOpenGL wasn't effective, but we can get around this by setting the GL libraries paths when running cmake. Debian aarch64 suffers from the same problem Fedora aarch64 had when compiling libcurl, and it's assumed that it's Linux aarch64 thing. When trying to build ColladaDOM when building the viewer, it couldn't find Boost somehow, so building ColladaDOM is done in configuration stage instead. Upstream Variables.cmake is full of assumptions regarding architecture, and ARCH is used in many places already for Debian/Ubuntu, so we have to make sure ARCH is set with the correct value at the root level. Pipewire on trixie is also too new, so it's cancelled here. Some dependencies have the t64 suffixes on them, just like the currently supported Ubuntu (because I guess 24.04 *is*, based on trixie). The executable still crashes when launched on my M1, however, but we'll commit the progress so far for now. | |||
| 2025-07-04 | #4242 Debug dump improvement #2 | Andrey Kleshchev | |
| 2025-07-03 | Merge tag 'Second_Life_Project#900516a4-glTF_Mesh_Import' into gltf_mesh_import | Erik Kundiman | |
| 2025-07-03 | Merge tag 'Second_Life_Project#bca9ba9b-glTF_Mesh_Import' into gltf_mesh_import | Erik Kundiman | |
| 2025-07-03 | #4242 Debug dump improvement | Andrey Kleshchev | |
| for better comparison with collada output | |||
| 2025-07-02 | #4315 Crash in GLTF uploader | Andrey Kleshchev | |
| Properly handle importer's crashes in general | |||
| 2025-06-28 | Revert "Fix LLCharacter base class constness." and restore improvements from ↵ | Ansariel | |
| 10a324a1034c177b95545ac7ffaa6aa6abed65ff instead | |||
| 2025-06-25 | #4148 Fix collision bones | Andrey Kleshchev | |
| 2025-06-24 | Merge tag 'Second_Life_Project#1a6e3286-GLTF_Mesh_Import' into gltf_mesh_import | Erik Kundiman | |
| 2025-06-19 | #4214 Revert and remake "weights remap" | Andrey Kleshchev | |
| This reverts commits fe10a83f69bb26eb581e143fb99c1250c355938b and 08f6f5c697fce4ccbfba357ab9ce5af915dd0574.. | |||
| 2025-06-19 | #4250 Crash uploading a dae model | Andrey Kleshchev | |
| 2025-06-11 | #4248 Add safety checks to LLMeshSkinInfo::asLLSD() | Andrey Lihatskiy | |
| 2025-06-05 | #4214 Weights and Joints remap | Andrey Kleshchev | |
| 2025-05-30 | Merge remote-tracking branch 'secondlife/project/gltf-mesh-import' into ↵ | Erik Kundiman | |
| gltf-mesh-import | |||
| 2025-05-29 | Merge branch 'main' into 2025.05 | Erik Kundiman | |
| 2025-05-28 | #4080 Rigged mesh support #6 | Andrey Kleshchev | |
| For now not touching normalizeVolumeFaces() to not brick dae upload | |||
| 2025-05-22 | Merge branch 'main' into 2025.04 | Erik Kundiman | |
| 2025-05-19 | #4080 Import GLTF skin data | Andrey Kleshchev | |
