Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-15 | Merge with head of viewer-release | Callum Prentice | |
2015-06-15 | DRTVWR-382: merge in 3.7.30 hotfix | Glenn Glazer | |
2015-06-15 | increment viewer version to 3.7.31 | Oz Linden | |
2015-06-15 | Added tag 3.7.30-release for changeset 67edc442c80b | Oz Linden | |
2015-06-12 | Merge fix for MAINT-5277 into experience tools branch | simon | |
2015-06-12 | MAINT-4900 FIXED Don't show group info for non-admins. | Mnikolenko ProductEngine | |
2015-06-12 | MAINT-2577 Fixed the status message | AndreyL ProductEngine | |
2015-06-12 | MAINT-5277 FIXED Viewer is missing MSVCP100.DLL and MSVCR100.DLL | AndreyL ProductEngine | |
2015-06-11 | DD-410 : Do not extend inventory selections to items that are not visible | Merov Linden | |
2015-06-11 | Add commands to move CEF runtime files to right place and fix up ↵ | Callum Prentice | |
media_plugin_cef with install_name_tool (note, this generates 2 copies of CEF framework - will fix later) | |||
2015-06-11 | DD-416 : Fix deactivate listing that I broke in trying to improve speed with ↵ | Merov Linden | |
the previous DD-416 commit | |||
2015-06-11 | updates for new slvoice packages | Bjoseph Wombat | |
2015-06-11 | MAINT-5269 FIXED Viewer crashes if you open Help -> About Second Life while ↵ | andreykproductengine | |
a group member list is loading. | |||
2015-06-11 | MAINT-1723 FIXED Restore snapshots from trash to Photo album folder. | Mnikolenko ProductEngine | |
2015-06-11 | MAINT-14 FIXED Region message logged into nearby chat log has duplicated ↵ | Mnikolenko ProductEngine | |
sender name | |||
2015-06-10 | DD-393 : Rework association so that is_listed property is not overwritten ↵ | Merov Linden | |
before we get data from SLM | |||
2015-06-10 | Changes to let CMake generate determine where the build files for OS X CEF ↵ | callum_linden | |
media plugin are | |||
2015-06-10 | point autobuild.xml at new OS X (hand rolled) package that I am using for ↵ | callum_linden | |
testing OS X CEF | |||
2015-06-10 | DD-416 : Added DAMA when version folder is empty and unlisted, accelerated ↵ | Merov Linden | |
some functions avoiding depth computation when we could, fixed cut case | |||
2015-06-10 | MAINT-4297 (Mesh models sometimes fail to load completely) | ruslantproductengine | |
MAINT-4449 (Starter avatars deformed or missing alpha under some conditions / graphics cards / LOD ) BUG-7239 (Starter avatars deformed or missing alpha under some conditions / graphics cards / LOD) The reason of problem on avatar (or one of avatar attachments) "deformed" it's selected volume (LLVolume) with a lower LOD. How it works. Why it happens? Each LLVOVolume object has variable mLOD which is indicate which is LLVolume should be assigned to LLPrimitive::mVolumep. The assigment happens in LLVOVolume::setVolume which is call LLPrimitive::setVolume, which is then lookup desired volume in LLVolumeMgr class which is keep as I understand all volume groups for all objects in scene. The data (mesh) for LLVolume class is loading from LL servers by http, and if sucessfully the variable LLVolume::mIsMeshAssetLoaded assigned to true. But sometimes the data may not be ready, and in this case the LLVOVolume::setVolume make request for download mesh (to the LLMeshRepository) and setup one of available lod. All of this things happens in (see: LLVOVolume::setVolume, code: block if (!getVolume()->isMeshAssetLoaded() {...}) When LLMeshRepository sucessfully download the mesh it's set (as I said above LLVolume::mIsMeshAssetLoaded, LLVolume::setMeshAssetLoaded()) and then also notify LLVOVolume::notifyMeshLoaded() about it. This causes add LLVOVolume::mDrawable into the pipline build list (see LLVOVolume::notifyMeshLoaded()) and set LLVOVolume::mSculptChanged; In order to process it later in LLVOVolume::updateGeometry (In order to see the mechanism of LLPipiline build list processing set bp in this method and see the stack). After the LLDrawable will be processed it will be removed form the build queue also all falgs will be reseted (see the end of LLVOVolume::updateGeometry). And here is the problem in variable-flag's "*Changed" processing (in LLVOVolume::updateGeometry): What if by the time of processing the mFaceMappingChanged also will be set (due to other changes in engine)? It means that LLVOVolume::setVolume will not be called and LLPrimitive::mVolumep remain unchaged and would point to the LLVolume for a lower LOD. My changes intended for fix this problem. BTW this is true for not only for standard avatar's. The reason why it is well visible on standard avatars is because it has a more "ugly" lower-LOD-s, than on avatars which is was loaded by the SL-users. For example on my DudtPank avatars I didn't see big difference between LOD-0 and LOD-3. If you want you can "play" with it in LLVOVolume::calcLOD() with add code if(getAvatar() && getAvatar()->isSelf()) { mLOD = <desired lod level [0..3]> } | |||
2015-06-11 | build fix | Mnikolenko ProductEngine | |
2015-06-09 | DD-412 : Fixes the hierarchy before creating a listing and warn the user | Merov Linden | |
2015-06-09 | DD-412 : WIP : Validate a listing before creating a listing on SLM | Merov Linden | |
2015-06-09 | DD-359 : Improve performance by caching display data while updating and ↵ | Merov Linden | |
preventing refreshing the whole marketplace (never useful) | |||
2015-06-09 | Removed dead code, llsdmessage, llcapabilitylistener and the associated tests. | Rider Linden | |
2015-06-09 | Removed homelocation responder (rolled into llagent) | Rider Linden | |
Removed sdhandler from llagent. Removed unused values from llacountingccostmgr Fixed smart pontier creation in llfacebook | |||
2015-06-08 | Added a way to pass a policy Id to the coroadapter. | Rider Linden | |
Changed language, appearance, and maturity to conform to use the adapter rather than the SDHandler | |||
2015-06-08 | Fixed for OS X version - in progress | Callum Prentice | |
2015-06-08 | make a lot of values agree with declared types | Oz Linden | |
2015-06-08 | DD-336, DD-359 : WIP : Introduced a reverse lookup table for version folder ↵ | Merov Linden | |
to listing folder to improve performance | |||
2015-06-08 | remove false positive trigraphs | Oz Linden | |
2015-06-08 | add edu release channel | Oz Linden | |
2015-06-08 | corrections needed for new tools | Oz Linden | |
2015-06-08 | merge changes for 3.7.29-release | Oz Linden | |
2015-06-08 | merge changes for MAINT-4734 | pavelkproductengine | |
2015-06-08 | Merge | Rider Linden | |
2015-06-06 | DD-416 : Unlist a listed listing that becomes devoid of any item | Merov Linden | |
2015-06-06 | DD-333 : Prevent dropping no copy items if it'll create folders above the ↵ | Merov Linden | |
folder limit | |||
2015-06-06 | DD-316 : Disable New Folder under version folder hierarchy of ↵ | Merov Linden | |
InventoryOutboxMaxFolderCount has been reached | |||
2015-06-05 | Mac builds are very picking about testing an unsigned for < 0 | Rider Linden | |
2015-06-05 | Added a seek method to LLCore::Http for data rewind. | Rider Linden | |
A couple of minor changes to merchant out box in hopes that the would fix the issues. | |||
2015-06-05 | DD-290 : Add an option to filter out marketplace, use it in Recent tab | Merov Linden | |
2015-06-04 | Default headers added. | Rider Linden | |
Group manager finished conversion. Outfit folders coverted. | |||
2015-06-04 | Point all media with MIME type that used to be webkit, at the new CEF plugin | Callum Prentice | |
2015-06-04 | Copy OS X media plugin to right place | Callum Prentice | |
2015-06-04 | Add CEF into OS X build | Callum Prentice | |
2015-06-04 | MAINT-5137 FIXED Warning sometimes appears at login - Alert: There was a problem | pavelkproductengine | |
Added logic to resend HTTP request for default perms saving | |||
2015-06-09 | MAINT-4893 FIXED Investigate a viewer option to limit rendering avatar near ↵ | andreykproductengine | |
0,0,0 and avoid ugly rendering glitches | |||
2015-06-10 | MAINT-797 FIXED Hide Place profile panel and related buttons when opening ↵ | Mnikolenko ProductEngine | |
pick panel. | |||
2015-06-09 | Merge downstream code | simon | |