summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2011-08-04 11:52:32 -0400
committerOz Linden <oz@lindenlab.com>2011-08-04 11:52:32 -0400
commit5aa1521625f39825f31163a5ab0a64a73d96de95 (patch)
tree09e8264e57542140f3d8da8174d3aae1e3d5084c /indra
parent2fcf7bc6d7e27f1ae4731d0ca5cdb667f577f957 (diff)
fix path choice for project branches, attempt to fix linux icon
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/icons/beta/secondlife_256.BMPbin0 -> 196662 bytes
-rw-r--r--indra/newview/icons/development/secondlife_256.BMPbin0 -> 196662 bytes
-rw-r--r--indra/newview/icons/project/secondlife_256.BMPbin0 -> 196662 bytes
-rw-r--r--indra/newview/icons/release/secondlife_256.BMPbin0 -> 196662 bytes
-rw-r--r--indra/newview/icons/test/secondlife_256.BMPbin0 -> 196662 bytes
-rw-r--r--indra/newview/viewer_manifest.py26
6 files changed, 12 insertions, 14 deletions
diff --git a/indra/newview/icons/beta/secondlife_256.BMP b/indra/newview/icons/beta/secondlife_256.BMP
new file mode 100644
index 0000000000..97bd67d3d6
--- /dev/null
+++ b/indra/newview/icons/beta/secondlife_256.BMP
Binary files differ
diff --git a/indra/newview/icons/development/secondlife_256.BMP b/indra/newview/icons/development/secondlife_256.BMP
new file mode 100644
index 0000000000..174b22319a
--- /dev/null
+++ b/indra/newview/icons/development/secondlife_256.BMP
Binary files differ
diff --git a/indra/newview/icons/project/secondlife_256.BMP b/indra/newview/icons/project/secondlife_256.BMP
new file mode 100644
index 0000000000..cd890725f8
--- /dev/null
+++ b/indra/newview/icons/project/secondlife_256.BMP
Binary files differ
diff --git a/indra/newview/icons/release/secondlife_256.BMP b/indra/newview/icons/release/secondlife_256.BMP
new file mode 100644
index 0000000000..74deedd7d3
--- /dev/null
+++ b/indra/newview/icons/release/secondlife_256.BMP
Binary files differ
diff --git a/indra/newview/icons/test/secondlife_256.BMP b/indra/newview/icons/test/secondlife_256.BMP
new file mode 100644
index 0000000000..e23fcfdbe9
--- /dev/null
+++ b/indra/newview/icons/test/secondlife_256.BMP
Binary files differ
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index bdb18f5da5..281db4ac83 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -148,10 +148,11 @@ class ViewerManifest(LLManifest):
channel_type=self.channel_lowerword()
if channel_type == 'release' \
or channel_type == 'beta' \
- or channel_type == 'project' \
or channel_type == 'development' \
:
icon_path += channel_type
+ elif re.match('project.*',channel_type) :
+ icon_path += 'project'
else :
icon_path += 'test'
return icon_path
@@ -624,11 +625,7 @@ class DarwinManifest(ViewerManifest):
icon_path = self.icon_path()
if self.prefix(src=icon_path, dst="") :
- test_path = os.path.join(self.get_src_prefix(), "secondlife.icns")
- if os.path.exists(test_path) :
- self.path("secondlife.icns")
- else :
- raise Exception("Icon not found '%s'" % test_path)
+ self.path("secondlife.icns")
self.end_prefix(icon_path)
self.path("SecondLife.nib")
@@ -867,14 +864,6 @@ class LinuxManifest(ViewerManifest):
def construct(self):
super(LinuxManifest, self).construct()
self.path("licenses-linux.txt","licenses.txt")
- icon_path = self.icon_path()
- if self.prefix(src=icon_path, dst="") :
- test_path = os.path.join(self.get_src_prefix(), "secondlife_256.png")
- if os.path.exists(test_path) :
- self.path("secondlife_256.png","secondlife_icon.png")
- else :
- raise Exception("Icon not found '%s'" % test_path)
- self.end_prefix(icon_path)
if self.prefix("linux_tools", dst=""):
self.path("client-readme.txt","README-linux.txt")
self.path("client-readme-voice.txt","README-linux-voice.txt")
@@ -900,6 +889,15 @@ class LinuxManifest(ViewerManifest):
# recurse
self.end_prefix("res-sdl")
+ # Get the icons based on the channel
+ icon_path = self.icon_path()
+ if self.prefix(src=icon_path, dst="") :
+ self.path("secondlife_256.png","secondlife_icon.png")
+ if self.prefix(src="",dst="res-sdl") :
+ self.path("secondlife_256.BMP","ll_icon.BMP")
+ self.end_prefix("res-sdl")
+ self.end_prefix(icon_path)
+
self.path("../viewer_components/updater/scripts/linux/update_install", "bin/update_install")
# plugins