[gnome-packagekit] Release version 3.7.5
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-packagekit] Release version 3.7.5
- Date: Wed, 6 Feb 2013 09:39:02 +0000 (UTC)
commit 22df9bec8f39d975a35e73c3021609d89ad038fe
Author: Richard Hughes <richard hughsie com>
Date: Wed Feb 6 09:38:34 2013 +0000
Release version 3.7.5
NEWS | 44 ++++++++++++++++++++++++++++++++++++++++++++
RELEASE | 10 +++++-----
configure.ac | 2 +-
src/gpk-dbus-task.c | 4 ++--
4 files changed, 52 insertions(+), 8 deletions(-)
---
diff --git a/NEWS b/NEWS
index 4fa30a5..60cf226 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,47 @@
+Version 3.7.5
+~~~~~~~~~~~~~
+Released: 2013-02-06
+
+* Translations
+ - Added Aragonese translation (Jorge PÃrez PÃrez)
+ - Added Assamese translation (Nilamdyuti Goswami)
+ - Added uk translation (Daniel Korostil)
+ - Updated Arabic translation (Mohammad Alhargan)
+ - Updated Basque language (Inaki Larranaga Murgoitio)
+ - Updated Bulgarian translation (Alexander Shopov)
+ - Updated Dutch translation (Hannie Dumoleyn)
+ - Updated Estonian translation (Mattias PÃldaru)
+ - Updated Galician translations (Fran DiÃguez)
+ - Updated Hebrew translation (Yaron Shahrabani)
+ - Updated Hungarian translation (BalÃzs Ãr)
+ - Updated Irish translation (SeÃn de BÃrca)
+ - Updated Italian translation (Gianvito Cavasoli)
+ - Updated Kannada Translations (Shankar Prasad)
+ - Updated Lithuanian translation (Aurimas Äernius)
+ - Updated Norwegian bokmÃl translation (Kjartan Maraas)
+ - Updated Polish translation (Piotr DrÄg)
+ - Updated Serbian translation (ÐÐÑÐÑÐÐÐ ÐÐÐÐÐÐÑ)
+ - Updated Slovak translation (Ivan MasÃr)
+ - Updated Slovenian translation (Matej UrbanÄiÄ)
+ - Updated Spanish translation (Daniel Mustieles)
+ - Updated Tamil translation (Dr.T.Vasudevan)
+ - Updated Thai translation (Akom Chotiphantawanon)
+ - Updated Traditional Chinese translation (Cheng-Chia Tseng)
+ - Updated Uyghur translation (Gheyret Kenji)
+
+* New Features:
+ - Add keywords for better discoverability (Jeremy Bicha)
+ - Support notification filtering (Matthias Clasen)
+
+* Bugfix:
+ - Be more careful when dealing with windows (Matthias Clasen)
+ - Don't call gpk_dbus_task_set_xid twice (Matthias Clasen)
+ - Don't crash if the window that invoked the task exits before the task starts up (Richard Hughes)
+ - Don't use the deprecated INCLUDES in Makefile.am (Richard Hughes)
+ - Fix a segfault when there is a distribution upgrade available (Richard Hughes)
+ - Use the correct titles for any encoder or decoder version (Richard Hughes)
+ - Use the UTF-8 'â' rather than '...' in UI code (Richard Hughes)
+
Version 3.6.0
~~~~~~~~~~~~~
Released: 2012-09-25
diff --git a/RELEASE b/RELEASE
index b499502..ff575d1 100644
--- a/RELEASE
+++ b/RELEASE
@@ -2,12 +2,12 @@ PackageKit Release Notes
1. Write NEWS entries for gnome-packagekit in the same format as usual.
-git shortlog GNOME_PACKAGEKIT_3_6_0.. | grep -i -v trivial | uniq | grep -v Merge > NEWS.new
+git shortlog GNOME_PACKAGEKIT_3_7_5.. | grep -i -v trivial | uniq | grep -v Merge > NEWS.new
--------------------------------------------------------------------------------
-Version 3.6.1
+Version 3.7.5
~~~~~~~~~~~~~
-Released: 2012-09-25
+Released: 2013-xx-xx
* Translations
@@ -18,8 +18,8 @@ Released: 2012-09-25
3. Commit changes in gnome-packagekit git:
-git commit -a -m "Release version 3.7.1"
-git tag -s GNOME_PACKAGEKIT_3_7_1 -m "==== Version 3.7.1 ===="
+git commit -a -m "Release version 3.7.5"
+git tag -s GNOME_PACKAGEKIT_3_7_5 -m "==== Version 3.7.5 ===="
<wait>
git push --tags
git push
diff --git a/configure.ac b/configure.ac
index 30e81fd..f72bab2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.65)
-AC_INIT([gnome-packagekit],[3.7.1])
+AC_INIT([gnome-packagekit],[3.7.5])
AC_CONFIG_SRCDIR(src)
AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz tar-ustar])
AC_CONFIG_HEADERS([config.h])
diff --git a/src/gpk-dbus-task.c b/src/gpk-dbus-task.c
index 8fa7ef5..95e258e 100644
--- a/src/gpk-dbus-task.c
+++ b/src/gpk-dbus-task.c
@@ -1522,9 +1522,9 @@ gpk_dbus_task_install_gstreamer_resources_confirm (GpkDbusTask *dtask, gchar **c
/* find out what type of request this is */
for (i=0; i<len; i++) {
parts = g_strsplit (codec_names[i], "|", 2);
- if (g_strstr_len (parts[1], "(decoder") != NULL)
+ if (g_strstr_len (parts[1], -1, "(decoder") != NULL)
is_decoder = TRUE;
- if (g_strstr_len (parts[1], "(encoder") != NULL)
+ if (g_strstr_len (parts[1], -1, "(encoder") != NULL)
is_encoder = TRUE;
g_strfreev (parts);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]