summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-11-22Merge pull request #532 from secondlife/DRTVWR-587-updater-listnat-goodspeed
DRTVWR-587: Update to viewer-manager v3.0-08bf5ee.
2023-11-22Merge pull request #521 from secondlife/signal/simple-releaseSignal Linden
Only publish installers to releases
2023-11-22Merge pull request #525 from secondlife/signal/ignore-vscodeSignal Linden
Ignore .vscode
2023-11-22DRTVWR-587: Update to viewer-manager v3.0-08bf5ee.Nat Goodspeed
This viewer-manager refactors the bad-graphics-card detection.
2023-11-21SL-20591 Update viewer-manager to v3.0.0170afbAndrey Kleshchev
Restored removed commits since issue was isolated and bypassed. Original issue: win32util.py imports wmi, if import fails it uses registry for getting dns, if import works, it uses wmi to get dns. Including wmi broke dns for some of the users ([Errno 11001] Name or service not known)
2023-11-21Merge branch 'DRTVWR-587-maint-V' into signal/simple-releaseSignal Linden
2023-11-20Merge pull request #528 from secondlife/signal/util-v1Signal Linden
Switch to viewer-build-util@v1
2023-11-20Switch to viewer-build-util@v1Bennett Goble
Switch the build workflow from targeting the `main` branch of viewer-build-util (which may receive breaking changes) to the stable `v1` major version tag.
2023-11-20Ignore .vscodeBennett Goble
Add the commonly autocreated .vscode directory to .gitignore.
2023-11-20Only download release artifacts for releaseBennett Goble
Only download and publish installers on public releases. This simplifies the release process, as the flatten_files utility from viewer-build-utils is not necessary this way. More importantly, it doesn't clutter public releases with files that shouldn't be published such as debug symbols.
2023-11-17SL-20591 Update viewer-manager to v3.0.73fef89Andrey Kleshchev
2023-11-10SL-20591 Update viewer-manager to v3.0.0395b15Andrey Lihatskiy
2023-11-06Revert "SL-20185 Fix connection issues (#490)"Andrey Kleshchev
Issue reproed again, restoring.
2023-11-03SL-20185 Fix connection issues (#490)akleshchev
2023-10-31DRTVWR-587: Update viewer-manager to v3.0-074736e.Nat Goodspeed
This is viewer-manager's DRTVWR-587-actions branch updated from the new master branch.
2023-10-31SL-20031: Reintroduce newest viewer-manager build.Nat Goodspeed
2023-10-30Revert "DRTVWR-587 Bring back the previously reverted change"Andrey Lihatskiy
This reverts commit 9d49edbc48d81f820870d43edb2c975beffa5485.
2023-10-30DRTVWR-587 Bring back the previously reverted changeAndrey Lihatskiy
2023-10-29DRTVWR-587: Fix LL::apply(function, LLSD array).Nat Goodspeed
We define a specialization of LLSDParam<const char*> to support passing an LLSD object to a const char* function parameter. Needless to remark, passing object.asString().c_str() would be Bad: destroying the temporary std::string returned by asString() would immediately invalidate the pointer returned by its c_str(). But when you pass LLSDParam<const char*>(object) as the parameter, that specialization itself stores the std::string so the c_str() pointer remains valid as long as the LLSDParam object does. Then there's LLSDParam<LLSD>, used when we don't have the parameter type available to select the LLSDParam specialization. LLSDParam<LLSD> defines a templated conversion operator T() that constructs an LLSDParam<T> to provide the actual parameter value. So far, so good. The trouble was with the implementation of LLSDParam<LLSD>: it constructed a _temporary_ LLSDParam<T>, implicitly called its operator T() and immediately destroyed it. Destroying LLSDParam<const char*> destroyed its stored string, thus invalidating the c_str() pointer before the target function was entered. Instead, make LLSDParam<LLSD>::operator T() capture each LLSDParam<T> it constructs, extending its lifespan to the lifespan of the LLSDParam<LLSD> instance. For this, derive each LLSDParam specialization from LLSDParamBase, a trivial base class that simply establishes the virtual destructor. We can then capture any specialization as a pointer to LLSDParamBase. Also restore LazyEventAPI tests on Mac.
2023-10-27DRTVWR-587: Skip Visual Studio LLSDParam<const char*> tests for now.Nat Goodspeed
They do work fine on clang... unblocking the rest of the team during diagnosis.
2023-10-26D587 Post merge fmod issues fixAndrey Kleshchev
2023-10-25Post merge build fixAndrey Kleshchev
2023-10-25Merge remote-tracking branch 'origin/main' into DRTVWR-587-maint-VAndrey Lihatskiy
2023-10-25SL-18837: Build all branches on GitHub now.Nat Goodspeed
2023-10-25Merge branch 'main' into DRTVWR-587-maint-VAndrey Lihatskiy
2023-10-25Increment viewer version to 6.6.17Nat Goodspeed
following promotion of DRTVWR-578
2023-10-25Merge branch 'main' into DRTVWR-587-maint-VAndrey Lihatskiy
# Conflicts: # autobuild.xml # indra/llcommon/tests/llleap_test.cpp # indra/newview/viewer_manifest.py
2023-10-20SL-16661 dmg installer updateAndrey Lihatskiy
2023-10-18PIE-1057: viewer-build-util's azure branch has been merged to main.Nat Goodspeed
2023-10-18PIE-1057: Merge branch 'actions-azure' into actionsNat Goodspeed
for new Windows code signing mechanism.
2023-10-17SL-20476: Don't let the compiler know we intend to crash.Nat Goodspeed
clang has gotten smart enough to recognize an inline attempt to store to address zero. Fool it by storing to an address passed as a parameter, and pass nullptr from a different source file.
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-16SL-20473 Add GenericStreamingMessage and dummy handler to suppress packet ↵RunitaiLinden
loss and log spam noise when visiting GLTF enabled regions.
2023-10-13PIE-1057: Pass sign-pkg-windows@azure the Azure-related secrets.Nat Goodspeed
2023-10-13SL-18837: Update dullahan to v118.0.5993.54Nat Goodspeed
This includes this week's CEF 118.
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-18837: Update openal to v1.23.1-18e315cNat Goodspeed
2023-10-12Merge pull request #427 from secondlife/signal/py312nat-goodspeed
Add python 3.12 to FindPython search path
2023-10-12SL-20436 New accounts that select outfit in web fail to download clothingAndrey Kleshchev
2023-10-12SL-18837: Update llca to v202310121525.0-d22bd98Nat Goodspeed
2023-10-11SL-18943 Update LLCA to 202310110702.0Andrey Lihatskiy
2023-10-11SL-18943 Update LLCA to 202310110655.0Andrey Lihatskiy
2023-10-10DRTVWR-587 Update viewer-manager to 3.0-f48e635Andrey Lihatskiy
2023-10-09SL-20430 Camera won't follow avatar above 1024mAndrey Kleshchev
Partially reverts SL-20206 commit 25388312cf28f8b30934ac3885783a96a3b2ed69
2023-10-08Add python 3.12 to FindPython search pathBennett Goble
Look for python 3.12 in the registry along with all the other versions.
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.