file-roller r2398 - in trunk: . src



Author: paobac
Date: Mon Aug  4 18:59:43 2008
New Revision: 2398
URL: http://svn.gnome.org/viewvc/file-roller?rev=2398&view=rev

Log:
2008-08-04  Paolo Bacchilega  <paobac svn gnome org>

	[ File Roller 2.23.5 released ]

	* NEWS: updated for 2.23.5

2008-08-04  Paolo Bacchilega  <paobac svn gnome org>

	* src/file-utils.c: return TRUE if path is NULL


Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/src/file-utils.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Mon Aug  4 18:59:43 2008
@@ -1,9 +1,46 @@
 version 2.23.5
 --------------
 
-        New features and user visible changes:
-        
-        * Updated the user's manual. 
+	New features and user visible changes:
+
+	* Added a help button to the window used to create archives from the
+	  file manager menu.
+	* Unified the "new" and "save as" dialogs. Allow to specify other
+	  options in these dialogs, such as whether to encrypt the header and
+	  whether to split the archive in volumes.
+	* User's manual: now describes the current file-roller version.
+
+	Bugfixes:
+
+	* #545188: Has incorrect start text for 7zip version 4.43
+	* #545168: no longer possible to open a multi-volume rar from any
+	  part
+	* #545161: file-roller crashed with SIGSEGV in strlen() when
+	  extracting tarball.
+	* #544613: file-roller crashed with SIGSEGV in remove_directory()
+	* #544296: desktop entry does not validate. Patch by GÃtz Waschk.
+	* #544184: extra space in the mimetype lists. Patch by Sebastien
+	  Bacher.
+	* #544182: configure.ac should use AC_PROG_CC. Patch by Sebastien
+	  Bacher.
+	* Allow to create multi-volume archives from the main window.
+
+	Updated application translations:
+
+	* Arabic (Djihed Afifi)
+	* Dutch (Wouter Bolsterlee)
+	* Norwegian BokmÃl (Kjartan Maraas)
+	* Macedonian (Arangel Angov)
+	* Occitan (Yannig Marchegay (Kokoyaya))
+	* Galego (Ignacio Casal Quinteiro)
+	* Brazilian Portuguese (FabrÃcio Godoy)
+	* EspaÃol (Jorge GonzÃlez)
+	* Czech (Adrian GuniÅ)
+	* Estonian (Ivar Smolin)
+
+	Updated manual translations:
+
+	* Swedish (Daniel Nylander)
 
 version 2.23.4
 --------------

Modified: trunk/src/file-utils.c
==============================================================================
--- trunk/src/file-utils.c	(original)
+++ trunk/src/file-utils.c	Mon Aug  4 18:59:43 2008
@@ -875,6 +875,9 @@
 	char     *uri;
 	gboolean  result;
 
+	if (path == NULL)
+		return TRUE;
+	
 	uri = g_filename_to_uri (path, NULL, NULL);
 	result = remove_directory (uri);
 	g_free (uri);



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