Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-25 | SL-9960 [EEP] Allow drag and drop inventory setting to the "Settings from ↵ | maxim_productengine | |
Inventory" field | |||
2018-10-24 | SL-1828 Indicate that "Allow Multiple Viewers" Preference is unsupported | maxim_productengine | |
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-23 | SL-9922 FIXED [EEP] The Day environment settings are changed when open the ↵ | maxim_productengine | |
Water setting in ‘Fixed Environment’ editor | |||
2018-10-23 | SL-9941 EEP XY_Vector improvement - logarithmic scale mode | AndreyL ProductEngine | |
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 | Merged in graham_linden/viewer-eep-graham (pull request #165) | Rider Linden | |
SL-9806 | |||
2018-10-22 | SL-9806 | Graham Linden | |
Get dome rendering to not assert the depth test state behind deferred render's back. Make clouds write and test depth to give stars something to depth test against. Add z-bias in star vert shader to force some depth testing of stars against clouds. | |||
2018-10-22 | DRTVWR-447: Restore copying BugsplatMac.framework into Mac package. | Nat Goodspeed | |
2018-10-22 | SL-9911 FIXED [EEP] Day Settings are modifiable in About Land floater for ↵ | maxim_productengine | |
parcel that uses Region Settings | |||
2018-10-20 | SL-9931 | Graham Linden | |
Remove (unused) fan buffer and fix parameterization of the strip vert buffer(s) to not include a sharp discontinuity at the horizon. | |||
2018-10-19 | Merged in graham_linden/viewer-eep-graham (pull request #162) | Rider Linden | |
SL-9928 | |||
2018-10-19 | SL-9928 | Graham Linden | |
De-hackify WL additive to get better match between ALM and non-ALM rendering without bringing back SL-1491 lens flare bug. | |||
2018-10-19 | Merged in graham_linden/viewer-eep-graham (pull request #161) | Rider Linden | |
SL-9929 | |||
2018-10-19 | SL-9929 | Graham Linden | |
Replace WL atmospherics sun color calcs, fix water specular sunlight contribution to use them, and do not add moon contribution during daytime. | |||
2018-10-19 | Merged in graham_linden/viewer-eep-graham (pull request #160) | Rider Linden | |
Port sim-side changes to back-conversion of new settings to legacy. | |||
2018-10-19 | Merge | Graham Linden | |
2018-10-19 | Merged in maxim_productengine/viewer-eep2 (pull request #159) | Rider Linden | |
SL-9918 FIXED [EEP] Cloud image set to None displays the same clouds as Default | |||
2018-10-19 | SL-1283 TOS floater - moved buttons down to the floater bottom | AndreyL ProductEngine | |
2018-10-19 | SL-9918 FIXED [EEP] Cloud image set to None displays the same clouds as Default | maxim_productengine | |
2018-10-19 | SL-9919 [EEP] Change width for "Large Wave Speed" text field | maxim_productengine | |
2018-10-19 | SL-9923 FIXED [EEP] The sliders on the ‘Atmosphere & Lighting’ tab are ↵ | maxim_productengine | |
offset from each other | |||
2018-10-19 | SL-9921 [EEP] Rename the tooltip for trash icon to 'Remove selected item' | maxim_productengine | |
2018-10-18 | FIX INTL-307 Translate Viewer Set53 into 9 languages (viewer-eep) | eli | |
2018-10-18 | Port sim-side changes to back-conversion of new settings to legacy. | Graham Linden | |
Fix validating of density multiplier to clamp >= 0.0001f. Port fix to setter for ambient color in sky settings. | |||
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 | SL-1476 EEP parcel transition inconsistencies | andreykproductengine | |
2018-10-17 | Merge | Rider Linden | |
2018-10-17 | SL-9889: New reconverted default assets | Rider Linden | |
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 | SL-9902 EEP Importing Sky from file should mark editor as dirty | andreykproductengine | |
2018-10-17 | SL-9902 EEP Editors retaining dirty flags when they shouldn't | andreykproductengine | |
2018-10-17 | Merged in maxim_productengine/viewer-eep (pull request #152) | Rider Linden | |
SL-9853 FIXED [EEP] Default Settings object cannot be copied by other users. | |||
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 | SL-9853 FIXED [EEP] Default Settings object cannot be copied by other users. | maxim_productengine | |
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-17 | division by zero protection | andreykproductengine | |