Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-12 | SL-19990 Brightness slider should be named HDR Scale unless Reflection Probe ↵ | Mnikolenko Productengine | |
Ambiance (HDR) is 0 | |||
2023-07-12 | SL-19702 don't skip double clicks when clicking scripted objects | Mnikolenko Productengine | |
2023-07-11 | Merge pull request #270 from secondlife/SL-19992 | cosmic-linden | |
SL-19992: Fix LOD assert | |||
2023-07-11 | SL-19992: Fix assert in LLVolumeLODGroup::refLOD when ↵ | Cosmic Linden | |
LLMeshRepository::notifyMeshUnavailable is called on the highest LOD | |||
2023-07-11 | SL-19728 Objects that cannot be clicked or cammed unless in edit mode | Alexander Gavriliuk | |
2023-07-11 | SL-19986 Crash at LLConversationItemSession::findParticipant | Andrey Kleshchev | |
Observed on bugsplat, no repro. Something destroys LLConversationItem without cleaning list (some sessions reuse the item, but they aren't supposed to remove it). Either item should inform floater to be properly removed or should be stored as an LLPointer. | |||
2023-07-11 | SL-19141 Fixed applying a no-copy texture to two objects failing silently | Andrey Kleshchev | |
2023-07-10 | SL-18837: Windows failures in setWorkingDirectory(): C: vs. c: (sigh) | Nat Goodspeed | |
Normalize the case of the name of the temp directory for string comparison. | |||
2023-07-10 | SL-18837: Disable APR_LOG for now, but leave notes for the future. | Nat Goodspeed | |
2023-07-10 | SL-18837: Revert "Force llprocess_test and llleap_test to use just 'python'." | Nat Goodspeed | |
Turns out that the pathname of the Python executable wasn't the issue. This reverts commit 7dc6211ad5ea83685a35c6fff740278343aa8b9d. | |||
2023-07-10 | SL-18837: Merge branch 'actions' into actions-build-sh | Nat Goodspeed | |
to pick up new APR build that avoids toxic CreateProcessW() flag. It used to be essential on Windows 7; now it's the cause of our integration test failures. | |||
2023-07-10 | SL-18837: Update apr_suite to release v1.7.2-e935465. | Nat Goodspeed | |
2023-07-10 | SL-19951 Collect used icons in a special group 'Recently used' | Alexander Gavriliuk | |
2023-07-08 | SL-18837: Force llprocess_test and llleap_test to use just 'python'. | Nat Goodspeed | |
On GitHub Windows runners, trying to make build.yaml set PYTHON=python in the environment doesn't work: integration tests still fail with "Access is denied" because they're still trying to execute the interpreter's full pathname. Instead, make llprocess_test and llleap_test detect the case of GitHub Windows and override the environment variable PYTHON with a baked-in string constant "python". | |||
2023-07-08 | SL-18837: Try running just 'python' for Windows integration tests. | Nat Goodspeed | |
2023-07-08 | SL-18837: Set APR_LOG within build step, not at job level. | Nat Goodspeed | |
2023-07-08 | SL-18837: Use runner.temp rather than $RUNNER_TEMP. | Nat Goodspeed | |
2023-07-08 | SL-18837: Set APR_LOG once for the whole job | Nat Goodspeed | |
instead of a new value for each LLProcess::create() invocation. Since the internal apr_log() function only looks at APR_LOG once per process, the first test (which succeeded, hence no log file dump) left the log file open with that same original pathname. Resetting the APR_LOG environment variable for subsequent runs only made the new code in llprocess_test look for files that were never created. | |||
2023-07-08 | SL-18837: Don't use LLDir, use NamedTempFile::temp_path. | Nat Goodspeed | |
Remove llcommon circular dependency on llfilesystem, which doesn't work for this case anyway. | |||
2023-07-07 | SL-18837: Ditch unreferenced name of caught exception | Nat Goodspeed | |
2023-07-07 | SL-18837: Hook in LLDir to allow reading APR log file. | Nat Goodspeed | |
2023-07-07 | SL-18837: Fix spurious semi | Nat Goodspeed | |
2023-07-07 | SL-18837: Fix "lldir.h" #include | Nat Goodspeed | |
2023-07-07 | SL-18837: Coax APR to log LLProcess launch attempts; show log file. | Nat Goodspeed | |
2023-07-07 | SL-18837: Partially revert e933ace, keeping useful tweaks. | Nat Goodspeed | |
Introducing indirection via test_python_script.py did NOT address the "Access is denied" errors on GitHub Windows runners. | |||
2023-07-07 | SL-19958 An inventory material without asset should default to a blank material | Andrey Kleshchev | |
A New Material created in Inventory should be immediately usable. | |||
2023-07-07 | SL-18837: Try to bypass Windows perm problem with Python indirection. | Nat Goodspeed | |
2023-07-07 | SL-19702 restore previous double clicking behavior for objects | Maxim Nikolenko | |
2023-07-07 | SL-19963 Group Profile's money details have misleading date | Andrey Kleshchev | |
2023-07-07 | SL-19966 Reverted "SL-18721: Faster viewer shutdown time since performance ↵ | Andrey Lihatskiy | |
improvements can lead to perceived inventory loss due to cache corruption" This reverts commit cf692c40b0b9f8d0d04cd10a02a84e3f697a2e99. | |||
2023-07-07 | SL-18837: Try putting generated Python scripts in RUNNER_TEMP dir. | Nat Goodspeed | |
The claim is that the Windows Python interpreter is integrated somehow with the OS such that a command line that tries to run Python with a script that "looks suspicious" (i.e. in a system temp directory) fails with "Access denied" without even loading the interpreter. At least that theory would explain the "Access denied" errors we've been getting trying to run Python scripts generated into the system temp directory by our integration tests. Our hope is that generating such scripts into the GitHub RUNNER_TEMP directory will work better. As this test is specific to Windows, don't even bother running Mac builds. | |||
2023-07-07 | SL-18837: Use multi-line GitHub outputs to upload artifacts. | Nat Goodspeed | |
Having observed installer upload failures, I discovered the warning in actions/upload-artifact/README.md about multiple concurrent jobs trying to post the same pathname to the same artifact name. Try to disambiguate artifacts not only for different platforms, but for different jobs running on the same platform. This change also reflects my understanding that an artifact is (effectively) a distinct zip file that can contain multiple uploaded files. Because we'll want to download metadata without having to download enormous installers, create a separate metadata artifact per platform. Similarly, symbol files can get large: use a third distinct artifact for symbol files. But with those artifacts defined, leverage actions/upload-artifact's ability to upload multiple paths to the same artifact. In build.sh, define bash arrays installer, metadata, symbolfile and set up so that, on exit, each is written to a GITHUB_OUTPUT variable with the corresponding name. This involves a little magic to get macOS bash 3 to indirectly access an array. These multi-line output variables are then used to drive the upload-artifact step for each of the defined artifacts. | |||
2023-07-07 | SL-19756 Update viewer-manager to 3.0.580913 | Andrey Lihatskiy | |
2023-07-07 | SL-19951 Highlight the selected tab by colored icon | Alexander Gavriliuk | |
2023-07-07 | SL-19951 Organize emoji categories in groups | Alexander Gavriliuk | |
2023-07-06 | SL-18837: Ding Dong, 32-bit is dead! | Nat Goodspeed | |
2023-07-06 | SL-18837: Add addoutput, addarrayoutput functions to build.sh | Nat Goodspeed | |
and use them instead of codeticket addoutput to pass GitHub xxx_name, xxx_path outputs to build.yaml. Add upload steps to build.yaml to try to upload build products identified in build.sh. | |||
2023-07-06 | SL-18164 Media type format not shown in the About Land's media tab | Andrey Kleshchev | |
2023-07-06 | SL-19702 restore previous double clicking behavior for objects (#266) | Maxim Nikolenko | |
2023-07-06 | SL-19951 Delete unused code | Alexander Gavriliuk | |
2023-07-06 | SL-19951 Delete unused UI elements (old design) | Alexander Gavriliuk | |
2023-07-05 | SL-19950 don't try to change fly state if it's not needed | Maxim Nikolenko | |
2023-07-05 | SL-19951 Make EmojiFloater UI design looking similar to Slack - bg colors | Alexander Gavriliuk | |
2023-07-05 | Reverted changes to installer_template.msi introduced by PR #259 | Andrey Kleshchev | |
Changes do not appear to add anything sans mac's line ending which triggers coding policy protection and shouldn't be present in window's installer file. | |||
2023-07-05 | macos build fix | Alexander Gavriliuk | |
2023-07-05 | SL-19575 Rework emoji picker layout similar to Slack | Alexander Gavriliuk | |
2023-07-05 | SL-19716 and SL-19437 viewer_manager | Andrey Kleshchev | |
2023-07-03 | SL-19929 New inventory feature notification should appear on top | Andrey Kleshchev | |
2023-07-01 | SL-19914 Inventory gallery Tab support #3 | Andrey Kleshchev | |
Don't try to select something if we are waiting for an item | |||
2023-07-01 | SL-19914 Inventory gallery Tab support #2 | Andrey Kleshchev | |