Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-09 | Simplify version line in the About box, add address size to it | Oz Linden | |
2016-12-05 | merge changes for 5.0.0-release | Oz Linden | |
2016-12-02 | show the build address size in the About box | Oz Linden | |
2016-11-16 | merge | Brad Payne (Vir Linden) | |
2016-11-08 | Backed out changeset: 2a56972b1571 | AndreyL ProductEngine | |
Reverting MAINT-6259 | |||
2016-11-08 | Backed out changeset: 27782e83386b | AndreyL ProductEngine | |
Reverting MAINT-6793 | |||
2016-10-18 | merge | Brad Payne (Vir Linden) | |
2016-10-18 | MAINT-6793 Rigged mesh sometimes full of holes | andreykproductengine | |
2016-10-10 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-09-20 | merge | Brad Payne (Vir Linden) | |
2016-09-16 | Merge | Rider Linden | |
2016-09-16 | Merge | Rider Linden | |
2016-09-15 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-09-14 | Merge | Rider Linden | |
2016-08-29 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-vlc | Nat Goodspeed | |
2016-08-26 | MAINT-5011: Add top-level exception handlers in LLAppViewer::frame(). | Nat Goodspeed | |
2016-08-20 | MAINT-6662 Don't show release notes on first login | AndreyL ProductEngine | |
2016-08-20 | MAINT-6663 [Win LibVLC] test video buttons still appearing in search | AndreyL ProductEngine | |
2016-08-17 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-08-17 | MAINT-5011: Use LLTHROW() instead of plain BOOST_THROW_EXCEPTION(). | Nat Goodspeed | |
A level of preprocessor indirection lets us later change the implementation if desired. | |||
2016-08-16 | Merge VOB with 4.0.8-release | pavelkproductengine | |
2016-08-15 | merge from viewer-release | Brad Payne (Vir Linden) | |
2016-08-11 | merge changes for 4.0.7-release | Oz Linden | |
2016-08-15 | MAINT-6634 fixed string | andreykproductengine | |
2016-08-15 | MAINT-6634 "My graphics driver is out of date" was listed 3 times in Alerts | andreykproductengine | |
2016-07-19 | MAINT-5011: Introduce LLException base class for viewer exceptions. | Nat Goodspeed | |
This also introduces LLContinueError for exceptions which should interrupt some part of viewer processing (e.g. the current coroutine) but should attempt to let the viewer session proceed. Derive all existing viewer exception classes from LLException rather than from std::runtime_error or std::logic_error. Use BOOST_THROW_EXCEPTION() rather than plain 'throw' to enrich the thrown exception with source file, line number and containing function. | |||
2016-07-19 | MAINT-6259 rigged items' LOD should be size dependent, not only avatar dependent | andreykproductengine | |
2016-07-13 | MAINT-5011: Throw an actual exception in Force Software Exception. | Nat Goodspeed | |
http://en.cppreference.com/w/cpp/language/throw says of the plain throw syntax: "This form is only allowed when an exception is presently being handled (it calls std::terminate if used otherwise)." On advice from Oz, replace plain 'throw;' with throwing a std::runtime_error. | |||
2016-07-13 | MAINT-6493 SL Viewer does not respect the Windows 10 display setting size slider | pavelkproductengine | |
2016-07-18 | Backed out changeset: a1a0a055e892 | andreykproductengine | |
2016-07-04 | MAINT-6259 rigged items' LOD should be size dependent, not only avatar dependent | andreykproductengine | |
2016-06-30 | DRTVWR-418: Unify control flow through LLAppViewer across platforms. | Nat Goodspeed | |
The LLApp API used to consist of init(), mainLoop(), cleanup() methods. This makes sense -- but on Mac that structure was being subverted. The method called mainLoop() was in fact being called once per frame. There was initialization code in the method, which (on Mac) needed to be skipped with an already-initialized bool. There was a 'while' loop which (on Mac) needed to be turned into an 'if' instead so the method would return after every frame. Rename LLApp::mainLoop() to frame(). Propagate through subclasses LLAppViewer and LLCrashLogger. Document the fact that frame() returns true to mean "done." (This was always the case, but had to be inferred from the code.) Rename the Mac Objective-C function mainLoop to oneFrame. Rename the C++ free function it calls from runMainLoop() to pumpMainLoop(). Add comments to llappdelegate-objc.mm explaining (inferred) control flow. Change the Linux viewer main() and the Windows viewer WINMAIN() from a single LLAppViewer::mainLoop() call to repeatedly call frame() until it returns true. Move initialization code from the top of LLAppViewer::frame() to the init() method, where it more properly belongs. Remove corresponding mMainLoopInitialized flag (and all references) from LLAppViewer. Remove 'while (! LLApp::isExiting())' (or on Mac, 'if (! LLApp::isExiting())') from LLAppViewer::frame() -- thus unindenting the whole body of the 'while' and causing many lines of apparent change. (Apologies to reviewers.) There are four LLApp states: APP_STATUS_RUNNING, APP_STATUS_QUITTING, APP_STATUS_STOPPED and APP_STATUS_ERROR. Change LLAppViewer::frame() return value from (isExiting()) (QUITTING or ERROR) to (! isRunning()). I do not know under what circumstances the state might transition to STOPPED during a frame() call, but I'm quite sure that if it does, we don't want to call frame() again. We only want a subsequent call if the state is RUNNING. Also rename mainLoop() method in LLCrashLogger subclasses LLCrashLoggerWindows, LLCrashLoggerMac, LLCrashLoggerLinux. Of course it's completely up to the frame() method whether to yield control; none of those in fact do. Honor protocol by returning true (frame() is done), even though each one's main() caller ignores the return value. In fact LLCrashLoggerWindows::mainLoop() wasn't using the return protocol correctly anyway, returning wParam or 0 or 1 -- possibly because the return protocol was never explicitly documented. It should always return true: "I'm done, don't call me again." | |||
2016-06-13 | MAINT-6366 - diagnostics related to animation asset downloads | Brad Payne (Vir Linden) | |
2016-06-02 | MAINT-5194 Visual Outfit browser | pavelkproductengine | |
Made refactoring of LLFloaterOutfitSnapshot and LLFloaterSnapshot | |||
2016-05-26 | Fix typo in platform test for CEF version | Callum Prentice | |
2016-05-26 | Put back QuickTime plugin code for OS X only (untested - moving code to OS X ↵ | callum_linden | |
dev) | |||
2016-05-24 | MAINT-6419 Simplified the version check + buildfix | AndreyL ProductEngine | |
2016-05-24 | Merge VOB with release 4.0.6 | pavelkproductengine | |
2016-05-23 | Automated merge with tip of viewer-release | callum_linden | |
2016-05-21 | merged jelly-doll viewer-release into bento | Brad Payne (Vir Linden) | |
2016-05-20 | MAINT-6419 Show the release notes when first starting a new viewer | AndreyL ProductEngine | |
2016-05-10 | Added support for arbitrary URLs and cleaned up code | callum_linden | |
2016-05-20 | Merged in lindenlab/viewer-lynx | AndreyL ProductEngine | |
2016-05-13 | MAINT-6383 SLT timestamp in "About second life" floater | andreykproductengine | |
2016-05-10 | Merged in oz_linden/maint-5974 | Mnikolenko Productengine | |
2016-05-09 | Add version info | callum_linden | |
2016-05-06 | merge | Brad Payne (Vir Linden) | |
2016-05-06 | merge 4.0.4-release and MAINT-5974 | Oz Linden | |
2016-04-29 | MAINT-6226 Incorporate a customized Snapshot feature to Outfit Browser flow | pavelkproductengine | |
Initial version, further refactoring pending | |||
2016-04-20 | MAINT-6322 fix merge error that prevented crash dumps from being located for ↵ | Oz Linden | |
upload (and add better logging) |