Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-28 | SL-10030: Include nextviewer.bat in the Windows install directory. | Nat Goodspeed | |
2018-11-28 | SL-10030: Update to viewer-manager build 522055 | Nat Goodspeed | |
2018-11-28 | SL-10030: Update to viewer-manager build 522036 | Nat Goodspeed | |
2018-11-27 | SL-10030: Update to viewer-manager build 522023 | Nat Goodspeed | |
2018-11-21 | DRTVWR-447: Update to viewer-manager build 521943 | Nat Goodspeed | |
2018-11-21 | SL-10077: Save correct uninstall directory and (un)install mode. | Nat Goodspeed | |
Curiously, the value of $INSTDIR is correct before MULTIUSER_UNINIT, but is made incorrect by MULTIUSER_UNINIT. Save and restore the correct value. Saving $MultiUser.InstallMode in the registry (by setting relevant macros examined by MultiUser.nsh) is susceptible to overwriting if the user installs multiple viewers with the same channel name. Instead, write an InstallMode.txt in the install directory, and read it back on uninstall. Of course, add it to the files to be deleted on uninstall. | |||
2018-11-21 | DRTVWR-447: Fix longstanding NSIS warning about unused label. | Nat Goodspeed | |
2018-11-21 | DRTVWR-447: Fix syntax error in embedded variable reference. | Nat Goodspeed | |
2018-11-15 | SL-10010: Use trunk NSIS + Unicode attrib, instead of Unicode fork. | Nat Goodspeed | |
Back out misguided attempt to overwrite $PROGRAMFILES with $PROGRAMFILES64. | |||
2018-11-15 | SL-10010: Use c:\Program Files rather than c:\Program Files (x86) | Nat Goodspeed | |
for 64-bit viewers. It seems there's a longstanding bug in NSIS: it fails to use $PROGRAMFILES64 rather than $PROGRAMFILES when performing an all-users install of a 64-bit program. Try to remedy that. Also pick up a few NSIS suggestions from Ansariel Hiller. | |||
2018-11-14 | DRTVWR-447: Animesh + BugSplat = 6.1 | Nat Goodspeed | |
2018-11-14 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2018-11-14 | increment viewer version to 6.0.1 | Nat Goodspeed | |
2018-11-14 | Added tag 6.0.0-release for changeset 821edfcd1491 | Nat Goodspeed | |
2018-11-08 | SL-10030: Update to viewer-manager build 521526 | Nat Goodspeed | |
2018-11-07 | SL-9952: updater.exe now renamed to SLVersionChecker.exe | Nat Goodspeed | |
thereby avoiding strange Windows requirement for elevated privilege. | |||
2018-11-07 | SL-9952: Update to viewer-manager build 521490 | Nat Goodspeed | |
2018-11-02 | DRTVWR-447: Fix NSIS installer icons with "Modern UI" mechanism. | Nat Goodspeed | |
2018-11-02 | DRTVWR-447: Merge directly executing updater for Windows precheck. | Nat Goodspeed | |
2018-11-02 | DRTVWR-447: Back out changeset 69118ad33b45: directly run updater | Nat Goodspeed | |
from NSIS installer, instead of via explorer.exe. A recent test run performed the install, then opened an Explorer window on My Documents. <eyeroll/> | |||
2018-11-01 | DRTVWR-447: Allow Standard Windows user to install for current user. | Nat Goodspeed | |
This should eliminate any confusion due to a Standard user needing to elevate to Admin privileges, since from that point on Windows tells the running program the current user is that Admin. Bypass all that. | |||
2018-10-30 | DRTVWR-447: Copy VIEWER_EXE to local variable (thanks Ansariel) | Nat Goodspeed | |
2018-10-29 | SL-9980: Launch the first-run updater via explorer.exe as we used to | Nat Goodspeed | |
run the viewer from the installer. Turns out that the peculiar indirection through explorer.exe was a known trick for an elevated-privileges program to launch a program as the logged-in Windows user. (They could have commented that...) But explorer.exe doesn't pass command-line parameters, so if you want to pass any such to the actual target program, you have to launch a shortcut with those parameters. But this target program (the updater) and its parameters (precheck mumble) are specific to the very first viewer run after installation, so delete it after. Having an additional permanent icon that always runs the updater before the viewer would only confuse matters. | |||
2018-10-29 | SL-9964: Put Mac cursors back into Resources/cursors_mac subdirectory. | Nat Goodspeed | |
2018-10-27 | DRTVWR-447: Stop passing UpdaterServiceURL to leap updater. | Nat Goodspeed | |
In fact, mark UpdaterServiceURL as obsolete. (Consumers should consult build_data.json.) | |||
2018-10-27 | DRTVWR-447: Update to viewer-manager build 521170 | Nat Goodspeed | |
2018-10-27 | DRTVWR-447: Update to viewer-manager build 521169 | Nat Goodspeed | |
2018-10-26 | DRTVWR-447: For some reason the Windows viewer exe wasn't signed. | Nat Goodspeed | |
viewer_manifest.py was signing updater.exe within the package, and then signing the installer executable itself, but not the actual viewer executable. Add that. | |||
2018-10-23 | DRTVWR-447: Try to defeat scary Mac Gatekeeper popups | Nat Goodspeed | |
by replacing the viewer's baked-in BugsplatMac.framework @rpath path with one based on @executable_path. | |||
2018-10-22 | DRTVWR-447: Introduce LLManifest.process_either(). | Nat Goodspeed | |
process_directory() and process_file() are reached both from the top-level caller (try_path(), a local function within LLManifest.path()) and recursively from process_directory(). Both places tested os.path.isdir(source), and if so called process_directory(), else process_file(). Both places were wrong, as it turns out. os.path.isdir(symlink_to_directory) returns True. That meant that despite explicit logic in ccopymumble() to recreate symlinks in the destination area, we were consistently recopying the contents of symlinked directories. The downside to this -- in addition to inflating the size of the installer! -- is that macOS is very particular about the structure of a Framework bundle. It *must* include a Versions/Current symlink identifying which of the other Versions subdirectories is, in fact, current. If Current is itself a subdirectory, codesign can't figure out how to sign the framework, and fails. The logic for deciding between process_directory() and process_file() must explicitly check for os.path.islink(source). Rather than replicating that change in both places, introduce process_either() which decides how to forward the call, and call it both from try_path() and from process_directory(). | |||
2018-10-22 | DRTVWR-447: Restore copying BugsplatMac.framework into Mac package. | Nat Goodspeed | |
2018-10-18 | DRTVWR-447: Re-inject BugsplatServerURL into Mac's Info.plist. | Nat Goodspeed | |
2018-10-18 | DRTVWR-447: Update bugsplat to codeticket version 520791. | Nat Goodspeed | |
2018-10-18 | DRTVWR-447: Update to bugsplat build 520784 | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Restore MACOSX_EXECUTABLE_NAME, used for Info.plist. | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Restore diagnostic output to Mac app bundle packaging. | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Merge Oz's logging changes | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Move test<5> and writeMsgNeedsEscaping() into sequence. | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Restore channel-name sensitivity of Mac BugSplat viewer. | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Update to viewer-manager build 520750 | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Update to viewer-manager build 520737 | Nat Goodspeed | |
2018-10-17 | DRTVWR-447: Finish merging Poseidon into BugSplat | Nat Goodspeed | |
2018-10-17 | Automated merge with ssh://bitbucket.org/nat_linden/viewer-poseidon | Nat Goodspeed | |
2018-10-17 | Last rev before Poseidon merge | Nat Goodspeed | |
2018-10-16 | DRTVWR-447: Use new attachmentsForBugsplatStartupManager SDK method | Nat Goodspeed | |
to attach user settings file and static debug info file to Mac crash reports, as well as SecondLife.log, just like Windows crash reports. | |||
2018-10-16 | renumber the new test to replace the one that was removed | Oz Linden | |
2018-10-16 | DRTVWR-447: Update to bugsplat build 520674 | Nat Goodspeed | |
2018-10-15 | SL-9805 - reduce frequency of dynamic box updates to every N frames, ↵ | Brad Payne (Vir Linden) | |
staggered. Currently N is 4. | |||
2018-10-12 | SL-9805 - more detailed frame timer logging of dynamic bounding box updates | Brad Payne (Vir Linden) | |
2018-10-12 | DRTVWR-474: Update to viewer-manager build 520576 | Nat Goodspeed | |