aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt22
-rw-r--r--linden/indra/newview/llnetmap.cpp10
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py42
3 files changed, 54 insertions, 20 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index db9de23..f8604f8 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -355,6 +355,14 @@
355 modified: linden/indra/newview/llpanelavatar.cpp 355 modified: linden/indra/newview/llpanelavatar.cpp
356 356
357 357
3582009-09-09 Jacek Antonelli <jacek.antonelli@gmail.com>
359
360 * Commented out Linux tarball building.
361 It's a waste of time to package after every compile.
362
363 modified: linden/indra/newview/viewer_manifest.py
364
365
3582009-09-08 McCabe Maxsted <hakushakukun@gmail.com> 3662009-09-08 McCabe Maxsted <hakushakukun@gmail.com>
359 367
360 * Created my own version of Emerald's chat channel tool. 368 * Created my own version of Emerald's chat channel tool.
@@ -457,10 +465,22 @@
457 465
458 * Fixed ground sit menu entry missing check. 466 * Fixed ground sit menu entry missing check.
459 467
468<<<<<<< HEAD
469=======
470 modified: linden/indra/newview/llviewermenu.cpp
471 modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
472
473
4742009-09-05 Jacek Antonelli <jacek.antonelli@gmail.com>
475
476 * Converted RLVa menu items to XUI.
477
478>>>>>>> mccabe/1.2.0-next
460 modified: linden/indra/newview/llviewermenu.cpp 479 modified: linden/indra/newview/llviewermenu.cpp
461 modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml 480 modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
462 481
463 482
483<<<<<<< HEAD
4642009-09-05 Jacek Antonelli <jacek.antonelli@gmail.com> 4842009-09-05 Jacek Antonelli <jacek.antonelli@gmail.com>
465 485
466 * Converted RLVa menu items to XUI. 486 * Converted RLVa menu items to XUI.
@@ -469,6 +489,8 @@
469 modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml 489 modified: linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml
470 490
471 491
492=======
493>>>>>>> mccabe/1.2.0-next
4722009-09-04 Jacek Antonelli <jacek.antonelli@gmail.com> 4942009-09-04 Jacek Antonelli <jacek.antonelli@gmail.com>
473 495
474 * Applied Kitty Barnett's RLVa 1.0.1h (Restrained Life) patch. 496 * Applied Kitty Barnett's RLVa 1.0.1h (Restrained Life) patch.
diff --git a/linden/indra/newview/llnetmap.cpp b/linden/indra/newview/llnetmap.cpp
index cac35b9..9ef56c1 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/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
771class Linux_i686Manifest(LinuxManifest): 773class Linux_i686Manifest(LinuxManifest):