diff --git a/SOURCES/add-desktop-icons-rename.patch b/SOURCES/add-desktop-icons-rename.patch new file mode 100644 index 0000000..9ecfd91 --- /dev/null +++ b/SOURCES/add-desktop-icons-rename.patch @@ -0,0 +1,90 @@ +From bac4bd595c518983571b0fb41fcf5586f27544eb Mon Sep 17 00:00:00 2001 +From: Carlos Soriano +Date: Mon, 19 Nov 2018 08:55:22 +0000 +Subject: [PATCH] dbus: Implement rename file + +So desktop icons extensions can use it. + + +(cherry picked from commit 42c5ce657e2b24ddf19932e9e3284a045d60ff51) +--- + data/dbus-interfaces.xml | 4 ++++ + src/nautilus-dbus-manager.c | 33 +++++++++++++++++++++++++++++++++ + 2 files changed, 37 insertions(+) + +diff --git a/data/dbus-interfaces.xml b/data/dbus-interfaces.xml +index 298871bc4..1827f92ab 100644 +--- a/data/dbus-interfaces.xml ++++ b/data/dbus-interfaces.xml +@@ -39,6 +39,10 @@ + + + ++ ++ ++ ++ + + + +diff --git a/src/nautilus-dbus-manager.c b/src/nautilus-dbus-manager.c +index 3257c4bd4..43f27e10a 100644 +--- a/src/nautilus-dbus-manager.c ++++ b/src/nautilus-dbus-manager.c +@@ -27,6 +27,7 @@ + + #include "nautilus-file-operations.h" + #include "nautilus-file-undo-manager.h" ++#include "nautilus-file.h" + + #define DEBUG_FLAG NAUTILUS_DEBUG_DBUS + #include "nautilus-debug.h" +@@ -230,6 +231,34 @@ handle_trash_files (NautilusDBusFileOperations *object, + return TRUE; /* invocation was handled */ + } + ++static void ++rename_file_on_finished (NautilusFile *file, ++ GFile *result_location, ++ GError *error, ++ gpointer callback_data) ++{ ++ g_application_release (g_application_get_default ()); ++} ++ ++static gboolean ++handle_rename_file (NautilusDBusFileOperations *object, ++ GDBusMethodInvocation *invocation, ++ const gchar *uri, ++ const gchar *new_name) ++{ ++ NautilusFile *file = NULL; ++ ++ file = nautilus_file_get_by_uri (uri); ++ ++ g_application_hold (g_application_get_default ()); ++ nautilus_file_rename (file, new_name, ++ rename_file_on_finished, NULL); ++ ++ nautilus_dbus_file_operations_complete_rename_file (object, invocation); ++ ++ return TRUE; /* invocation was handled */ ++} ++ + + static void + undo_manager_changed (NautilusDBusManager *self) +@@ -266,6 +295,10 @@ nautilus_dbus_manager_init (NautilusDBusManager *self) + "handle-create-folder", + G_CALLBACK (handle_create_folder), + self); ++ g_signal_connect (self->file_operations, ++ "handle-rename-file", ++ G_CALLBACK (handle_rename_file), ++ self); + g_signal_connect (self->file_operations, + "handle-undo", + G_CALLBACK (handle_undo), +-- +2.18.1 + diff --git a/SOURCES/appdata-Use-Files-instead-of-Nautilus.patch b/SOURCES/appdata-Use-Files-instead-of-Nautilus.patch new file mode 100644 index 0000000..66d7284 --- /dev/null +++ b/SOURCES/appdata-Use-Files-instead-of-Nautilus.patch @@ -0,0 +1,19 @@ +diff --git a/data/org.gnome.Nautilus.appdata.xml.in.in b/data/org.gnome.Nautilus.appdata.xml.in.in +index 1e3986323..35e54cb14 100644 +--- a/data/org.gnome.Nautilus.appdata.xml.in.in ++++ b/data/org.gnome.Nautilus.appdata.xml.in.in +@@ -2,11 +2,11 @@ + @appid@.desktop + CC0-1.0 + GPL-2.0+ +- Nautilus ++ Files + Access and organize files + +

+- Nautilus, also known as Files, is the default file manager of the GNOME desktop. ++ Files, also known as Nautilus, is the default file manager of the GNOME desktop. + It provides a simple and integrated way of managing your files and browsing your file system. +

+

+ diff --git a/SOURCES/data-Fix-caption-capitalisation-in-appdata-file.patch b/SOURCES/data-Fix-caption-capitalisation-in-appdata-file.patch new file mode 100644 index 0000000..fdbd117 --- /dev/null +++ b/SOURCES/data-Fix-caption-capitalisation-in-appdata-file.patch @@ -0,0 +1,44 @@ +From 51b543cd5106a8b929b336bc6779eddd4d2ac780 Mon Sep 17 00:00:00 2001 +From: Philip Withnall +Date: Thu, 11 Apr 2019 12:36:21 +0100 +Subject: [PATCH] data: Fix caption capitalisation in appdata file + +Make the capitalisation of the image captions match the translatable +titles of the dialogues in the images, so that translations can be +reused. + +Signed-off-by: Philip Withnall +--- + data/org.gnome.Nautilus.appdata.xml.in.in | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/data/org.gnome.Nautilus.appdata.xml.in.in b/data/org.gnome.Nautilus.appdata.xml.in.in +index cb20fa05f..cfc27e533 100644 +--- a/data/org.gnome.Nautilus.appdata.xml.in.in ++++ b/data/org.gnome.Nautilus.appdata.xml.in.in +@@ -28,11 +28,11 @@ + + + https://static.gnome.org/appdata/nautilus/nautilus-201901141.png +- Tile view ++ Tile View + + + https://static.gnome.org/appdata/nautilus/nautilus-201901142.png +- List view ++ List View + + + https://static.gnome.org/appdata/nautilus/nautilus-201901143.png +@@ -40,7 +40,7 @@ + + + https://static.gnome.org/appdata/nautilus/nautilus-201901144.png +- Other locations ++ Other Locations + + + +-- +2.21.0 + diff --git a/SOURCES/docs-Add-nautilus-autorun-software-man-page.patch b/SOURCES/docs-Add-nautilus-autorun-software-man-page.patch new file mode 100644 index 0000000..a054821 --- /dev/null +++ b/SOURCES/docs-Add-nautilus-autorun-software-man-page.patch @@ -0,0 +1,61 @@ +From 6dd492663cbd3652ebc03d06898f74bacbf87683 Mon Sep 17 00:00:00 2001 +From: Ondrej Holy +Date: Wed, 3 Jul 2019 11:43:31 +0200 +Subject: [PATCH] docs: Add nautilus-autorun-software man page + +nautilus-autorun-software is the default "x-content/unix-software" +handler for GNOME desktop. So it is not just internal tool and thus +it should have a man page. Let's add a simple man page for it. + +It resolves the following downstream bug: +https://bugzilla.redhat.com/show_bug.cgi?id=1725766 +--- + docs/meson.build | 1 + + docs/nautilus-autorun-software.1 | 26 ++++++++++++++++++++++++++ + 2 files changed, 27 insertions(+) + create mode 100644 docs/nautilus-autorun-software.1 + +diff --git a/docs/meson.build b/docs/meson.build +index b039cb631..a54574f3c 100644 +--- a/docs/meson.build ++++ b/docs/meson.build +@@ -1,3 +1,4 @@ + install_man('nautilus.1') ++install_man('nautilus-autorun-software.1') + + subdir('reference') +diff --git a/docs/nautilus-autorun-software.1 b/docs/nautilus-autorun-software.1 +new file mode 100644 +index 000000000..9ecbd4adb +--- /dev/null ++++ b/docs/nautilus-autorun-software.1 +@@ -0,0 +1,26 @@ ++.TH nautilus-autorun-software 1 "3 July 2019" ++ ++.SH NAME ++Run Software \- helper tool ++ ++.SH SYNOPSIS ++.B nautilus-autorun-software ++.RI "" "mount-uri" ++.br ++ ++.SH DESCRIPTION ++.B nautilus-autorun-software ++is a helper tool for the GNOME desktop to start software from media with ++Autostart files. ++.br ++ ++It is the default "x-content/unix-software" handler for the GNOME desktop. ++.br ++ ++.SH SEE ALSO ++Autostart files are described at ++https://specifications.freedesktop.org/autostart-spec/autostart-spec-latest.html ++ ++.SH BUGS ++Bug reports can be found and filed at ++https://gitlab.gnome.org/GNOME/nautilus/issues +-- +2.21.0 + diff --git a/SOURCES/fix-criticals-when-connecting-to-remote-locations.patch b/SOURCES/fix-criticals-when-connecting-to-remote-locations.patch new file mode 100644 index 0000000..0f0f74f --- /dev/null +++ b/SOURCES/fix-criticals-when-connecting-to-remote-locations.patch @@ -0,0 +1,22 @@ +diff --git a/src/gtk/nautilusgtkplacesview.c b/src/gtk/nautilusgtkplacesview.c +index de0610e52..b72085ba9 100644 +--- a/src/gtk/nautilusgtkplacesview.c ++++ b/src/gtk/nautilusgtkplacesview.c +@@ -401,6 +401,9 @@ nautilus_gtk_places_view_destroy (GtkWidget *widget) + if (priv->network_monitor) + g_signal_handlers_disconnect_by_func (priv->network_monitor, update_places, widget); + ++ if (priv->server_list_monitor) ++ g_signal_handlers_disconnect_by_func (priv->server_list_monitor, server_file_changed_cb, widget); ++ + g_cancellable_cancel (priv->cancellable); + g_cancellable_cancel (priv->networks_fetching_cancellable); + +@@ -1405,6 +1407,7 @@ pulse_entry_cb (gpointer user_data) + { + gtk_entry_set_progress_pulse_step (GTK_ENTRY (priv->address_entry), 0.0); + gtk_entry_set_progress_fraction (GTK_ENTRY (priv->address_entry), 0.0); ++ priv->entry_pulse_timeout_id = 0; + + return G_SOURCE_REMOVE; + } diff --git a/SOURCES/man-remove-geometry-option.patch b/SOURCES/man-remove-geometry-option.patch new file mode 100644 index 0000000..0404c6b --- /dev/null +++ b/SOURCES/man-remove-geometry-option.patch @@ -0,0 +1,29 @@ +From 4190844d91f9d4f1bb2997d7769caa57dd5f9a4c Mon Sep 17 00:00:00 2001 +From: Carlos Soriano +Date: Fri, 7 Sep 2018 08:05:18 +0000 +Subject: [PATCH] man: Remove geometry option + +We removed that some time ago. +--- + docs/nautilus.1 | 5 ----- + 1 file changed, 5 deletions(-) + +diff --git a/docs/nautilus.1 b/docs/nautilus.1 +index 70304a1d2..a868c72cb 100644 +--- a/docs/nautilus.1 ++++ b/docs/nautilus.1 +@@ -37,11 +37,6 @@ Perform a quick set of self-check tests. + .B \-\-version + Show the version of the program. + +-.TP +-.BR \-g ", " \-\-geometry=\fIGEOMETRY\fR +-Create the initial window with the given geometry. \fBDeprecated\fR - the geometry +-is saved and loaded using GSettings. +- + .TP + .BR \-w ", " \-\-new-window + Always open a new window for browsing specified URIs. +-- +2.21.0 + diff --git a/SOURCES/org.gnome.Nautilus.appdata.xml.in.in-No-screenshots-.patch b/SOURCES/org.gnome.Nautilus.appdata.xml.in.in-No-screenshots-.patch new file mode 100644 index 0000000..c732924 --- /dev/null +++ b/SOURCES/org.gnome.Nautilus.appdata.xml.in.in-No-screenshots-.patch @@ -0,0 +1,54 @@ +From 2eed21b2dd3ec0cdd701f9c18e1e2582c69bdad8 Mon Sep 17 00:00:00 2001 +From: Timothy OBrien +Date: Mon, 14 Jan 2019 02:17:42 +1100 +Subject: [PATCH] org.gnome.Nautilus.appdata.xml.in.in: No screenshots in + appdata + +No screenshots were supplied by the appdata xml meaning that software install tools would not show them to the user. + +This commit proposes a set of screenshots hosted via the static-web project: https://gitlab.gnome.org/Infrastructure/static-web + +See static-web merge request https://gitlab.gnome.org/Infrastructure/static-web/merge_requests/2 for proposed screenshots. + +Fixes #556 +--- + data/org.gnome.Nautilus.appdata.xml.in.in | 19 +++++++++++++++++++ + 1 file changed, 19 insertions(+) + +diff --git a/data/org.gnome.Nautilus.appdata.xml.in.in b/data/org.gnome.Nautilus.appdata.xml.in.in +index 30648b3e6..cb20fa05f 100644 +--- a/data/org.gnome.Nautilus.appdata.xml.in.in ++++ b/data/org.gnome.Nautilus.appdata.xml.in.in +@@ -25,6 +25,24 @@ + Notifications + SearchProvider + ++ ++ ++ https://static.gnome.org/appdata/nautilus/nautilus-201901141.png ++ Tile view ++ ++ ++ https://static.gnome.org/appdata/nautilus/nautilus-201901142.png ++ List view ++ ++ ++ https://static.gnome.org/appdata/nautilus/nautilus-201901143.png ++ Search ++ ++ ++ https://static.gnome.org/appdata/nautilus/nautilus-201901144.png ++ Other locations ++ ++ + + System + +@@ -35,3 +53,4 @@ + https://wiki.gnome.org/action/show/Apps/Nautilus + nautilus + ++ +-- +2.21.0 + diff --git a/SOURCES/remove-nfs-support-strings.patch b/SOURCES/remove-nfs-support-strings.patch new file mode 100644 index 0000000..6eeda88 --- /dev/null +++ b/SOURCES/remove-nfs-support-strings.patch @@ -0,0 +1,900 @@ +From 93ecc7c079a438bb2baf34500fa77806a545910a Mon Sep 17 00:00:00 2001 +From: Carlos Soriano +Date: Tue, 23 Apr 2019 11:35:45 +0200 +Subject: [PATCH] Remove nfs support strings + +--- + src/gtk/nautilusgtkplacesview.ui | 701 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + 1 file changed, 388 insertions(+), 313 deletions(-) + +diff --git a/src/gtk/nautilusgtkplacesview.ui b/src/gtk/nautilusgtkplacesview.ui +index c366fde..601fce2 100644 +--- a/src/gtk/nautilusgtkplacesview.ui ++++ b/src/gtk/nautilusgtkplacesview.ui +@@ -1,4 +1,5 @@ + ++ + + + +@@ -11,265 +12,52 @@ + + + completion_store +- 1 +- 1 +- 0 +- +- +- address_entry +- +- +- 1 +- 18 +- vertical +- 6 +- +- +- 1 +- 1 +- Server Addresses +- +- +- +- +- +- +- +- +- 1 +- 1 +- Server addresses are made up of a protocol prefix and an address. Examples: +- 1 +- 40 +- 40 +- 0 +- +- +- 1 +- +- +- +- +- 1 +- 1 +- smb://gnome.org, ssh://192.168.0.1, ftp://[2001:db8::1] +- 1 +- 40 +- 40 +- 0 +- +- +- 2 +- +- +- +- +- 1 +- 12 +- 1 +- 6 +- 12 +- +- +- 1 +- 1 +- Available Protocols +- 0 +- +- +- +- +- +- 0 +- 0 +- +- +- +- +- 1 +- AppleTalk +- 0 +- +- +- 0 +- 1 +- +- +- +- +- 1 +- File Transfer Protocol +- 0 +- +- +- 0 +- 2 +- +- +- +- +- 1 +- Network File System +- 0 +- +- +- 0 +- 3 +- +- +- +- +- 1 +- Samba +- 0 +- +- +- 0 +- 4 +- +- +- +- +- 1 +- SSH File Transfer Protocol +- 0 +- +- +- 0 +- 5 +- +- +- +- +- 1 +- WebDAV +- 0 +- +- +- 0 +- 6 +- +- +- +- +- 1 +- Prefix +- 0 +- +- +- +- +- +- 1 +- 0 +- +- +- +- +- 1 +- afp:// +- 0 +- +- +- 1 +- 1 +- +- +- +- +- 1 +- ftp:// or ftps:// +- 0 +- +- +- 1 +- 2 +- +- +- +- +- 1 +- nfs:// +- 0 +- +- +- 1 +- 3 +- +- +- +- +- 1 +- smb:// +- 0 +- +- +- 1 +- 4 +- +- +- +- +- 1 +- sftp:// or ssh:// +- 0 +- +- +- 1 +- 5 +- +- +- +- +- 1 +- dav:// or davs:// +- 0 +- +- +- 1 +- 6 +- +- +- +- +- 3 +- +- +- +- ++ 1 ++ True ++ False + + ++ False + + +- 1 ++ True ++ False + + +- 1 +- 1 ++ True ++ False + center ++ True + vertical + 18 + + +- 1 +- 48 +- network-server-symbolic ++ True ++ False ++ 48 ++ network-server-symbolic + + ++ ++ False ++ True ++ 0 ++ + + + +- 1 ++ True ++ False + No recent servers found + + + ++ False ++ True + 1 + + +@@ -280,82 +68,98 @@ + + + +- 1 +- 12 ++ True ++ False ++ 12 + vertical + 12 + + +- 1 ++ True ++ False + Recent Servers + + + + ++ ++ False ++ True ++ 0 ++ + + + +- 1 +- 1 +- 1 +- in +- 250 +- 200 ++ True ++ True ++ True ++ in ++ 250 ++ 200 + + +- 1 +- none ++ True ++ False ++ none + + +- 1 +- 1 +- none ++ True ++ True ++ none + + + + + + + ++ False ++ True + 1 + + + + + list ++ 1 + + + + + + ++ ++ False ++ address_entry ++ ++ ++ True ++ False ++ 18 ++ vertical ++ 6 ++ ++ ++ True ++ False ++ True ++ Server Addresses ++ ++ ++ ++ ++ ++ ++ False ++ True ++ 0 ++ ++ ++ ++ ++ True ++ False ++ True ++ Server addresses are made up of a protocol prefix and an address. Examples: ++ True ++ 40 ++ 40 ++ 0 ++ ++ ++ False ++ True ++ 1 ++ ++ ++ ++ ++ True ++ False ++ True ++ smb://gnome.org, ssh://192.168.0.1, ftp://[2001:db8::1] ++ True ++ 40 ++ 40 ++ 0 ++ ++ ++ False ++ True ++ 2 ++ ++ ++ ++ ++ True ++ False ++ 12 ++ True ++ 6 ++ 12 ++ ++ ++ True ++ False ++ True ++ Available Protocols ++ 0 ++ ++ ++ ++ ++ ++ 0 ++ 0 ++ ++ ++ ++ ++ True ++ False ++ AppleTalk ++ 0 ++ ++ ++ 0 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ File Transfer Protocol ++ 0 ++ ++ ++ 0 ++ 2 ++ ++ ++ ++ ++ True ++ False ++ Samba ++ 0 ++ ++ ++ 0 ++ 4 ++ ++ ++ ++ ++ True ++ False ++ SSH File Transfer Protocol ++ 0 ++ ++ ++ 0 ++ 5 ++ ++ ++ ++ ++ True ++ False ++ WebDAV ++ 0 ++ ++ ++ 0 ++ 6 ++ ++ ++ ++ ++ True ++ False ++ Prefix ++ 0 ++ ++ ++ ++ ++ ++ 1 ++ 0 ++ ++ ++ ++ ++ True ++ False ++ afp:// ++ 0 ++ ++ ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ ftp:// or ftps:// ++ 0 ++ ++ ++ 1 ++ 2 ++ ++ ++ ++ ++ True ++ False ++ smb:// ++ 0 ++ ++ ++ 1 ++ 4 ++ ++ ++ ++ ++ True ++ False ++ sftp:// or ssh:// ++ 0 ++ ++ ++ 1 ++ 5 ++ ++ ++ ++ ++ True ++ False ++ dav:// or davs:// ++ 0 ++ ++ ++ 1 ++ 6 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ False ++ True ++ 3 ++ ++ ++ ++ ++ + +-- +libgit2 0.26.0 + diff --git a/SOURCES/window-Add-website-link-to-About-dialog.patch b/SOURCES/window-Add-website-link-to-About-dialog.patch new file mode 100644 index 0000000..133e6c8 --- /dev/null +++ b/SOURCES/window-Add-website-link-to-About-dialog.patch @@ -0,0 +1,13 @@ +diff --git a/src/nautilus-window.c b/src/nautilus-window.c +index 89d492a76..5ea21b1d8 100644 +--- a/src/nautilus-window.c ++++ b/src/nautilus-window.c +@@ -2864,6 +2864,7 @@ nautilus_window_show_about_dialog (NautilusWindow *window) + "program-name", program_name, + "version", VERSION, + "comments", _("Access and organize your files."), ++ "website", "https://wiki.gnome.org/action/show/Apps/Files", + "copyright", "Copyright © 1999–2018 The Files Authors", + "license-type", GTK_LICENSE_GPL_3_0, + "artists", artists, + diff --git a/SPECS/nautilus.spec b/SPECS/nautilus.spec index ff173cb..3abd3b4 100644 --- a/SPECS/nautilus.spec +++ b/SPECS/nautilus.spec @@ -8,7 +8,7 @@ Name: nautilus Version: 3.28.1 -Release: 5%{?dist} +Release: 10%{?dist} Summary: File manager for GNOME License: GPLv3+ @@ -29,6 +29,15 @@ Patch10: 0011-dbus-manager-Fix-not-holding-application.patch Patch11: 0012-clipboard-Use-text-based-clipboard-only.patch Patch12: 0013-dbus-manager-Provide-undo-status.patch Patch13: 0014-clipboard-Prevent-crash-when-selection-data-is-empty.patch +Patch14: add-desktop-icons-rename.patch +Patch15: remove-nfs-support-strings.patch +Patch16: fix-criticals-when-connecting-to-remote-locations.patch +Patch17: man-remove-geometry-option.patch +Patch18: org.gnome.Nautilus.appdata.xml.in.in-No-screenshots-.patch +Patch19: data-Fix-caption-capitalisation-in-appdata-file.patch +Patch20: window-Add-website-link-to-About-dialog.patch +Patch21: appdata-Use-Files-instead-of-Nautilus.patch +Patch22: docs-Add-nautilus-autorun-software-man-page.patch BuildRequires: gtk-doc BuildRequires: meson @@ -98,6 +107,7 @@ sed -i '/-Werror/d' meson.build %install %meson_install +rm -rf $RPM_BUILD_ROOT%{_datadir}/gtk-doc %find_lang %name @@ -120,6 +130,7 @@ desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/*/apps/org.gnome.Nautilus.png %{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Nautilus-symbolic.svg %{_mandir}/man1/nautilus.1* +%{_mandir}/man1/nautilus-autorun-software.1* %{_datadir}/glib-2.0/schemas/org.gnome.nautilus.gschema.xml %{_datadir}/metainfo/org.gnome.Nautilus.appdata.xml %dir %{_libdir}/nautilus @@ -138,11 +149,35 @@ desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop %{_libdir}/pkgconfig/* %{_libdir}/*.so %{_datadir}/gir-1.0/*.gir -%dir %{_datadir}/gtk-doc/ -%dir %{_datadir}/gtk-doc/html/ -%doc %{_datadir}/gtk-doc/html/libnautilus-extension/ %changelog +* Thu Jul 4 2019 Ondrej Holy - 3.28.1-10 +- Add screenshots for GNOME Software in Appdata file (rhbz#1725107) +- Add website link to About dialog (rhbz#1725101) +- Use Files instead of Nautilus in Appdata file (rhbz#1725120) +- Add nautilus-autorun-software man page (rhbz#1725766) + +* Fri May 31 2019 Ondrej Holy - 3.28.1-9 +- Fix criticals when connecting to remote locations (rhbz#1643175) +- Remove geometry option from man page (rhbz#1612852) + +* Tue Apr 30 2019 Carlos Soriano - 3.26.1-8 +- Remove NFS support strings, since libnfs is not in RHEL + Resolves: RHBZ#1704704 + +* Mon Apr 29 2019 Carlos Soriano - 3.28.1-7 +- Disable extension doc generation, since generated files differ and + rpmlint fails when checking that both architectures of the -devel + library generate the same files. + It's an issue in docbook, used by gtk-doc, and althought fixed upstream + they didn't have a new release yet. + https://github.com/docbook/xslt10-stylesheets/issues/54 + Resolves: RHBZ#1667136 + +* Thu Apr 25 2019 Carlos Soriano - 3.28.1-6 +- Implement support for desktop icons renaming + Resolves: RHBZ#1667136 + * Mon Nov 26 2018 Carlos Soriano - 3.28.1-5 - Fix crash with new clipboard handling Resolves: RHBZ#1629002