diff -ruN thunar-archive-plugin-0.3.1.orig/configure thunar-archive-plugin-0.3.1/configure --- thunar-archive-plugin-0.3.1.orig/configure 2017-10-31 00:00:00.000000000 +0100 +++ thunar-archive-plugin-0.3.1/configure 2017-10-31 00:00:00.000000000 +0100 @@ -13880,22 +13880,22 @@ - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for thunarx-2 >= 0.4.0" >&5 -$as_echo_n "checking for thunarx-2 >= 0.4.0... " >&6; } - if $PKG_CONFIG "--atleast-version=0.4.0" "thunarx-2" >/dev/null 2>&1; then - THUNARX_VERSION=`$PKG_CONFIG --modversion "thunarx-2"` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for thunarx-3 >= 0.4.0" >&5 +$as_echo_n "checking for thunarx-3 >= 0.4.0... " >&6; } + if $PKG_CONFIG "--atleast-version=0.4.0" "thunarx-3" >/dev/null 2>&1; then + THUNARX_VERSION=`$PKG_CONFIG --modversion "thunarx-3"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $THUNARX_VERSION" >&5 $as_echo "$THUNARX_VERSION" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking THUNARX_CFLAGS" >&5 $as_echo_n "checking THUNARX_CFLAGS... " >&6; } - THUNARX_CFLAGS=`$PKG_CONFIG --cflags "thunarx-2"` + THUNARX_CFLAGS=`$PKG_CONFIG --cflags "thunarx-3"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $THUNARX_CFLAGS" >&5 $as_echo "$THUNARX_CFLAGS" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking THUNARX_LIBS" >&5 $as_echo_n "checking THUNARX_LIBS... " >&6; } - THUNARX_LIBS=`$PKG_CONFIG --libs "thunarx-2"` + THUNARX_LIBS=`$PKG_CONFIG --libs "thunarx-3"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $THUNARX_LIBS" >&5 $as_echo "$THUNARX_LIBS" >&6; } @@ -13907,15 +13907,15 @@ - elif $PKG_CONFIG --exists "thunarx-2" >/dev/null 2>&1; then - xdt_cv_version=`$PKG_CONFIG --modversion "thunarx-2"` + elif $PKG_CONFIG --exists "thunarx-3" >/dev/null 2>&1; then + xdt_cv_version=`$PKG_CONFIG --modversion "thunarx-3"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: found, but $xdt_cv_version" >&5 $as_echo "found, but $xdt_cv_version" >&6; } - echo "*** The required package thunarx-2 was found on your system," + echo "*** The required package thunarx-3 was found on your system," echo "*** but the installed version ($xdt_cv_version) is too old." - echo "*** Please upgrade thunarx-2 to atleast version 0.4.0, or adjust" + echo "*** Please upgrade thunarx-3 to atleast version 0.4.0, or adjust" echo "*** the PKG_CONFIG_PATH environment variable if you installed" echo "*** the new version of the package in a nonstandard prefix so" echo "*** pkg-config is able to find it." @@ -13926,8 +13926,8 @@ $as_echo "not found" >&6; } - echo "*** The required package thunarx-2 was not found on your system." - echo "*** Please install thunarx-2 (atleast version 0.4.0) or adjust" + echo "*** The required package thunarx-3 was not found on your system." + echo "*** Please install thunarx-3 (atleast version 0.4.0) or adjust" echo "*** the PKG_CONFIG_PATH environment variable if you" echo "*** installed the package in a nonstandard prefix so that" echo "*** pkg-config is able to find it." diff -ruN thunar-archive-plugin-0.3.1.orig/configure.ac thunar-archive-plugin-0.3.1/configure.ac --- thunar-archive-plugin-0.3.1.orig/configure.ac 2017-10-31 00:00:00.000000000 +0100 +++ thunar-archive-plugin-0.3.1/configure.ac 2017-10-31 00:00:00.000000000 +0100 @@ -84,7 +84,7 @@ dnl *********************************** dnl *** Check for required packages *** dnl *********************************** -XDT_CHECK_PACKAGE([THUNARX], [thunarx-2], [0.4.0]) +XDT_CHECK_PACKAGE([THUNARX], [thunarx-3], [0.4.0]) XDT_CHECK_PACKAGE([EXO], [exo-1], [0.5.0]) XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.6.0]) diff -ruN thunar-archive-plugin-0.3.1.orig/thunar-archive-plugin/tap-backend.c thunar-archive-plugin-0.3.1/thunar-archive-plugin/tap-backend.c --- thunar-archive-plugin-0.3.1.orig/thunar-archive-plugin/tap-backend.c 2017-10-31 00:00:00.000000000 +0100 +++ thunar-archive-plugin-0.3.1/thunar-archive-plugin/tap-backend.c 2017-10-31 00:00:00.000000000 +0100 @@ -59,7 +59,7 @@ { GAppInfo *mime_application = NULL; GIcon *icon; - GtkTooltips *tooltips; + GtkTooltip *tooltips; GtkWidget *button; GtkWidget *dialog; GtkWidget *image; @@ -81,7 +81,6 @@ dialog = gtk_dialog_new_with_buttons (_("Select an archive manager"), GTK_WINDOW (parent), GTK_DIALOG_DESTROY_WITH_PARENT - | GTK_DIALOG_NO_SEPARATOR | GTK_DIALOG_MODAL, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OK, GTK_RESPONSE_OK, @@ -93,7 +92,7 @@ gtk_table_set_col_spacings (GTK_TABLE (table), 12); gtk_table_set_row_spacings (GTK_TABLE (table), 6); gtk_container_set_border_width (GTK_CONTAINER (table), 6); - gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), table, TRUE, TRUE, 0); + gtk_box_pack_start (gtk_dialog_get_content_area (GTK_DIALOG (dialog)), table, TRUE, TRUE, 0); gtk_widget_show (table); /* add the header image */