Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-22 | Test disabling a couple of the display_startup() calls as an experiment. | Rider Linden | |
2015-09-21 | Add cleanup to LLCore prevent occasional crash on exit. | Rider Linden | |
2015-09-21 | MAINT-5629: Remove llares and llareslistener. Login now does not attempt to ↵ | Rider Linden | |
do a lookup on the server names and rewrite the URL. MAINT-5614: Bad password status correctly detected. | |||
2015-09-21 | MAINT-5425 FIXED No icon is shown for certain transaction notifications. | Mnikolenko ProductEngine | |
2015-09-18 | Pref instance() over getInstance() | Rider Linden | |
2015-09-18 | Set consistent terminology for yield/wait -> suspend for coroutines. | Rider Linden | |
2015-09-18 | MAINT-5427 Min width changed | Mnikolenko ProductEngine | |
2015-09-18 | MAINT-5427 Expand notifications according to message length | Mnikolenko ProductEngine | |
2015-09-16 | MAINT-5628: Set flicr state to "Posting" on all paths before image upload ↵ | Rider Linden | |
starts. Causes "Upload" button to be disabled and activity indicator to appear. Also made sure that setConnectionState is called correctly for Facebook and Twitter. | |||
2015-09-16 | MAINT-5507: Include httpconstants in file picker for linux. | Rider Linden | |
2015-09-15 | MAINT-5507: Remove llcurl, move constant values and untilities to llcorehttp lib | Rider Linden | |
2015-09-15 | MAINT-5601 Physics model not previewed, physics model not applied to mesh on ↵ | AndreyL ProductEngine | |
upload Some improvements: renaming to act like "legacy matching" would apply only to the models simple enough for this | |||
2015-09-15 | MAINT-5427 Group notices and invitation will expand on left-clicking | Mnikolenko ProductEngine | |
2015-09-14 | MAINT-5507: Removal of sdrpc client/server | Rider Linden | |
MAINT-5507: removal of LLCurl::Easy, LLCurl::Multi LLCurl::Responder | |||
2015-09-14 | merge | Brad Payne (Vir Linden) | |
2015-09-14 | MAINT-5507: Remove HTTPClient and related cruft. | Rider Linden | |
2015-09-14 | SL-133 WIP, SL-134 WIP - more extra joint handling | Brad Payne (Vir Linden) | |
2015-09-14 | MAINT-5627 FIXED "Copy to merchant outbox" menu item is removed | Mnikolenko ProductEngine | |
2015-09-11 | Bit of cleanup around Translation and remove httpassetstorage | Rider Linden | |
2015-09-11 | MAINT-4952: Slight change to marketplace logging allow direct logging of ↵ | Rider Linden | |
LLSD and remove unused logging function. | |||
2015-09-10 | MAINT-5575: Finished converting experience cache to singleton | Rider Linden | |
MAINT-4952: Coverted VMM to coroutines | |||
2015-09-11 | MAINT-5601 FIXED Physics model not previewed, physics model not applied to ↵ | AndreyL ProductEngine | |
mesh on upload | |||
2015-09-07 | MAINT-5602 FIXED Viewer crashes when loading physics from file | AndreyL ProductEngine | |
--HG-- branch : develop | |||
2015-09-04 | Experience Profile to coroutines and Experience cache. | Rider Linden | |
2015-09-03 | Changes from code review with Nat | Rider Linden | |
2015-09-03 | Region experience allow/disallow. | Rider Linden | |
2015-09-03 | Correct use of filename vs. path in llfeaturemanager coroutine. | Rider Linden | |
2015-09-03 | Moved group experiences into experience cache. Use coros and new HTTP libs. | Rider Linden | |
2015-09-02 | Moved find experience into experience cache (moved cache recording into ↵ | Rider Linden | |
cache and out of UI) changed from responder to coroutine. | |||
2015-09-02 | Move associated experience fetching into the ExperienceCache as a coro ↵ | Rider Linden | |
remove the responder. | |||
2015-09-01 | MAINT-5575: Convert the Experience cache into a coro based singleton. | Rider Linden | |
--HG-- branch : MAINT-5575 | |||
2015-09-01 | merge | Brad Payne (Vir Linden) | |
2015-08-31 | SL-133 WIP, SL-134 WIP - more handling for out-of-range joints | Brad Payne (Vir Linden) | |
2015-08-28 | MAINT-5575: Begin conversion to Singleton<> for Experience Cache. Commited ↵ | Rider Linden | |
on branch so that I don't trigger a build of it until I'm ready. --HG-- branch : MAINT-5575 | |||
2015-08-28 | MAINT-5574: Added default parameter for callbalk on AISAPI interface. | Rider Linden | |
Better check on callback exsit in coroutine Don't create AISAPI::completion_t if there is no call back passed. | |||
2015-08-27 | Convert LSL script preview compilation exp request | Rider Linden | |
2015-08-26 | Convert exp floater to use coroutines | Rider Linden | |
Convert script queue compilation exp request | |||
2015-08-26 | MAINT-5532 related crash fix and some log improvements | andreykproductengine | |
2015-08-25 | Merge | Rider Linden | |
2015-08-24 | MAINT-4952: Removed a bit of debug code that got included accidentally and ↵ | Rider Linden | |
change host == LLHost() to host.isInvalid() | |||
2015-08-21 | MAINT-5536 FIXED Mac viewer crash when started from a web browser handler | andreykproductengine | |
2015-08-19 | Swap BOOST_COROUTINE and BOOST_CONTEXT | Rider Linden | |
2015-08-19 | merge | Brad Payne (Vir Linden) | |
2015-08-18 | MAINT-5506: Fix ugly timing bug in llurlentry static initialization. | Nat Goodspeed | |
The problem was that class-static LLUrlEntryParcel::sRegionHost was being initialized by copying class-static LLHost::invalid. Naturally, these two statics are initialized in different source files. Since C++ makes no promises about the relative order in which objects in different object files are initialized, it seems we hit a case in which we were trying to initialize sRegionHost by copying a completely uninitialized LLHost::invalid. In general we might attempt to address such cross-translation-unit issues by introducing an LLSingleton. But in this particular case, the punch line is that LLHost::invalid is explicitly constructed identically to a default-constructed LLHost! In other words, LLHost::invalid provides nothing we couldn't get from LLHost(). All it gives us is an opportunity for glitches such as the above. Remove LLHost::invalid and all references, replacing with LLHost(). | |||
2015-08-18 | Clearing out duplicated strings | andreykproductengine | |
2015-08-18 | Merge viewer-release and become version 3.8.4 | andreykproductengine | |
2015-08-18 | merge changes for MAINT-4734 | pavelkproductengine | |
2015-08-17 | Adding llcorehttp to links | Rider Linden | |
2015-08-17 | merge changes for 3.8.3-release | Oz Linden | |
2015-08-17 | merge | Brad Payne (Vir Linden) | |