Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-18 | The unbearable lightness of being norspec | Graham Linden | |
2013-09-09 | Merge viewer-release 3.6.5 Cocoa | Graham Linden | |
2013-08-28 | NORSPEC-355 NORSPEC-356 replaced llerrs with asserts to avoid crashes from ↵ | Graham Linden | |
false alarms in release | |||
2013-06-21 | Automated merge with file:///F:%5Cviewer-bear | Dave Parks | |
2013-06-19 | Merge with viewer-release. | Geenz | |
2013-05-13 | Merged with https://bitbucket.org/lindenlab/viewer-beta | Geenz | |
2013-05-09 | Merge downstream code and viewer-beta | simon | |
2013-04-25 | Merge 3.5.1 into Materials | Graham Madarasz | |
2013-04-19 | merge changes for DRTVWR-294 | Oz Linden | |
2013-04-11 | Merge in downstream code (chui fixes, materials) | simon | |
2013-04-11 | First pass on alpha blended materials | Geenz | |
2013-03-29 | Update Mac and Windows breakpad builds to latest | Graham Madarasz | |
2013-03-22 | MAINT-2518 : Viewer LLViewerTextureList::removeImageFromList() shouldn't crash | simon | |
Reviewed by Kelly. | |||
2013-03-11 | merge | prep | |
2013-03-08 | SH-3959 WIP - pass information about type of fetched image - server bake, ↵ | Brad Payne (Vir Linden) | |
host bake, map tile, etc - down the chain so LLTextureFetchWorker can adjust behavior as needed | |||
2013-02-27 | Fix max VRAM detection on some cards and issues with sequencing of ↵ | Graham Madarasz (Graham Linden) | |
application of mem multiplier | |||
2013-02-27 | For MAINT-2003 Fix sequencing issue causing mem multiplier to be applied ↵ | Graham Madarasz (Graham Linden) | |
after clamping below actual mem available | |||
2013-02-14 | tweaked and added some log messages, including more detail when an image is ↵ | Brad Payne (Vir Linden) | |
flagged as missing | |||
2013-02-01 | SH-3800 WIP - reject appearance messages with contradictory appearance ↵ | Brad Payne (Vir Linden) | |
version info | |||
2013-01-30 | SH-3800 WIP - flag mismatched expectations for baked texture origins | Brad Payne (Vir Linden) | |
2013-01-24 | merging in viewer-beta. | Nyx Linden | |
Most of the merge was clean, a couple conflicts. Brought over a couple patches manually for llpolymesh. | |||
2012-12-04 | Pull and merge viewer-development | simon@Simon-PC.lindenlab.com | |
2012-11-28 | SH-3563. Pull and merge from viewer-development. Modest code changes to fix ↵ | prep | |
alignment issue in llAppearance. | |||
2012-11-20 | Automated merge with https://bitbucket.org/lindenlab/viewer-development | Dave Parks | |
2012-10-24 | SH-3430 FIX - don't cache ids of images with specified URLs, such as server ↵ | Brad Payne (Vir Linden) | |
bakes | |||
2012-11-06 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2012-10-11 | Change LLDir::findSkinnedFilenames() to use enum instead of bool. | Nat Goodspeed | |
At Richard's suggestion, changed the bool merge parameter to new enum ESkinConstraint with values CURRENT_SKIN and ALL_SKINS. This clarifies what we're requesting at the point of the call. | |||
2012-10-10 | Introduce new LLDir::findSkinnedFilenames() method. Use as needed. | Nat Goodspeed | |
In a number of different places, for different reasons, the viewer wants to load a UI-related file that might be overridden by a non-default skin; and within that skin, might further be overridden by a non-default language. Apparently, for each of those use cases, every individual developer approached it as an entirely new problem, solving it idiosyncratically for that one case. Not only is this a maintenance problem, but it rubs one's nose in the fact that most such solutions consider only a subset of the relevant skin directories. Richard and I evolved an API intended to address all such cases: a central LLDir method returning a list of relevant pathnames, from most general to most localized, filtered to present only existing files; plus a couple of convenience methods to specifically obtain the most general and most localized available file. There were several load-skinned-file methods (LLFloater::buildFromFile(), LLPanel::buildFromFile() and LLUICtrlFactory::createFromFile() -- apparently cloned-and-modified from each other) that contained funky bolted-on logic to output the loaded data to an optional passed LLXMLNodePtr param. The trouble is that passing that param forced each of these methods to subvert its normal search: specifically for that case, it needed to find the baseline XML file instead of the localized one. Richard agreed that for the intended usage (reformatting XML files) we should use XML schema instead, and that the hacky functionality should be removed. Remove it. Also remove LLUICtrlFactory::getLocalizedXMLNode(), only used for those three special cases. Some callers explicitly passed the optional LLXMLNodePtr param as NULL. Remove that. Remove LLFloaterUIPreview::displayFloater(save) param, which relied on the optional output LLXMLNodePtr param. Make onClickSaveFloater() and onClickSaveAll() emit popupAndPrintWarning() about discontinued functionality. Recast LLFloater::buildFromFile(), LLPanel::buildFromFile(), LLUICtrlFactory::createFromFile(), LLNotifications::loadTemplates(), LLUI::locateSkin(), LLFontRegistry::parseFontInfo(), LLUIColorTable::loadFromSettings(), LLUICtrlFactory::loadWidgetTemplate(), LLUICtrlFactory::getLayeredXMLNode(), LLUIImageList::initFromFile(), LLAppViewer::launchUpdater() and LLMediaCtrl::navigateToLocalPage() to use findSkinnedFilenames(). (Is LLAppViewer::launchUpdater() ever called any more? Apparently so -- though the linux-updater.bin logic to process the relevant command-line switch has been disabled. Shrug.) (Is LLMediaCtrl::navigateToLocalPage() ever used?? If so, why?) Remove LLUI::setupPaths(), getXUIPaths(), getSkinPath() and getLocalizedSkinPath(). Remove the skins/paths.xml file read by setupPaths(). The only configuration it contained was the pair of partial paths "xui/en" and "xui/[LANGUAGE]" -- hardly likely to change. getSkinPath() specifically returned the first of these, while getLocalizedSkinPath() specifically returned the second. This knowledge is now embedded in findSkinnedFilenames(). Also remove paths.xml from viewer_manifest.py. Remove injected xui_paths from LLFontGL::initClass() and LLFontRegistry::LLFontRegistry(). These are no longer needed since LLFontRegistry can now directly consult LLDir for its path search. Stop passing LLUI::getXUIPaths() to LLFontGL::initClass() in LLViewerWindow's constructor and initFonts() method. Add LLDir::append() and add() methods for the simple task of combining two path components separated by getDirDelimiter() -- but only if they're both non-empty. Amazing how often that logic is replicated. Replace some existing concatenations with add() or append(). New LLDir::findSkinnedFilenames() method must know current language. Allow injecting current language by adding an LLDir::setSkinFolder(language) param, and pass it where LLAppViewer::init() and initConfiguration() currently call setSkinFolder(). Also add LLDir::getSkinFolder() and getLanguage() methods. Change LLFLoaterUIPreview's LLLocalizationResetForcer helper to "forcibly reset language" using LLDir::setSkinFolder() instead of LLUI::setupPaths(). Update LLDir stubs in lldir_stub.cpp and llupdaterservice_test.cpp. Add LLDir::getUserDefaultSkinDir() to obtain often-overlooked possible skin directory -- like getUserSkinDir() but with "default" in place of the current skin name as the last path component. (However, we hope findSkinnedFilenames() obviates most explicit use of such individual skin directory pathnames.) Add LLDir unit tests for new findSkinnedFilenames() and add() methods -- the latter exercises append() as well. Tweak indra/integration_tests/llui_libtest/llui_libtest.cpp for all the above. Notably, comment out its export_test_floaters() function, since the essential LLFloater::buildFromFile(optional LLXMLNodePtr) functionality has been removed. This may mean that llui_libtest.cpp has little remaining value, not sure. | |||
2012-09-05 | Merge in latest viewer-development | simon@Simon-PC.lindenlab.com | |
2012-09-04 | Split gl-specific LLViewerTexture implementation into llrender/LLGLViewerTexture | Don Kjer | |
2012-08-24 | Automated merge with http://bitbucket.org/lindenlab/viewer-cat | Richard Linden | |
2012-08-07 | Automated merge with ssh://hg.lindenlab.com/richard/viewer-interesting | Richard Linden | |
2012-08-07 | SH-3275 WIP Run viewer metrics for object update messages | Richard Linden | |
cleaned up LLStat and removed unnecessary includes | |||
2012-07-30 | merge | Brad Payne (Vir Linden) | |
2012-07-23 | a trivial code change for SH-3073. The change makes sure to clear the ↵ | Xiaohong Bao | |
texture fetching queue ONLY once during a teleporting. | |||
2012-07-18 | SH-3275 WIP Run viewer metrics for object update messages | Richard Linden | |
continued clean up of llstats stuff | |||
2012-07-20 | MAINT-570 Remove unused memory tracking system LLMemType | Dave Parks | |
2012-06-28 | Merge | Dave Parks | |
2012-06-26 | fix merge conflicts: v-r to drano | Xiaohong Bao | |
2012-06-26 | v-r to drano merge conflicts wip | Brad Payne (Vir Linden) | |
2012-06-22 | merge | Dave Parks | |
2012-06-12 | for SH-3073: implement a fast cache system for texture fetching | Xiaohong Bao | |
2012-06-08 | SH-3145 : Expose update fetch and update priorities magic numbers in ↵ | Merov Linden | |
settings.xml | |||
2012-05-31 | fix for MAINT-1113: [PUBLIC_JIRA_USERS][crashhunters] crash at ↵ | Xiaohong Bao | |
LLViewerTextureList::removeImageFromList(LLViewerFetchedTexture *) [secondlife-bin llviewertexturelist.cpp] | |||
2012-05-29 | fo SH-3074: clear ghost and stale texture fetching requests in time. | Xiaohong Bao | |
2012-05-25 | Merge pull from lindenlab/viewer-development as requested by Oz for DRTVWR-148 | simon@Simon-PC.lindenlab.com | |
2012-05-03 | For SH-3086: add functions to refetch all previous textures through HTTP and ↵ | Xiaohong Bao | |
from cache | |||
2012-04-12 | for SH-3074: clear ghost and stale texture fetching requests in time | Xiaohong Bao | |
2012-04-05 | SH-3060 : Implement new byte range computation, cleaned up use of ↵ | Merov Linden | |
compression rate as well. | |||
2012-04-20 | MAINT-775 More edge case cleanup -- spinning child prims still break on ↵ | Dave Parks | |
deselect until the next LoD update |