Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-16 | merge | Brad Payne (Vir Linden) | |
2016-07-26 | build fix | Mnikolenko Productengine | |
2016-07-26 | MAINT-6566 Avatar sliders display incorrect values immediately after saving ↵ | Mnikolenko Productengine | |
a copy of the wearable. | |||
2016-05-21 | merged jelly-doll viewer-release into bento | Brad Payne (Vir Linden) | |
2016-03-23 | SL-344 - hook for debugging wearable contents during slider testing. | Brad Payne (Vir Linden) | |
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2015-01-28 | MAINT-4744: Eliminate viewer dependency on (old) GNU libstdc++. | Nat Goodspeed | |
To be more accurate, this changeset doesn't actually eliminate the dependency: it eliminates the use cases for the llifstream / llofstream feature that requires it. Currently you can construct an llifstream or llofstream from an open LLFILE* file handle (or, except on Windows, an int file descriptor). But rather than containing a streambuf implementation based on FILE*, llfile.h relies on the fact that the Windows std::filebuf happens to support that as a nonstandard extension; also on a nonstandard GNU extension __gnu_cxx::stdio_filebuf<char>. To move from GNU libstdc++ to clang's libc++ (the direction on Mac), we could code a streambuf that supports FILE*. But before doing that, it's worth asking whether anyone actually uses this questionable feature. In fact there were only two methods: LLWearable::exportFile() and importFile() -- and only one call to either, in LLViewerWearable::saveNewAsset(). The code in saveNewAsset() opened the LLFILE* immediately before calling exportFile(), meaning we could reasonably push the open operation down into exportFile(). That logic was complex anyway due to the need for the caller to close the LLFILE* regardless of the success of the exportFile(). Change LLWearable::exportFile() and importFile() to accept a std::string filename rather than an open LLFILE*. Change LLViewerWearable::saveNewAsset() to simply call exportFile(filename) rather than horsing around with an LLFILE* handle. (This improves the code in another way too: it encapsulates the need to open the relevant file in binary mode. Previously, each caller had to remember to do that.) To prevent inadvertent reintroduction of ll[io]fstream(LLFILE*) code, add llstream_LLFILE preprocessor macro (default 0) to control access to the relevant constructors. Also suppress rdbuf() override, the only method whose signature references llstdio_filebuf. | |||
2014-05-13 | sunshine-external merge WIP | Brad Payne (Vir Linden) | |
2013-09-23 | SH-3455 WIP - post-SSA cleanup | Brad Payne (Vir Linden) | |
2013-09-23 | SH-3455 WIP - post-SSA cleanup, including removal of mUseServerBakes and ↵ | Brad Payne (Vir Linden) | |
related methods | |||
2013-09-19 | SH-3455 WIP - removing bake upload code | Brad Payne (Vir Linden) | |
2013-09-19 | SH-3455 WIP - removing bake upload code | Brad Payne (Vir Linden) | |
2013-09-19 | SH-3455 WIP - removing bake upload code | Brad Payne (Vir Linden) | |
2013-08-09 | second phase summer cleaning | Richard Linden | |
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc. | |||
2013-06-21 | SH-4240 FIX Users can set their hover height to 0 | Nyx Linden | |
Adjusted the startup conditions, and relogging should apply the enforcement as appropriate now. Note that this affects the startup enforcement and should re-test the macro avatar loading bug. | |||
2013-06-05 | merge with viewer-release | Richard Linden | |
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 | |||
2012-10-17 | additional diagnostics, improved shape stability at cost of increasing ↵ | Brad Payne (Vir Linden) | |
entanglement between baked and local appearance | |||
2012-10-03 | additional fixes for avoiding avatar param manipulation via wearables, ↵ | Brad Payne (Vir Linden) | |
setting correct state from avatar appearance | |||
2012-09-27 | merge | Brad Payne (Vir Linden) | |
2012-09-27 | audited uses of centralBakeVersion vs. isUsingServerBakes | Brad Payne (Vir Linden) | |
2012-09-27 | Merging sunshine-experimental into sunshine-internal | Nyx (Neal Orman) | |
2012-09-27 | Fix for ruthing in non-server-bake regions | Brad Payne (Vir Linden) | |
2012-09-27 | Fix for mac/linux 'ruth' appearance. Fix for linux build issue | Don Kjer | |
2012-09-26 | more state management stuff, DRANO flags for problematic areas | Brad Payne (Vir Linden) | |
2012-09-20 | Partial rewrite of llifstream and llofstream (Windows implementation ↵ | Don Kjer | |
pending). Moved more functionality from llviewerwearable to llwearable | |||
2012-09-19 | small tweaks to param debugging, restricting LLWearable::writeToAvatar | Brad Payne (Vir Linden) | |
2012-09-19 | work in progress, more debugging/logging of avatar visual param info | Brad Payne (Vir Linden) | |
2012-09-13 | Merge sunshine -> sunshine-experimental | Don Kjer | |
2012-09-11 | SH-3264 Moved over a few more items to llappearance | Nyx (Neal Orman) | |
moved over: isWearingWearableType wearable::writeToAvatar wearable::mTEMap (stores LocalTextureObject*) more from wearable::import/export wearable::createVisualParams, etc | |||
2012-09-06 | Extracted mWearableDatas from LLAgentWearables into ↵ | Don Kjer | |
llappearance/LLWearableData. Moved LLDriverParam into llappearance | |||
2012-09-04 | Split gl-specific LLViewerTexture implementation into llrender/LLGLViewerTexture | Don Kjer | |
2012-09-03 | Renamed LLVOAvatarDefines to LLAvatarAppearanceDefines | Don Kjer | |
2012-09-03 | Cleanup of llappearance refactor file definition order for easier diff'ing | Don Kjer | |
2012-09-03 | Extracted texture baking system into llappearance library. | Don Kjer | |