[file-roller] updated for version 2.29.3



commit e2ec7628cba6de6ca6b09fe625d85bb44c047831
Author: Paolo Bacchilega <paobac src gnome org>
Date:   Mon Dec 21 23:17:33 2009 +0100

    updated for version 2.29.3

 NEWS                        |   20 ++++++++++++++++++++
 configure.ac                |    2 +-
 src/dlg-package-installer.c |    4 +---
 3 files changed, 22 insertions(+), 4 deletions(-)
---
diff --git a/NEWS b/NEWS
index 7c70372..055c6b1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+version 2.29.3
+--------------
+
+	New features and user visible changes
+
+	* Allow to specify different package names using a configuration
+	  file (#603757)
+	* Use the zip format to create cbz files
+	* Use AES128 as encryption type when creating zip files with 7zip
+	* Fixed wrong use of gdk_property_get (#604535)
+
+        New or updated application translations:
+
+        * Español (Jorge González)
+        * Estonian (Ivar Smolin)
+        * Hebrew (Yaron Shahrabani)
+        * Norwegian Bokmål (Kjartan Maraas)
+        * Romanian (Adi Roiban)
+        * Slovenian Translation (Matej UrbanÄ?iÄ?)
+
 version 2.29.2
 --------------
 
diff --git a/configure.ac b/configure.ac
index 9f48de0..15dcefc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.61)
 
-AC_INIT(file-roller, 2.29.2, [http://bugzilla.gnome.org/enter_bug.cgi?product=file-roller])
+AC_INIT(file-roller, 2.29.3, [http://bugzilla.gnome.org/enter_bug.cgi?product=file-roller])
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 
 AC_CONFIG_SRCDIR([config.h.in])
diff --git a/src/dlg-package-installer.c b/src/dlg-package-installer.c
index 3f1bf00..e9a7471 100644
--- a/src/dlg-package-installer.c
+++ b/src/dlg-package-installer.c
@@ -119,10 +119,8 @@ get_packages_real_names (char **names)
 		real_name = g_key_file_get_string (key_file, "Package Matches", names[i], NULL);
 		if (real_name != NULL)
 			real_name = g_strstrip (real_name);
-		if ((real_name != NULL) && (strncmp (real_name, "", 1) != 0))
+		if ((real_name == NULL) || (strncmp (real_name, "", 1) == 0))
 			real_names[i] = g_strdup (real_name);
-		else
-			real_names[i] = g_strdup (names[i]);
 
 		g_free (real_name);
 	}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]