[Xfce4-commits] r26000 - in xarchiver/trunk: . doc doc/images src

Giuseppe Torelli colossus at xfce.org
Wed Aug 22 14:40:58 CEST 2007


Author: colossus
Date: 2007-08-22 12:40:58 +0000 (Wed, 22 Aug 2007)
New Revision: 26000

Removed:
   xarchiver/trunk/doc/images/iso_properties.png
Modified:
   xarchiver/trunk/ChangeLog
   xarchiver/trunk/doc/xarchiver.docbook
   xarchiver/trunk/src/rpm.c
   xarchiver/trunk/src/window.c
Log:
Updated Changelog.
Updated documentation to reflect the unsupported iso images.


Modified: xarchiver/trunk/ChangeLog
===================================================================
--- xarchiver/trunk/ChangeLog	2007-08-22 10:48:02 UTC (rev 25999)
+++ xarchiver/trunk/ChangeLog	2007-08-22 12:40:58 UTC (rev 26000)
@@ -1,14 +1,15 @@
 Xarchiver changelog:
 
 xx/01/07 - 0.5:
-		- Implemented archive navigation.
+		- Implemented archive navigation within directories.
+		- Each archive's entry has now its own mime icon.
 		- Added a preferences dialog to set Xarchiver's options.
 		- The cmd-line output window now displays each archiver's output.
 		- The cmd-line output window has a close button and a better layout.
 		- Tabs are now reorderable.
 		- Better menu layout.
-		- Fixed bugs #2614, #2616, #2620, #2626, #2799.
-		- Fixed valgrind's message 'Invalid read of size 4'.
+		- Fixed bugs #2045,#2614, #2616, #2620, #2626, #2627, #2799.
+		- Fixed valgrind's messages 'Invalid read of size 4'.
 
 27/11/06 - 0.4.6:
 		- Fixed code in support.c to load the images when installing the software.

Deleted: xarchiver/trunk/doc/images/iso_properties.png

Modified: xarchiver/trunk/doc/xarchiver.docbook
===================================================================
--- xarchiver/trunk/doc/xarchiver.docbook	2007-08-22 10:48:02 UTC (rev 25999)
+++ xarchiver/trunk/doc/xarchiver.docbook	2007-08-22 12:40:58 UTC (rev 26000)
@@ -50,16 +50,13 @@
 					<listitem><para>The most used archiver cmd-line options are supported in the Add and Extract dialog</para></listitem>
 					<listitem><para>Archives are detected by their magic header and not by the extension except for .tar.bz2 and .tar.gz</para></listitem>
 					<listitem><para>Drag and drop from and to Xarchiver window is supported with XDS protocol</para></listitem>
-					<listitem><para>All archive relevant content and ISO info are displayed</para></listitem>
 					<listitem><para>ZIP and ARJ archive comment are supported. RAR comment is not yet supported because it's compressed inside the archive itself</para></listitem>
 					<listitem><para>Tabs Firefox style support</para></listitem>
 					<listitem><para>Ability to convert the archive to self-extracting for those archive types which support it</para></listitem>
 					<listitem><para>Smart detection of arj, zip and rar password encrypted archives</para></listitem>
 					<listitem><para>All the the output of the cmd-line archiver is displayed in the Xarchiver window</para></listitem>
 					<listitem><para>All common formats are supported: arj, bzip2, lha, gzip, 7z, rar, tar, tar.bz2, tar.gz, zip, DEB and RPM (only open,view and extract)</para></listitem>
-					<listitem><para>ISO images are supported without isodump or isoinfo executables (only open,view and extract)</para></listitem>
 					<listitem><para>Support of RPM files without RPM executable. This is useful on not RPM-based distributions like Slackware and Arch Linux</para></listitem>
-					<listitem><para>Useful info about the ISO image are displayed</para></listitem>
 					<listitem><para>Zip, rar, arj and 7z password encrypted archives are fully supported (7z automatic password detection is not supported)</para></listitem>
 				</itemizedlist>
 			</para>
@@ -335,18 +332,6 @@
 							If the current archive contains a comment this menu entry opens a window showing it.
 						</para>
 				</section>
-				<section id="iso_info">
-					<title>Show ISO info</title>
-						<para>
-							Opens an ISO properties dialog with useful info about the ISO image. This option is obviously disabled when no ISO image is loaded.
-						</para>
-						<para>
-							<figure>
-								<title>ISO properties dialog</title>
-									<graphic fileref="images/iso_properties.png"></graphic>
-							</figure>
-						</para>
-				</section>
 				<section id="select">
 					<title>Select all</title>
 						<para>

Modified: xarchiver/trunk/src/rpm.c
===================================================================
--- xarchiver/trunk/src/rpm.c	2007-08-22 10:48:02 UTC (rev 25999)
+++ xarchiver/trunk/src/rpm.c	2007-08-22 12:40:58 UTC (rev 26000)
@@ -105,7 +105,7 @@
 		return;
 
 	archive->tmp = g_strdup(tmp_dir);
-	gzip_tmp = g_strconcat (tmp_dir,"/file_gz_bz",NULL);
+	gzip_tmp = g_strconcat (tmp_dir,"/file.gz_bz",NULL);
 	ibs = g_strdup_printf ( "%u" , offset );
 
 	//Now I run dd to have the bzip2 / gzip compressed cpio archive in /tmp

Modified: xarchiver/trunk/src/window.c
===================================================================
--- xarchiver/trunk/src/window.c	2007-08-22 10:48:02 UTC (rev 25999)
+++ xarchiver/trunk/src/window.c	2007-08-22 12:40:58 UTC (rev 26000)
@@ -485,7 +485,7 @@
 	gint i;
 	gint idx;
 
-	if ( GTK_WIDGET_VISIBLE (viewport2 ) )
+	if (GTK_WIDGET_VISIBLE (viewport2))
 	{
 		Update_StatusBar ( _("Please hit the Stop button first!"));
 		return;
@@ -495,7 +495,7 @@
 
 	for (i = 0; i < gtk_notebook_get_n_pages(notebook) ; i++)
 	{
-		idx = xa_find_archive_index ( i );
+		idx = xa_find_archive_index (i);
 		if (archive[idx] != NULL)
 		{
 			xa_clean_archive_structure (archive[idx]);



More information about the Xfce4-commits mailing list