summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-03Renamed LLVOAvatarDefines to LLAvatarAppearanceDefinesDon Kjer
2012-09-03Cleanup of llappearance refactor file definition order for easier diff'ingDon Kjer
2012-09-03Fixed typo in cmake fileDon Kjer
2012-09-03Extracted texture baking system into llappearance library.Don Kjer
2012-08-21SH-3261 SH-3324 WIP Starting extraction of wearable/appearance librariesNyx (Neal Orman)
First pass at cmake configs, and starting to try to move wearable class. Things are broken, checkpointing work to collaborate.
2012-08-17Added extended flags to god tools region info responseDon Kjer
2012-08-17Fix for incorrectly reading extended region flagsDon Kjer
2012-08-17Expanding region flags to 64 bits. Adding region protocol flagsDon Kjer
2012-08-17Merge viewer-development -> sunshineDon Kjer
2012-08-15merge back beta fixesOz Linden
2012-08-15merge changes for DRTVWR-198Oz Linden
2012-08-15tag merge of DRTVWR-198Oz Linden
2012-08-15merge back beta fixesOz Linden
2012-08-15tag merge of DRTVWR-196Oz Linden
2012-08-15merge changes for DRTVWR-194Oz Linden
2012-08-15tag merge of DRTVWR-194Oz Linden
2012-08-14merge back beta fixesOz Linden
2012-08-14open-146: correct licenses in llphysicsextensions stubOz Linden
2012-08-14merge changes for DRTVWR-193Oz Linden
2012-08-14tag merge of DRTVWR-193Oz Linden
2012-08-14Automated merge with https://bitbucket.org/VirLinden/sunshineNyx (Neal Orman)
2012-08-14SH-3310 WIP setting up architecture for switching texture baking on ↵Nyx (Neal Orman)
per-region basis Set up an architecture to minimize the use of the baked texture debug setting. Instead concentrating on setting a per-region flag at the region handshake point. This should be processed once the new regions are using the updated handshake. The debug setting is being used in this one location as a placeholder. Builds, but not fully tested/commented yet, passing this work off to Vir.
2012-08-14merge back beta fixesOz Linden
2012-08-14merge changes for DRTVWR-195Oz Linden
2012-08-14tag merge of DRTVWR-195Oz Linden
2012-08-14merge changes for DRTVWR-191Oz Linden
2012-08-14tag merge of DRTVWR-191Oz Linden
2012-08-14correct merge errorOz Linden
2012-08-14merge back beta fixesOz Linden
2012-08-14merge back beta fixesOz Linden
2012-08-14merge changes for DRTVWR-192Oz Linden
2012-08-14tag merge of DRTVWR-192Oz Linden
2012-08-10VWR-29358 : Fix auto scroll to selection when the filter is activeMerov Linden
2012-08-10merge changes for DRTVWR-190Oz Linden
2012-08-10tag merge of DRTVWR-190Oz Linden
2012-08-09MAINT-1197 : Fix inventory deselection/reselection when cutting itemsMerov Linden
2012-08-09MAINT-1342: correct initial login location handling, clarify the two related ↵Oz Linden
persistent settings
2012-08-09MAINT-113 Fix for flashing property lines when selecting objects.davep@spiral.lindenlab.com
2012-08-08mergeBrad Payne (Vir Linden)
2012-08-08Automated merge with http://hg.secondlife.com/viewer-developmentNat Goodspeed
2012-08-08Add implementation comments to LLHandle.Nat Goodspeed
I recently tried to wade through llhandle.h and got somewhat perplexed. Armed with an explanation from Richard, I've added notes to the file to try to make it a bit less mysterious.
2012-08-08Move llhandle.h into llcommon; same generality as llpointer.h.Nat Goodspeed
Leaving llhandle.h in llui restricts the set of viewer project directories which could potentially use it, and there's nothing whatsoever UI-specific about it.
2012-08-08merge changes for DRTVWR-189Oz Linden
2012-08-08tag merge of DRTVWR-189Oz Linden
2012-08-08Added tag DRTVWR-189 for changeset 9ee938778970Oz Linden
2012-08-07merge changes for DRTVWR-188Oz Linden
2012-08-07tag merge of DRTVWR-188Oz Linden
2012-08-07tag merge of DRTVWR-181Oz Linden
2012-08-06PATH-842, VWR-29431: BUGFIX Correcting a regression introduced by the fix ↵Todd Stinson
for PATH-542. The viewer calculated rotation resulting from an object's angular velocity was being incorrectly reset when the corresponding object update was received. With this bugfix, the rotation resulting from the angular velocity is accumulated separately and is re-appplied when the object update resets the object's rotation.
2012-08-05Remove jarring viewer log spam message -- unless it's true.Nat Goodspeed
For as long as I've been paying attention to viewer logs, every run has always stated -- in all-caps, no less! : NOTE: ALL NOTIFICATIONS THAT OCCUR WILL GET ADDED TO IGNORE LIST FOR LATER RUNS. I have always found that unsettling, having little desire to automatically ignore notifications -- especially not whatever random set happens to manifest during a particular run. However, over time I've learned that it seems to have no actual impact. I've wondered (not too hard) what it actually *does* mean -- but generally I'm looking at a viewer log because I'm in hot pursuit of some quite different problem. Stumbling across the source for this message today in LLViewerWindow::LLViewerWindow, I was shocked -- shocked! -- to find it was being produced unconditionally! Therefore it has heretofore been utterly meaningless log spam. It provided no additional information whatsoever to anyone reading a log -- only that vague sense of unease. Make this conditional on gSavedSettings.getBOOL("IgnoreAllNotifications"), which would appear to be the original intent. Now its presence (or absence) actually says something about internal conditions in the viewer.