summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings
AgeCommit message (Collapse)Author
2009-12-16EXT-3514 update debug settings for new appearance featuresNyx (Neal Orman)
following changes: 1) remove renderavatarinvisible - no longer need this debug setting 2) add showobjectrenderingcost (default:TRUE) so we can turn this feature off if necessary 3) add showdebugappearanceeditor (default:FALSE) so we can test the future appearance editor code reviewed by vir and seraph --HG-- branch : avatar-pipeline
2009-12-11Merge media back into viewer 2-0skolb
2009-12-10PARTIAL DEV-43869 - add "isInterestingEnough()" to the queue calculationRick Pasetto
This change bumps the queue sizes way up, because we think that the "isInterestingEnough()" call will prevent loading more media data than we think is necessary. Still need to implement it in LLVOVolume, though
2009-12-10PARTIAL DEV-43869: LLMediaDataClient now uses two queuesRick Pasetto
This is a fairly major change that addresses the issue of an object with constantly-updating media. Before, that object would be put into our single queue and sorted to a particular spot, and since it continuously updates, it would "always be there". That means that nothing "behind" it would ever get serviced. This change introduces two queues for each MDC: one is the same "sorted" queue as before, and the other is unsorted, and "round-robins". New objects go into the sorted queue, objects whose media we already know about get put into the unsorted queue. The two queues are interleaved when serviced (one then the other is serviced -- if one is empty we try the other -- until they are both drained). The round-robin queue works a little differently: after an item is fetched from that queue (remember this would be an item we already know about), that request is marked and put back at the end of the queue. If that object gets a UDP update while in the queue, that mark is "cleared". When it gets to the front of the queue again, if it still marked, it is thrown away. If it is not marked, it is fetched, and again marked and put at the end. This makes the queue self-limiting in how big it can get. I have also made some other changes: - The sorting comparator now just delegates to the object for its "interest" calculation. A higher value = more interesting. LLVOVolume now uses its PixelArea for its "interest" calculation, which seems apparently better (the prior distance calculation was wrong anyway). - The score is cached before the sort operation is performed, so that it won't be expensive to sort - Now, the media version that is fetched is saved in the LLVOVolume, and we do not update if it is not newer (this is not very useful...yet.) - I've introduced hard limits (settable by debug settings) on the size of the queues. The sorted queue will be culled (after sort) to that count. NOTE: this will probably get removed in a later checkin, as I've already gotten feedback that this is not desirable - I've reorganized LLMediaDataClient so it makes more sense. - I've made the request object a little smaller, so the queue won't take up so much memory (more work could be done here) - Added a unit test for the two-queue case (though more tests are needed!)
2009-12-10Merge from default branch.Vadim Savchuk
--HG-- branch : product-engine
2009-12-09EXT-2896 Fixed poor handling of login error.Mark Palange (Mani)
Added more cleanup to the reset_login call. Added new settings to control UseCircuitCode message timeouts to allow testing of this failure. Reviewed by Richard
2009-12-09Merge from default branch.Vadim Savchuk
--HG-- branch : product-engine
2009-12-08Mergerichard
2009-12-08Merge from default branch.Vadim Savchuk
--HG-- branch : product-engine
2009-12-08Update for normal task EXT-3089 - Notification toasts positioning, layering ↵Dmitry Zaporozhan
and stacking. Improved functionality, cleaned code. --HG-- branch : product-engine
2009-12-07Tweaks to make toasts conform to style guide.Justin C. Rounds (Chuck)
http://jira.secondlife.com/browse/EXT-1673
2009-12-07DEV-43439: Allow Home side panel URL to be customized.Lynx Linden
The URL for the Home side panel is now specified via a new "HomeSidePanelURL" string in app_settings/settings.xml. This string supports the following substitutions: CHANNEL = the channel name for the viewer VERSION = the full version string for the viewer LANGUAGE = the current language set in the viewer AUTH_KEY = the authentication key (see below) The authentication key is an optional string that is read from the dictionary of strings returned by login.cgi. If login.cgi returns a key called "home_sidetray_token", then the value of that key is used for the AUTH_KEY substitution. This lets the server provide a piece of blind data that can be passed to the Home panel web page to support authentication. The viewer does not interpret the token in any way. This change adds a new module, llviewerhome.{cpp|h} to contain the model functionality, used by the view module, llpanelhome.{cpp|h}.
2009-12-07Implemented normal task EXT-3089 - Notification toasts positioning, layering ↵Dmitry Zaporozhan
and stacking. --HG-- branch : product-engine
2009-12-04mergeJames Cook
2009-12-04Automated merge with ssh://angela@hg.lindenlab.com/james/gooeyangela
2009-12-03local mergeskolb
2009-12-03EXT-2313 Add auto-close behavior to mini-inspector floaterangela
2009-12-02removed the unused AutoPlayMedia flag. This is now governed by the ↵skolb
ParcelMediaAutoPlayEnable flag.
2009-12-03merge from remote repoangela
2009-12-03EXT-2854 Replace instances in the viewer with the final search maturity namesangela
2009-12-02Fixed UILineEditorVPad which I merged incorrectly. Good value is 4James Cook
2009-12-02Manual merge from default branch.Vadim Savchuk
--HG-- branch : product-engine
2009-12-02Implemented normal sub-task EXT-2975 - Make the IM multifloater optional.Dmitry Zaporozhan
--HG-- branch : product-engine
2009-12-01Adjusted the value of UILineEditorVPad to give more room for text in text ↵Justin C. Rounds (Chuck)
fields.
2009-12-01Changed UISpinctrlBtnHeight to match art.Justin C. Rounds (Chuck)
http://jira.secondlife.com/browse/EXT-1621 http://jira.secondlife.com/browse/EXT-1669 http://jira.secondlife.com/browse/EXT-1671
2009-11-25mergerichard
2009-11-25removed debug spam the proper warrichard
2009-11-24Fixed line editor right padding to work when left padding also assignedJames Cook
Eliminated UILineEditorHPad and added 2 px of padding to all custom line editors. EXT-1735 Show parcel property icons Review with Leyla pending
2009-11-24Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0James Cook
2009-11-24DEV-43332 New 'final' help URL format, as spec'd by enkidu.Tofu Linden
2009-11-23Context menu item to show/hide nav bar parcel property icons.James Cook
2009-11-23Initial implementation of parcel property icons and maturity string on nav barJames Cook
Added new LLAgentUI location format, renamed unclear old one Renamed ShowCoordinatesOption to NavBarShowCoordinates Extended LLLocationInputCtrl to show icons. Reviewed with Rick
2009-11-23Implemented major sub-task EXT-2517 (Add support for the viewer 1.23 chat ↵Sergey Borushevsky
history style (widget-less)) --HG-- branch : product-engine
2009-11-20mergeJames Cook
2009-11-19 EXT-2094 Add click-to-zoom as a one-click settable option for objectsangela
2009-11-18Changes to IM Logging, includes preference changesSteve Bennetts
2009-11-19branch mergeangela
2009-11-18Switch some files to Unix line endingsBryan O'Sullivan
2009-11-18mergeJames Cook
2009-11-18EXT-2094angela
2009-11-17Merge of viewer2 into avpEric M. Tulla (BigPapi)
--HG-- branch : avatar-pipeline
2009-11-17Removed unused legacy pie menu sounds to speed up startup and save memory.James Cook
2009-11-16Added MediaPerformanceManagerDebug debug setting.Monroe Linden
2009-11-16EXT-2512 Turned off Hover Glow Objects by default.James Cook
Should resolve EXT-2499 EXT-2522 EXT-2514 Consider turning back on for Viewer 2.1 and tuning.
2009-11-16mergeLoren Shih
--HG-- branch : avatar-pipeline
2009-11-14mergeSteve Bennetts
2009-11-14More texture cache fixes, including a possible deadlock when the cache was ↵Steve Bennetts
getting purged. Significantly reduced spurrious warnings and delition of non sin-based texture fetch comptabable sided cache files.
2009-11-13Tweaks to media priority calculation.Monroe Linden
Enabled CPU limit setting by default (set to 100% of 1 CPU). Lowered default limits on plugin priorities: 2 normal+, 4 low, 8 total. Limit on total number of instances now only applies to inworld media -- media instances in the UI (such as the help browser and search) don't count toward the limit. UI media will still bump inworld media down from normal/low priority, though. Several improvements to plugin manager debug code in the nearby media list. Don't load unloaded instances that are at PRIORITY_SLIDESHOW or PRIORITY_HIDDEN (they don't get unloaded, they just won't be loaded unless they're at higher priority). Added LLViewerMediaImpl::isPlayable(), which indicates whether an instance would be loaded if it were high enough in the priority list (taking into account autoplay and current load state). Priority algorithm now takes this into account. Fixed a couple of issues with approximate texture interest calculation and its use in setting priorities. Adjusted sleep times on low and normal priorities to be more friendly.
2009-11-13mergeLoren Shih
--HG-- branch : avatar-pipeline
2009-11-12Merge with product-engineSteve Bennetts