Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-20 | Clean up impostors and visual muting | Oz Linden | |
Rename the settings that control them to be more descriptive Remove the separate boolean setting (RenderUseImpostors) that governed both Establish default values based on gpu class for impostors and visual muting | |||
2015-02-20 | STORM-2082 Remove obsolete xml file | Jonathan Yap | |
2015-02-19 | STORM-2082 Fix edge case bug | Jonathan Yap | |
2015-02-18 | STORM-2082 Advanced floater xml adjustments | Jonathan Yap | |
2015-02-18 | STORM-2082 Fix issue with isDirty | Jonathan Yap | |
2015-02-18 | add Sovereign Engineer to contribution credits | Oz Linden | |
2015-02-17 | Fix line endings | Tank_Master | |
2015-02-17 | BUG-2707; Disable SEHOP for installed binary via 'Image File Exection ↵ | Tank_Master | |
Options' during installation. With permission from Nicky Dasmijn | |||
2015-02-16 | Add more info to the registry for display on Programs and Feature control panel | Tank_Master | |
2015-02-16 | Launch SL as a user from the UAC elevated installer. Fixes BUG-8358 and others. | Tank_Master | |
2015-02-16 | Get the normal uninstall process working again | Tank_Master | |
2015-02-16 | Fix speeling errors | Tank_Master | |
2015-02-16 | Simplify deleting Help folder, more comments format fixes | Tank_Master | |
2015-02-15 | Line ending fix | Tank_Master | |
2015-02-14 | Add myself to contribution | Tank_Master | |
2015-02-14 | Don’t delete user's settings with auto install, removing the need to back ↵ | Tank_Master | |
them up and then restore them later This saves time and lowers the risk of something going wrong with the file copy process | |||
2015-02-14 | Remove LicenseDescUpdate, LicenseDescSetup, and LicenseDescNext from Ja and ↵ | Tank_Master | |
De language files These are not present in any other file, including English | |||
2015-02-14 | Add option to remove user settings and cache files at uninstall, with message | Tank_Master | |
Removed function to delete use stored password file Removed no longer used RemoveCacheFilesDP from language files Added message to English language file for prompt when asking to remove user files -Note: this needs translations in other languages added | |||
2015-02-14 | Remove no longer used code; Combine calls to delete files on install into ↵ | Tank_Master | |
one call Functionality change: deletion of entire skins folder to prevent issues when an XML file is deleted from the installer, but left on the hard drive after upgrade | |||
2015-02-14 | Rearrange the order of sections to better follow un/installation procedure | Tank_Master | |
2015-02-14 | MAINT-4329 Backed out changeset: fd3a4d5c2cf5 | ruslantproductengine | |
2015-02-13 | Merge viewer-release and become 3.7.25 | Mnikolenko ProductEngine | |
2015-02-12 | Backed out changeset: bd12d1ab1943 - MAINT-3591 Remove "Start Second Life ↵ | Tank_Master | |
now?" dialogue... | |||
2015-02-12 | Backed out changeset: 24c470cccee0 - added SKIP_AUTORUN command flag... | Tank_Master | |
2015-02-11 | Show Details button at install and uninstall | Tank_Master | |
Note: Showing details adds a lot of overhead and will slow down the processes, but allows the user the option of seeing what is going on. Usefull for errors that occure. | |||
2015-02-11 | A little more cleanup | Tank_Master | |
2015-02-11 | A few more comments changes | Tank_Master | |
2015-02-11 | Comments formatting changes, no behavior changes | Tank_Master | |
2015-02-11 | STORM-2082 Attempt to put advanced settings into separate floater | Jonathan Yap | |
2015-02-10 | Update Windows Installer script to block Vista with SP1 and lower. | Tank_Master | |
2015-02-09 | included libopenal in linux package | Oz Linden | |
2015-02-06 | correct bug in initial av rendering I introduced, clarify several tests | Oz Linden | |
2015-02-04 | merge storm-2082 changes | Oz Linden | |
2015-02-04 | allow visually muted results to be cached from const methods | Oz Linden | |
2015-02-03 | remove unused RenderAvatarComplexityLimit; replace with visual muting based ↵ | Oz Linden | |
on render weight | |||
2015-01-30 | tone down visually muted avatar colors | Oz Linden | |
2015-02-03 | STORM-2082 Reformat preset floaters. | Jonathan Yap | |
Remove Impostor checkbox. That control is now merged into the right side of the impostors slider. Maximum ARC still depends on impostors being enabled. Once that dependency is removed in llvoavatar then it will be necessary to reflect that change in the UI code. | |||
2015-01-30 | MAINT-4853 FIXED Pressing the ENTER key when entering a location into the ↵ | Mnikolenko ProductEngine | |
Type a location field, doesn't log you in | |||
2015-01-30 | MAINT-4853 FIXED Pressing the ENTER key when entering a location into the ↵ | Mnikolenko ProductEngine | |
Type a location field, doesn't log you in | |||
2015-01-29 | merge more fixes from Jonathan | Oz Linden | |
2015-01-29 | add default values (some sensitive to graphics setting) for avatar rendering ↵ | Oz Linden | |
limits | |||
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. | |||
2015-01-27 | Include MSVCP120.DLL and MSVCR120.DLL in Windows viewer package. | Nat Goodspeed | |
Generalize Copy3rdPartyLibs.cmake to eliminate some clone-and-tweak redundancy. | |||
2015-01-27 | don't use jellybaby rendering for impostors (visually muted != impostored) | Oz Linden | |
2015-01-26 | merge latest fixes from Jonathan | Oz Linden | |
2015-01-26 | minor code cleanups, remove friend and conversation status as visual mute ↵ | Oz Linden | |
criteria | |||
2015-01-25 | STORM-2082 Clear preset in use when resetting to hardware defaults | Jonathan Yap | |
2015-01-24 | STORM-2082 Add 5px more blank space around quality slider. | Jonathan Yap | |
Slightly adjust the names of the help text in the three new floaters. | |||
2015-01-23 | Explain why LLHost::setHostByName() / getHostName() test skipped. | Nat Goodspeed | |
A skip() stating that we don't yet understand why the test fails is implicitly an open action item. This one isn't open. Save future developers the research. | |||
2015-01-23 | Re-enable skipped test: evidently Windows APR libs CAN transcode. | Nat Goodspeed | |
I don't know at what point the skip() was introduced, but that test now passes even on Windows. |