Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-02-03 | STORM-513 : pull into viewer-development | Merov Linden | |
2011-02-03 | STORM-397 : pull into viewer-development | Merov Linden | |
2011-02-03 | STORM-316 : pull into viewer-development | Merov Linden | |
2011-02-03 | Pull from viewer-beta | Merov Linden | |
2011-02-03 | Added tag 2.5.0-beta3, DRTVWR-34_2.5.0-beta3 for changeset b723921b5c71 | Dessie Linden | |
2011-02-02 | STORM-953 Clarify what happens when you uncheck Allow Public Access | Jonathan Yap | |
Note: This change also incorporates STORM-960 | |||
2011-02-02 | STORM-960 Descriptive text missing next to first checkbox in About Land/Access | Jonathan Yap | |
Contribution team: Aleric Inglewood, Alexandrea Fride, Robin Cornelius, and Siana Gearz | |||
2011-02-02 | Merge with viewer-development | Merov Linden | |
2011-02-02 | STORM-435 : pull into viewer-development | Merov Linden | |
2011-02-02 | Pull from viewer-beta | Merov Linden | |
2011-02-02 | STORM-957 : pull in viewer-beta (da and fr localization) | Merov Linden | |
2011-02-02 | Add test to call no-args functions using (map | array)-style calls | Nat Goodspeed | |
2011-02-02 | Add test to exercise map/array args mismatch validation. | Nat Goodspeed | |
2011-02-02 | Automated merge with http://hg.secondlife.com/viewer-development | Xiaohong Bao | |
2011-02-02 | fix for Sh-445: debug settings -> "CacheNumberOfRegionsForObjects" does not ↵ | Xiaohong Bao | |
limit the number of object cache files | |||
2011-02-02 | First few LLEventDispatcher call cases: try_call(), call Callables | Nat Goodspeed | |
2011-02-01 | Sync with viewer-development | Merov Linden | |
2011-02-01 | Replace boost::ptr_map<name, etc> with std::map<name, shared_ptr>. | Nat Goodspeed | |
On Windows, unlike on Mac or Linux, boost::ptr_map<> started insisting on this concept of clonability. In other words, it wants to own a unique instance of the pointee; if you copy a value_type -- even to dereference an iterator! -- it wants to construct a whole new instance of the mapped_type. That's nuts. A std::map<..., boost::shared_ptr<>> has the property I want (the mapped_type goes away when the entry is erased), plus it's willing to pass around the shared_ptr to the same instance of the mapped_type. This change also permits simplifying a couple awkward kludges I'd already had to make to accommodate ptr_map's idiosyncracies. | |||
2011-02-01 | Automated merge with http://hg.secondlife.com/viewer-development | Xiaohong Bao | |
2011-02-01 | STORM-484 : pull in viewer-development | Merov Linden | |
2011-02-01 | fix a minor memory leaking flaw for SH-895: some mild memory leaking (partially) | Xiaohong Bao | |
2011-02-01 | fix for SH-891: crash at LLDrawable::getFace(int) | Xiaohong Bao | |
2011-02-01 | Fix string-init compile error (g++ 4.4) in llurlentry_stub.cpp. | Nat Goodspeed | |
Newer C++ compilers produce a (fatal) warning when you try to initialize a (non-const) char* variable with a string literal: you're supposed to capture such data in a const char*. But as this module is resolving external references declared in ancient message-system headers, we don't have the option to fix the original declaration. Instead use char* _PREHASH_Foo = const_cast<char*>("string literal"); // sigh | |||
2011-02-01 | CT-635 FIX DA and FR translation | Eli Linden | |
2011-02-01 | merge | Dave Parks | |
2011-02-01 | Replace ad-hoc test functions/methods with systematic enumeration. | Nat Goodspeed | |
Previous tests involved a small handful of functions with only a couple different parameter types. Now we exhaustively invoke every registration case, plus every metadata query case. Call cases still pending. | |||
2011-02-01 | Sync with viewer-beta | Eli Linden | |
2011-02-01 | STORM-655 FIXED mismatched filter extension in snapshot floater (jpeg vs jpg) | paul_productengine | |
- Added filter "jpg" for "Save As..." dialog so that *.jpg files can be seen as well as *.jpeg. | |||
2011-02-01 | merge changes back from beta branch | Oz Linden | |
2011-02-01 | merge | Dave Parks | |
2011-02-01 | SH-483 Fix for varioius issues with hi-rez snapshots -- mainly disable the ↵ | Dave Parks | |
ability to take hi-rez snapshots if UI or HUD attachments are in the snapshot, and go back to old tile compositing method instead of using huge framebuffer objects. | |||
2011-01-31 | Fix crash bug in array-style metadata query for nullary functions. | Nat Goodspeed | |
The shortcut way to construct an LLSD array of size n is to assign LLSD() to array[n-1]. That's fine -- as long as you remember not to do it for n == 0. | |||
2011-01-31 | Merge | Kent Quirk | |
2011-01-31 | VWR-22024 -- apply Bao's patch to beta | Kent Quirk | |
2011-01-31 | Automated merge with https://bitbucket.org/jenn_linden/viewer-vs2010 | Alain Linden | |
2011-01-31 | build uses latest jsoncpp package with new layout. | Alain Linden | |
2011-01-31 | update mac and linux json libs. | Andrew A. de Laix | |
2011-01-31 | Resolve LLEventDispatcher::add(function(const LLSD&)) ambiguity. | Nat Goodspeed | |
A free function or static method accepting(const LLSD&) was being intercepted by the free-function-with-arbitrary-parameters overload instead of the original Callable overload. Added an overload that specifically redirects that case. Documented limit of ~6 arbitrary parameters for directly-called functions (5 for methods). Beyond that many, you have to write a Callable wrapper function and unpack the parameters from the LLSD by hand. | |||
2011-01-31 | Fix a couple gotchas in LLSDArray, LLSDParam, llsd_equals(). | Nat Goodspeed | |
Nested LLSDArray expressions, e.g.: LLSD array_of_arrays(LLSDArray(LLSDArray(17)(34)) (LLSDArray("x")("y"))); would quietly produce bad results because the outermost LLSDArray was being constructed with the compiler's implicit LLSDArray(const LLSDArray&) rather than LLSDArray(const LLSD&) as the reader assumes. Fixed with an explicit copy constructor to Do The Right Thing. Generalized LLSDParam<float> specialization into a macro to resolve similar conversion ambiguities for float, LLUUID, LLDate, LLURI and LLSD::Binary. Added optional bits= argument to llsd_equals() to permit comparing embedded Real values using is_approx_equal_fraction() rather than strictly bitwise. Omitting bits= retains current bitwise-comparison behavior. | |||
2011-01-31 | HACK just to get the build to work. FIX THIS TEST! | Alain Linden | |
2011-01-31 | find latest DirectX dirs. | Alain Linden | |
2011-01-31 | patches to use new jsoncpp lib on windows | Alain Linden | |
2011-01-31 | merge changes for storm-934 | Oz Linden | |
2011-01-31 | STORM-507 FIXED User that has sent p2p call invitation to other user, is not ↵ | paul_productengine | |
added to Recent tab - Add the caller to the Recent List just after Incoming Call floater appears. Before recicpient accepted or rejected the call. | |||
2011-01-31 | pull changes for STORM-940 and CHOP-369 | Oz Linden | |
2011-01-31 | merge changes for storm-845 | Oz Linden | |
2011-01-31 | merge changes for storm-829 | Oz Linden | |
2011-01-31 | merge changes for storm-643 | Oz Linden | |
2011-01-31 | merge changes for storm-351 | Oz Linden | |
2011-01-29 | Automated merge with file:///Users/oz/Work/V-D | Oz Linden | |