Age | Commit message (Collapse) | Author | |
---|---|---|---|
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) | |||
2016-04-20 | MAINT-6322 fix merge error that prevented crash dumps from being located for ↵ | Oz Linden | |
upload (and add better logging) | |||
2016-04-04 | merge with 4.0.3-release | Oz Linden | |
2016-04-01 | merge | Brad Payne (Vir Linden) | |
2016-03-21 | merge | Brad Payne (Vir Linden) | |
2016-03-17 | Merge | Rider Linden | |
2016-03-16 | merge changes for DRTVWR-417 | Oz Linden | |
2016-03-07 | merge DRTVWR-398 build cleanup fixes | Oz Linden | |
2016-02-07 | put the KDU, Fmod*, and CEF versions back in the About info | Oz Linden | |
2016-02-04 | add build configuration to the About box if it is not Release | Oz Linden | |
remove some superfluous other information from About | |||
2016-01-15 | merge changes for 4.0.1-release | Oz Linden | |
2016-01-15 | merge | Brad Payne (Vir Linden) | |
2016-01-15 | Merge VR | Rider Linden | |
2016-01-04 | MAINT-489 various cache and log files not being deleted | andreykproductengine | |
2015-12-22 | Merge downstream, version 4.0.1 | AndreyL ProductEngine | |
2015-12-18 | Merge | Rider Linden | |
2015-12-18 | merge | Brad Payne (Vir Linden) | |
2015-12-18 | Merge | Rider Linden | |
2015-12-15 | Throttle consecutive connect attempts. | rider | |
2015-11-13 | MAINT-5860: remove timestamp from the about box (version id is enough) | Oz Linden | |
2016-01-15 | merge changes for 4.0.1-release | Oz Linden | |
2015-12-18 | merge changes for 4.0.0-release | Oz Linden | |
2015-11-10 | Added code to initiate controlled shutdown of plugins with timeouts for ↵ | Rider Linden | |
misbeahving plugin. | |||
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2015-11-06 | MAINT-5754: Basic keyboard functionality on the Mac. Still incomplete | rider | |
2015-11-02 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2015-10-27 | Pulled merge from bento prime. | Aura Linden | |
2015-10-27 | Fixes SL-202 joint offset and skin weight import. Race condition still exists. | Aura Linden | |
2015-10-27 | MAINT-3491 FIXED If ALM is enabled while in wireframe mode, disabling ↵ | ruslantproductengine | |
wireframe mode results in a black screen. | |||
2015-10-21 | SL-234 WIP - moved LLSkinningUtil funcs to separate class/files. Remap ↵ | Brad Payne (Vir Linden) | |
weights where needed. Warn that related debug settings require restart to take effect. | |||
2015-10-20 | Merge with tip of viewer-release | callum_linden | |
2015-10-19 | MAINT-5732: Behavior #2. Be sure that the internet stream is stopped before ↵ | Rider Linden | |
destroying the streaming audio interface. Otherwise FMODEX blocks on close. |