aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJacek Antonelli2009-11-26 19:57:55 -0600
committerJacek Antonelli2009-11-26 19:57:55 -0600
commitc4bba7dc1f97efb5fdd0d7eeccbb5fc8a5f82258 (patch)
treec4443abde42b25e7fb7041d33c0491c6ddcecb05
parentMerge remote branch 'mccabe/1.3.0-next' into next (diff)
parentImprudence 1.2.1 released. (diff)
downloadmeta-impy-c4bba7dc1f97efb5fdd0d7eeccbb5fc8a5f82258.zip
meta-impy-c4bba7dc1f97efb5fdd0d7eeccbb5fc8a5f82258.tar.gz
meta-impy-c4bba7dc1f97efb5fdd0d7eeccbb5fc8a5f82258.tar.bz2
meta-impy-c4bba7dc1f97efb5fdd0d7eeccbb5fc8a5f82258.tar.xz
Merge branch '1.2-maint' into next
Conflicts: linden/indra/newview/res/viewerRes.rc
-rw-r--r--ChangeLog.txt36
-rw-r--r--RELEASE_NOTES.txt25
-rw-r--r--linden/indra/llcommon/llversionviewer.h2
-rw-r--r--linden/indra/newview/English.lproj/InfoPlist.strings4
-rw-r--r--linden/indra/newview/Info-Imprudence.plist2
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py1
-rw-r--r--linden/install.xml16
7 files changed, 74 insertions, 12 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index f7636d9..e584818 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -167,6 +167,42 @@
167 167
168 168
169=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 169=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
170=- 1.2.1 -=
171=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
172
173
1742009-11-25 McCabe Maxsted <hakushakukun@gmail.com>
175
176 * Updated version to 1.2.1.
177
178 modified: ChangeLog.txt
179 modified: linden/indra/llcommon/llversionviewer.h
180 modified: linden/indra/newview/English.lproj/InfoPlist.strings
181 modified: linden/indra/newview/Info-Imprudence.plist
182 modified: linden/indra/newview/res/viewerRes.rc
183
184
185 * Updated windows openal libs to openal-soft 1.10.622.
186
187 modified: linden/install.xml
188
189
1902009-11-25 Jacek Antonelli <jacek.antonelli@gmail.com>
191
192 * Fixed Linux's gstreamer, gstreamer-plugins, and liboil.
193 Compiled with the correct version of glibc.
194
195 modified: linden/install.xml
196
197
1982009-11-21 Jacek Antonelli <jacek.antonelli@gmail.com>
199
200 * libxml2.so.2 was missing from Linux viewer manifest.
201
202 modified: linden/indra/newview/viewer_manifest.py
203
204
205=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
170=- 1.2.0 -= 206=- 1.2.0 -=
171=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 207=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
172 208
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 50e3bb2..263899c 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -4,6 +4,31 @@
4 4
5 5
6 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 6 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
7 =- 1.2.1 -=
8 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
9
10 Imprudence 1.2.1 is a small bugfix release, which updates and fixes
11 some libraries that are distributed with Imprudence.
12
13 Please see the Imprudence 1.2.0 Release Notes for information about
14 the changes in Imprudence 1.2.
15
16
17 CHANGES
18
19 * Updated OpenAL on Windows to fix error messages flooding the
20 logs.
21
22 * Recompiled GStreamer, GStreamer plugins, and liboil on Linux,
23 to use the correct version of glibc.
24
25 * libxml2 is now distributed with Imprudence on Linux. It was
26 accidently left out of past releases.
27
28
29
30
31 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
7 =- 1.2.0 -= 32 =- 1.2.0 -=
8 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 33 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
9 34
diff --git a/linden/indra/llcommon/llversionviewer.h b/linden/indra/llcommon/llversionviewer.h
index 2435e4d..18a3182 100644
--- a/linden/indra/llcommon/llversionviewer.h
+++ b/linden/indra/llcommon/llversionviewer.h
@@ -45,7 +45,7 @@ const char * const IMP_VIEWER_NAME = "Imprudence";
45 45
46const S32 IMP_VERSION_MAJOR = 1; 46const S32 IMP_VERSION_MAJOR = 1;
47const S32 IMP_VERSION_MINOR = 2; 47const S32 IMP_VERSION_MINOR = 2;
48const S32 IMP_VERSION_PATCH = 0; 48const S32 IMP_VERSION_PATCH = 1;
49const char * const IMP_VERSION_TEST = ""; 49const char * const IMP_VERSION_TEST = "";
50 50
51#endif 51#endif
diff --git a/linden/indra/newview/English.lproj/InfoPlist.strings b/linden/indra/newview/English.lproj/InfoPlist.strings
index 2657d6f..3b90609 100644
--- a/linden/indra/newview/English.lproj/InfoPlist.strings
+++ b/linden/indra/newview/English.lproj/InfoPlist.strings
@@ -1,5 +1,5 @@
1/* Localized versions of Info.plist keys */ 1/* Localized versions of Info.plist keys */
2 2
3CFBundleName = "Imprudence"; 3CFBundleName = "Imprudence";
4CFBundleShortVersionString = "Imprudence version 1.2.0"; 4CFBundleShortVersionString = "Imprudence version 1.2.1";
5CFBundleGetInfoString = "Imprudence version 1.2.0"; 5CFBundleGetInfoString = "Imprudence version 1.2.1";
diff --git a/linden/indra/newview/Info-Imprudence.plist b/linden/indra/newview/Info-Imprudence.plist
index 42164c6..affdb57 100644
--- a/linden/indra/newview/Info-Imprudence.plist
+++ b/linden/indra/newview/Info-Imprudence.plist
@@ -32,7 +32,7 @@
32 </dict> 32 </dict>
33 </array> 33 </array>
34 <key>CFBundleVersion</key> 34 <key>CFBundleVersion</key>
35 <string>1.2.0</string> 35 <string>1.2.1</string>
36 <key>CSResourcesFileMapped</key> 36 <key>CSResourcesFileMapped</key>
37 <true/> 37 <true/>
38</dict> 38</dict>
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index 32b553b..39df657 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -824,6 +824,7 @@ class Linux_i686Manifest(LinuxManifest):
824 self.path("libSDL-1.2.so.0") 824 self.path("libSDL-1.2.so.0")
825 self.path("libELFIO.so") 825 self.path("libELFIO.so")
826 self.path("libopenjpeg.so.1.3.0", "libopenjpeg.so.1.3") 826 self.path("libopenjpeg.so.1.3.0", "libopenjpeg.so.1.3")
827 self.path("libxml2.so.2")
827 self.path("libz.so.1") 828 self.path("libz.so.1")
828 829
829 # OpenAL 830 # OpenAL
diff --git a/linden/install.xml b/linden/install.xml
index 8a59096..b5fc1e0 100644
--- a/linden/install.xml
+++ b/linden/install.xml
@@ -517,9 +517,9 @@
517 <key>linux</key> 517 <key>linux</key>
518 <map> 518 <map>
519 <key>md5sum</key> 519 <key>md5sum</key>
520 <string>605ecd92affb57ed3c70f7564b8bc6b5</string> 520 <string>2cd3f6499f8444f1d119d097e4047252</string>
521 <key>url</key> 521 <key>url</key>
522 <uri>http://imprudenceviewer.org/download/libs/gstreamer-0.10.24-linux-20091115.tar.bz2</uri> 522 <uri>http://imprudenceviewer.org/download/libs/gstreamer-0.10.24-linux-20091125.tar.bz2</uri>
523 </map> 523 </map>
524 <key>linux64</key> 524 <key>linux64</key>
525 <map> 525 <map>
@@ -553,9 +553,9 @@
553 <key>linux</key> 553 <key>linux</key>
554 <map> 554 <map>
555 <key>md5sum</key> 555 <key>md5sum</key>
556 <string>627aef3c307aed6d2c013bdfa11bb0af</string> 556 <string>62b96bb2721798958743d92a403d122a</string>
557 <key>url</key> 557 <key>url</key>
558 <uri>http://imprudenceviewer.org/download/libs/gstreamer-plugins-linux-20091115.tar.bz2</uri> 558 <uri>http://imprudenceviewer.org/download/libs/gstreamer-plugins-linux-20091125.tar.bz2</uri>
559 </map> 559 </map>
560 <key>windows</key> 560 <key>windows</key>
561 <map> 561 <map>
@@ -748,9 +748,9 @@ Portions copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura
748 <key>linux</key> 748 <key>linux</key>
749 <map> 749 <map>
750 <key>md5sum</key> 750 <key>md5sum</key>
751 <string>5ab0f986317b1a5c4f1682ad1972c318</string> 751 <string>85219034b4e4c17e792f8bb54a1973f7</string>
752 <key>url</key> 752 <key>url</key>
753 <uri>http://imprudenceviewer.org/download/libs/liboil-0.3.16-linux-20091118.tar.bz2</uri> 753 <uri>http://imprudenceviewer.org/download/libs/liboil-0.3.16-linux-20091125.tar.bz2</uri>
754 </map> 754 </map>
755 </map> 755 </map>
756 </map> 756 </map>
@@ -1067,9 +1067,9 @@ Copyright (C) 2004-2005 Vladimir Berezniker @ http://public.xdi.org/=vmpn
1067 <key>windows</key> 1067 <key>windows</key>
1068 <map> 1068 <map>
1069 <key>md5sum</key> 1069 <key>md5sum</key>
1070 <string>7c33758dc0a047c244de03133dd76c2a</string> 1070 <string>3dc9b085b2a1b23501396ef9a87a393e</string>
1071 <key>url</key> 1071 <key>url</key>
1072 <uri>http://imprudence.s3.amazonaws.com/extras/openal-soft-1.6.372-windows-01262009.tar.bz2</uri> 1072 <uri>http://imprudenceviewer.org/download/libs/openal-soft-1.10.622-windows-20091124.tar.bz2</uri>
1073 </map> 1073 </map>
1074 </map> 1074 </map>
1075 </map> 1075 </map>