Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-03 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-12-20 | DRTVWR-418: Another fix for std::string::find() return type. | Nat Goodspeed | |
2016-12-20 | DRTVWR-418: Fix API for LLTracker::stopTracking(). | Nat Goodspeed | |
The signature for LLTracker::stopTracking() was silly: it accepted a void* for the sole purpose of testing whether it was NULL. In other words, the parameter was really a bool in void* clothing. Most callers passed NULL. What got ugly was when you wanted to pass 'true', or a variable bool value. Such values had to be cast to void*. In 64-bit land, the compiler correctly flags that as extremely dubious practice. But it's entirely unnecessary. Since stopTracking() wants a bool, change its parameter to bool. Everybody wins. (While at it, change a few related method params from BOOL to builtin bool.) | |||
2016-11-14 | Merged in lindenlab/viewer-cleanup | AndreyL ProductEngine | |
2016-10-24 | MAINT-6861 FIXED Viewer crashes when attempting to block an experience from ↵ | Mnikolenko Productengine | |
the permissions request dialog. | |||
2016-10-07 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2016-10-03 | Merge | Rider Linden | |
2016-09-26 | MAINT-6756: Added ForceSitAvatar to the list of things an Exp can do in the ↵ | Rider Linden | |
dialog. | |||
2016-09-28 | MAINT-6773 Add payment message | Mnikolenko Productengine | |
2016-08-30 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-07-25 | MAINT-4146 - [Griefing] Folders from muted avatars not sent to trash at login | andreykproductengine | |
2016-06-14 | MAINT-5040 Warning "ll_apr_warn_status: APR: Connection refused" continually ↵ | Mnikolenko Productengine | |
appears on Linux | |||
2016-05-06 | merge 4.0.4-release and MAINT-5974 | Oz Linden | |
2016-04-04 | merge with 4.0.3-release | Oz Linden | |
2016-04-01 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2016-04-01 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2016-03-25 | MAINT-6224 Notifications Update "When I spend or get L$" split into two options. | Mnikolenko ProductEngine | |
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 | merge changes for OPEN-292 | Oz Linden | |
2016-02-08 | MAINT-6109 Translate some strings received from server | AndreyL ProductEngine | |
2016-01-15 | MAINT-6050 Link the owner's name in the Open URL dialog to their profile | AndreyL ProductEngine | |
2015-12-21 | MAINT-335 FIXED Avatar hangs in space after cancelling teleport | andreykproductengine | |
2015-12-11 | MAINT-5879 Block incoming blind teleport requests from non-friends | AndreyL ProductEngine | |
2015-11-29 | Merged lindenlab/viewer-tools-update into default | Cinder Biscuits | |
2016-02-12 | Suppress some overly verbose logging | Oz Linden | |
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2015-11-02 | MAINT-5812: Correctly pull a string from the raw body. Only compare ↵ | Rider Linden | |
languages if detected_language is blank. | |||
2015-11-02 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2015-10-27 | Merged lindenlab/viewer-release into default | Rider Linden | |
2015-10-19 | Merge from viewer release. | Rider Linden | |
2015-10-13 | merge changes for MAINT-4734 | pavelkproductengine | |
2015-09-11 | Bit of cleanup around Translation and remove httpassetstorage | Rider Linden | |
2015-09-10 | MAINT-5575: Finished converting experience cache to singleton | Rider Linden | |
MAINT-4952: Coverted VMM to coroutines | |||
2015-09-03 | Changes from code review with Nat | Rider Linden | |
2015-09-01 | MAINT-5575: Convert the Experience cache into a coro based singleton. | Rider Linden | |
--HG-- branch : MAINT-5575 | |||
2015-08-18 | merge changes for MAINT-4734 | pavelkproductengine | |
2015-08-04 | merge changes for MAINT-4734 | pavelkproductengine | |
2015-08-04 | Merge downstream code and become version 3.8.3 | andreykproductengine | |
2015-08-04 | Merge viewer-release and become version 3.8.3 | AndreyL ProductEngine | |
2015-07-14 | merge 3.8.0-release and correct xml errors caused by reformatting | Oz Linden | |
2015-07-14 | MAINT-5390 FIXED physical objects that roll off region go to trash without ↵ | Mnikolenko ProductEngine | |
notification | |||
2015-07-03 | Merge from viewer-relese and become version 3.8.1 | andreykproductengine | |
2015-07-01 | Merge from viewer-relese and become version 3.8.1 | andreykproductengine | |
2015-06-30 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2015-06-08 | merge changes for 3.7.29-release | Oz Linden | |
2015-06-08 | MAINT-14 FIXED Treat region message like a system message, but also show ↵ | Mnikolenko ProductEngine | |
sender name. | |||
2015-07-02 | Merge from viewer-relese and become version 3.8.1 | andreykproductengine | |
2015-05-28 | MAINT-5232: Normalize LLGlobalEconomy's use of LLSingleton. | Nat Goodspeed | |
LLSingleton currently presents two different usage styles: deriving MyClass from LLSingleton<MyClass>, or just using a typedef. Turns out LLGlobalEconomy is the ONLY class using the typedef style -- and the apologetic comment talks about a potential maintenance that hasn't actually happened. Derive LLGlobalEconomy from LLSingleton<LLGlobalEconomy>, like everyone else. |