[Goodies-commits] r2032 - in thunar-archive-plugin/trunk: . icons/16x16 thunar-archive-plugin

Benedikt Meurer benny at xfce.org
Wed Sep 13 20:06:40 CEST 2006


Author: benny
Date: 2006-09-13 18:06:36 +0000 (Wed, 13 Sep 2006)
New Revision: 2032

Added:
   thunar-archive-plugin/trunk/icons/16x16/tap-create.png
   thunar-archive-plugin/trunk/icons/16x16/tap-extract-to.png
Removed:
   thunar-archive-plugin/trunk/icons/16x16/tap-add.png
Modified:
   thunar-archive-plugin/trunk/ChangeLog
   thunar-archive-plugin/trunk/Makefile.am
   thunar-archive-plugin/trunk/README
   thunar-archive-plugin/trunk/configure.in.in
   thunar-archive-plugin/trunk/icons/16x16/Makefile.am
   thunar-archive-plugin/trunk/icons/16x16/tap-extract.png
   thunar-archive-plugin/trunk/thunar-archive-plugin/tap-provider.c
Log:
2006-09-13	Benedikt Meurer <benny at xfce.org>

	* README: Add note about update-desktop-database.
	* configure.in.in, Makefile.am: Place automake options into
	  configure.in.in instead of Makefile.am.
	* icons/16x16/tap-add.png, icons/16x16/tap-create.png,
	  icons/16x16/Makefile.am, thunar-archive-plugin/tap-provider.c:
	  Rename tap-add to tap-create.
	* icons/16x16/, thunar-archive-plugin/tap-provider.c: Use tangoified
	  icons and add a different icon for the extract-to action.




Modified: thunar-archive-plugin/trunk/ChangeLog
===================================================================
--- thunar-archive-plugin/trunk/ChangeLog	2006-09-13 17:57:06 UTC (rev 2031)
+++ thunar-archive-plugin/trunk/ChangeLog	2006-09-13 18:06:36 UTC (rev 2032)
@@ -1,3 +1,14 @@
+2006-09-13	Benedikt Meurer <benny at xfce.org>
+
+	* README: Add note about update-desktop-database.
+	* configure.in.in, Makefile.am: Place automake options into
+	  configure.in.in instead of Makefile.am.
+	* icons/16x16/tap-add.png, icons/16x16/tap-create.png,
+	  icons/16x16/Makefile.am, thunar-archive-plugin/tap-provider.c:
+	  Rename tap-add to tap-create.
+	* icons/16x16/, thunar-archive-plugin/tap-provider.c: Use tangoified
+	  icons and add a different icon for the extract-to action.
+
 2006-07-31	Benedikt Meurer <benny at xfce.org>
 
 	* thunar-archive-plugin/tap-provider.c(tap_provider_get_file_actions):

Modified: thunar-archive-plugin/trunk/Makefile.am
===================================================================
--- thunar-archive-plugin/trunk/Makefile.am	2006-09-13 17:57:06 UTC (rev 2031)
+++ thunar-archive-plugin/trunk/Makefile.am	2006-09-13 18:06:36 UTC (rev 2032)
@@ -6,10 +6,6 @@
 	scripts								\
 	thunar-archive-plugin
 
-AUTOMAKE_OPTIONS =							\
-	1.8								\
-	dist-bzip2
-
 distclean-local:
 	rm -rf *.spec *.cache *~
 

Modified: thunar-archive-plugin/trunk/README
===================================================================
--- thunar-archive-plugin/trunk/README	2006-09-13 17:57:06 UTC (rev 2031)
+++ thunar-archive-plugin/trunk/README	2006-09-13 18:06:36 UTC (rev 2032)
@@ -37,7 +37,18 @@
 See the scripts/ directory for examples of how to create said .tap files. The
 template.tap file should provide a good starting point.
 
+Note that the thunar-archive-plugin takes the applications from the desktop
+database, so after installing new archive managers in $prefix (i.e. /usr or
+/usr/local), make sure to run
 
+ update-desktop-database $prefix/share/applications
+
+Most modern packagement systems will do this for you automatically, but if
+you are installing archive managers manually, you may need to run the above
+command first, otherwise you will get an error message telling you that no
+support archive managers were found on your system.
+
+
 Installation
 ============
 

Modified: thunar-archive-plugin/trunk/configure.in.in
===================================================================
--- thunar-archive-plugin/trunk/configure.in.in	2006-09-13 17:57:06 UTC (rev 2031)
+++ thunar-archive-plugin/trunk/configure.in.in	2006-09-13 18:06:36 UTC (rev 2032)
@@ -36,7 +36,7 @@
 dnl ***************************
 dnl *** Initialize automake ***
 dnl ***************************
-AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
+AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
 AM_CONFIG_HEADER([config.h])
 AM_MAINTAINER_MODE()
 

Modified: thunar-archive-plugin/trunk/icons/16x16/Makefile.am
===================================================================
--- thunar-archive-plugin/trunk/icons/16x16/Makefile.am	2006-09-13 17:57:06 UTC (rev 2031)
+++ thunar-archive-plugin/trunk/icons/16x16/Makefile.am	2006-09-13 18:06:36 UTC (rev 2032)
@@ -2,8 +2,9 @@
 
 appsdir = $(datadir)/icons/hicolor/16x16/apps
 apps_DATA =								\
-	tap-add.png							\
-	tap-extract.png
+	tap-create.png							\
+	tap-extract.png							\
+	tap-extract-to.png
 
 EXTRA_DIST =								\
 	$(apps_DATA)

Deleted: thunar-archive-plugin/trunk/icons/16x16/tap-add.png

Copied: thunar-archive-plugin/trunk/icons/16x16/tap-create.png (from rev 2030, thunar-archive-plugin/trunk/icons/16x16/tap-add.png)
===================================================================
(Binary files differ)

Added: thunar-archive-plugin/trunk/icons/16x16/tap-extract-to.png
===================================================================
(Binary files differ)


Property changes on: thunar-archive-plugin/trunk/icons/16x16/tap-extract-to.png
___________________________________________________________________
Name: svn:mime-type
   + image/png

Modified: thunar-archive-plugin/trunk/icons/16x16/tap-extract.png
===================================================================
(Binary files differ)

Modified: thunar-archive-plugin/trunk/thunar-archive-plugin/tap-provider.c
===================================================================
--- thunar-archive-plugin/trunk/thunar-archive-plugin/tap-provider.c	2006-09-13 17:57:06 UTC (rev 2031)
+++ thunar-archive-plugin/trunk/thunar-archive-plugin/tap-provider.c	2006-09-13 18:06:36 UTC (rev 2032)
@@ -163,12 +163,12 @@
   tap_provider->icon_factory = gtk_icon_factory_new ();
   gtk_icon_factory_add_default (tap_provider->icon_factory);
 
-  /* add the "tap-add" stock icon */
+  /* add the "tap-create" stock icon */
   icon_set = gtk_icon_set_new ();
   icon_source = gtk_icon_source_new ();
-  gtk_icon_source_set_icon_name (icon_source, "tap-add");
+  gtk_icon_source_set_icon_name (icon_source, "tap-create");
   gtk_icon_set_add_source (icon_set, icon_source);
-  gtk_icon_factory_add (tap_provider->icon_factory, "tap-add", icon_set);
+  gtk_icon_factory_add (tap_provider->icon_factory, "tap-create", icon_set);
   gtk_icon_source_free (icon_source);
   gtk_icon_set_unref (icon_set);
 
@@ -180,6 +180,15 @@
   gtk_icon_factory_add (tap_provider->icon_factory, "tap-extract", icon_set);
   gtk_icon_source_free (icon_source);
   gtk_icon_set_unref (icon_set);
+
+  /* add the "tap-extract-to" stock icon */
+  icon_set = gtk_icon_set_new ();
+  icon_source = gtk_icon_source_new ();
+  gtk_icon_source_set_icon_name (icon_source, "tap-extract-to");
+  gtk_icon_set_add_source (icon_set, icon_source);
+  gtk_icon_factory_add (tap_provider->icon_factory, "tap-extract-to", icon_set);
+  gtk_icon_source_free (icon_source);
+  gtk_icon_set_unref (icon_set);
 #endif /* !GTK_CHECK_VERSION(2,9,0) */
 
   /* initialize the child watch support */
@@ -456,9 +465,9 @@
                              "label", _("_Extract To..."),
                              "name", "Tap::extract-to",
 #if !GTK_CHECK_VERSION(2,9,0)
-                             "stock-id", "tap-extract",
+                             "stock-id", "tap-extract-to",
 #else
-                             "icon-name", "tap-extract",
+                             "icon-name", "tap-extract-to",
 #endif
                              "tooltip", dngettext (GETTEXT_PACKAGE,
                                                    "Extract the selected archive",
@@ -484,9 +493,9 @@
                              "label", _("Cr_eate Archive..."),
                              "name", "Tap::create-archive",
 #if !GTK_CHECK_VERSION(2,9,0)
-                             "stock-id", "tap-add",
+                             "stock-id", "tap-create",
 #else
-                             "icon-name", "tap-add",
+                             "icon-name", "tap-create",
 #endif
                              "tooltip", dngettext (GETTEXT_PACKAGE,
                                                    "Create an archive with the selected object",




More information about the Goodies-commits mailing list