diff options
Diffstat (limited to 'linden/indra/newview')
-rw-r--r-- | linden/indra/newview/llnetmap.cpp | 10 | ||||
-rw-r--r-- | linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml | 12 | ||||
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 42 |
3 files changed, 37 insertions, 27 deletions
diff --git a/linden/indra/newview/llnetmap.cpp b/linden/indra/newview/llnetmap.cpp index f055dbc..e848aeb 100644 --- a/linden/indra/newview/llnetmap.cpp +++ b/linden/indra/newview/llnetmap.cpp | |||
@@ -388,6 +388,16 @@ void LLNetMap::draw() | |||
388 | } | 388 | } |
389 | // [/RLVa:KB] | 389 | // [/RLVa:KB] |
390 | 390 | ||
391 | // [RLVa:KB] | ||
392 | if ( !gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES) ) | ||
393 | { | ||
394 | // User is not allowed to see who it is, or even if it's a friend, | ||
395 | // due to RLV settings. | ||
396 | glyph_color = avatar_color; | ||
397 | } | ||
398 | // [/RLVa:KB] | ||
399 | |||
400 | |||
391 | LLWorldMapView::drawAvatar( | 401 | LLWorldMapView::drawAvatar( |
392 | pos_map.mV[VX], pos_map.mV[VY], | 402 | pos_map.mV[VX], pos_map.mV[VY], |
393 | glyph_color, | 403 | glyph_color, |
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml b/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml index 81c49e7..512ee16 100644 --- a/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml +++ b/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml | |||
@@ -383,6 +383,11 @@ | |||
383 | <on_click function="View.ToggleRenderType" userdata="hideparticles" /> | 383 | <on_click function="View.ToggleRenderType" userdata="hideparticles" /> |
384 | <on_check function="View.CheckRenderType" userdata="hideparticles" /> | 384 | <on_check function="View.CheckRenderType" userdata="hideparticles" /> |
385 | </menu_item_check> | 385 | </menu_item_check> |
386 | <menu_item_check name="Show HUD Attachments" label="Show HUD Attachments" | ||
387 | shortcut="alt|shift|H"> | ||
388 | <on_click function="View.ShowHUDAttachments" userdata="" /> | ||
389 | <on_check function="View.CheckHUDAttachments" /> | ||
390 | </menu_item_check> | ||
386 | <menu_item_separator /> | 391 | <menu_item_separator /> |
387 | <menu name="Zoom Level" create_jump_keys="true" | 392 | <menu name="Zoom Level" create_jump_keys="true" |
388 | label="Zoom Level" opaque="true" tear_off="true"> | 393 | label="Zoom Level" opaque="true" tear_off="true"> |
@@ -1094,13 +1099,6 @@ | |||
1094 | <on_check function="Advanced.CheckFeature" | 1099 | <on_check function="Advanced.CheckFeature" |
1095 | userdata="flexible" /> | 1100 | userdata="flexible" /> |
1096 | </menu_item_check> | 1101 | </menu_item_check> |
1097 | <menu_item_check name="HUD Attachments" | ||
1098 | label="HUD Attachments" | ||
1099 | shortcut=""> | ||
1100 | <on_click function="View.ShowHUDAttachments" userdata="" /> | ||
1101 | <on_check function="View.CheckHUDAttachments" /> | ||
1102 | </menu_item_check> | ||
1103 | |||
1104 | </menu> | 1102 | </menu> |
1105 | 1103 | ||
1106 | 1104 | ||
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 5da0256..6ae5b80 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -746,26 +746,28 @@ class LinuxManifest(ViewerManifest): | |||
746 | 746 | ||
747 | self.package_file = installer_name + '.tar.bz2' | 747 | self.package_file = installer_name + '.tar.bz2' |
748 | 748 | ||
749 | if("package" in self.args['actions'] or | 749 | # Disabled for now. It's a waste of time to package every compile. |
750 | "unpacked" in self.args['actions']): | 750 | |
751 | 751 | # if("package" in self.args['actions'] or | |
752 | # temporarily move directory tree so that it has the right | 752 | # "unpacked" in self.args['actions']): |
753 | # name in the tarfile | 753 | # |
754 | self.run_command("mv %(dst)s %(inst)s" % { | 754 | # # temporarily move directory tree so that it has the right |
755 | 'dst': self.get_dst_prefix(), | 755 | # # name in the tarfile |
756 | 'inst': self.build_path_of(installer_name)}) | 756 | # self.run_command("mv %(dst)s %(inst)s" % { |
757 | try: | 757 | # 'dst': self.get_dst_prefix(), |
758 | # --numeric-owner hides the username of the builder for | 758 | # 'inst': self.build_path_of(installer_name)}) |
759 | # security etc. | 759 | # try: |
760 | self.run_command('tar -C %(dir)s --numeric-owner -cjf ' | 760 | # # --numeric-owner hides the username of the builder for |
761 | '%(inst_path)s.tar.bz2 %(inst_name)s' % { | 761 | # # security etc. |
762 | 'dir': self.get_build_prefix(), | 762 | # self.run_command('tar -C %(dir)s --numeric-owner -cjf ' |
763 | 'inst_name': installer_name, | 763 | # '%(inst_path)s.tar.bz2 %(inst_name)s' % { |
764 | 'inst_path':self.build_path_of(installer_name)}) | 764 | # 'dir': self.get_build_prefix(), |
765 | finally: | 765 | # 'inst_name': installer_name, |
766 | self.run_command("mv %(inst)s %(dst)s" % { | 766 | # 'inst_path':self.build_path_of(installer_name)}) |
767 | 'dst': self.get_dst_prefix(), | 767 | # finally: |
768 | 'inst': self.build_path_of(installer_name)}) | 768 | # self.run_command("mv %(inst)s %(dst)s" % { |
769 | # 'dst': self.get_dst_prefix(), | ||
770 | # 'inst': self.build_path_of(installer_name)}) | ||
769 | 771 | ||
770 | 772 | ||
771 | class Linux_i686Manifest(LinuxManifest): | 773 | class Linux_i686Manifest(LinuxManifest): |