diff --git a/.file-roller.metadata b/.file-roller.metadata new file mode 100644 index 0000000..9924274 --- /dev/null +++ b/.file-roller.metadata @@ -0,0 +1 @@ +8d5b063e7eeec62b18115aa283ce3b08b9f3a38b SOURCES/file-roller-3.28.1.tar.xz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..878939d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/file-roller-3.28.1.tar.xz diff --git a/SOURCES/file-roller-3.28.1-CVE-2019-16680.patch b/SOURCES/file-roller-3.28.1-CVE-2019-16680.patch new file mode 100644 index 0000000..098af44 --- /dev/null +++ b/SOURCES/file-roller-3.28.1-CVE-2019-16680.patch @@ -0,0 +1,28 @@ +From 57268e51e59b61c9e3125eb0f65551c7084297e2 Mon Sep 17 00:00:00 2001 +From: Paolo Bacchilega +Date: Mon, 27 Aug 2018 15:15:42 +0200 +Subject: [PATCH] Path traversal vulnerability + +Do not extract files with relative paths. + +[bug #794337] +--- + src/glib-utils.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/glib-utils.c b/src/glib-utils.c +index 6d345243..c3901410 100644 +--- a/src/glib-utils.c ++++ b/src/glib-utils.c +@@ -1079,7 +1079,7 @@ sanitize_filename (const char *file_name) + prefix_len = 0; + for (p = file_name; *p; ) { + if (ISDOT (p[0]) && ISDOT (p[1]) && (ISSLASH (p[2]) || !p[2])) +- prefix_len = p + 2 - file_name; ++ return NULL; + + do { + char c = *p++; +-- +2.26.2 + diff --git a/SOURCES/file-roller-3.28.1-CVE-2020-11736.patch b/SOURCES/file-roller-3.28.1-CVE-2020-11736.patch new file mode 100644 index 0000000..76932d5 --- /dev/null +++ b/SOURCES/file-roller-3.28.1-CVE-2020-11736.patch @@ -0,0 +1,259 @@ +From 72ac9340d9fe9554ea5c3f0ea6d08d0afa04cbf5 Mon Sep 17 00:00:00 2001 +From: Paolo Bacchilega +Date: Sun, 12 Apr 2020 11:38:35 +0200 +Subject: [PATCH 1/2] libarchive: do not follow external links when extracting + files + +Do not extract a file if its parent is a symbolic link to a +directory external to the destination. +--- + src/fr-archive-libarchive.c | 157 ++++++++++++++++++++++++++++++++++++ + 1 file changed, 157 insertions(+) + +diff --git a/src/fr-archive-libarchive.c b/src/fr-archive-libarchive.c +index 70c07e23..8d84b2ea 100644 +--- a/src/fr-archive-libarchive.c ++++ b/src/fr-archive-libarchive.c +@@ -601,6 +601,149 @@ _g_output_stream_add_padding (ExtractData *extract_data, + } + + ++static gboolean ++_symlink_is_external_to_destination (GFile *file, ++ const char *symlink, ++ GFile *destination, ++ GHashTable *external_links); ++ ++ ++static gboolean ++_g_file_is_external_link (GFile *file, ++ GFile *destination, ++ GHashTable *external_links) ++{ ++ GFileInfo *info; ++ gboolean external; ++ ++ if (g_hash_table_lookup (external_links, file) != NULL) ++ return TRUE; ++ ++ info = g_file_query_info (file, ++ G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK "," G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET, ++ G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS, ++ NULL, ++ NULL); ++ ++ if (info == NULL) ++ return FALSE; ++ ++ external = FALSE; ++ ++ if (g_file_info_get_is_symlink (info)) { ++ if (_symlink_is_external_to_destination (file, ++ g_file_info_get_symlink_target (info), ++ destination, ++ external_links)) ++ { ++ g_hash_table_insert (external_links, g_object_ref (file), GINT_TO_POINTER (1)); ++ external = TRUE; ++ } ++ } ++ ++ g_object_unref (info); ++ ++ return external; ++} ++ ++ ++static gboolean ++_symlink_is_external_to_destination (GFile *file, ++ const char *symlink, ++ GFile *destination, ++ GHashTable *external_links) ++{ ++ gboolean external = FALSE; ++ GFile *parent; ++ char **components; ++ int i; ++ ++ if ((file == NULL) || (symlink == NULL)) ++ return FALSE; ++ ++ if (symlink[0] == '/') ++ return TRUE; ++ ++ parent = g_file_get_parent (file); ++ components = g_strsplit (symlink, "/", -1); ++ for (i = 0; components[i] != NULL; i++) { ++ char *name = components[i]; ++ GFile *tmp; ++ ++ if ((name[0] == 0) || ((name[0] == '.') && (name[1] == 0))) ++ continue; ++ ++ if ((name[0] == '.') && (name[1] == '.') && (name[2] == 0)) { ++ if (g_file_equal (parent, destination)) { ++ external = TRUE; ++ break; ++ } ++ else { ++ tmp = g_file_get_parent (parent); ++ g_object_unref (parent); ++ parent = tmp; ++ } ++ } ++ else { ++ tmp = g_file_get_child (parent, components[i]); ++ g_object_unref (parent); ++ parent = tmp; ++ } ++ ++ if (_g_file_is_external_link (parent, destination, external_links)) { ++ external = TRUE; ++ break; ++ } ++ } ++ ++ g_strfreev (components); ++ g_object_unref (parent); ++ ++ return external; ++} ++ ++ ++static gboolean ++_g_path_is_external_to_destination (const char *relative_path, ++ GFile *destination, ++ GHashTable *external_links) ++{ ++ gboolean external = FALSE; ++ GFile *parent; ++ char **components; ++ int i; ++ ++ if (relative_path == NULL) ++ return FALSE; ++ ++ if (destination == NULL) ++ return TRUE; ++ ++ parent = g_object_ref (destination); ++ components = g_strsplit (relative_path, "/", -1); ++ for (i = 0; (components[i] != NULL) && (components[i + 1] != NULL); i++) { ++ GFile *tmp; ++ ++ if (components[i][0] == 0) ++ continue; ++ ++ tmp = g_file_get_child (parent, components[i]); ++ g_object_unref (parent); ++ parent = tmp; ++ ++ if (_g_file_is_external_link (parent, destination, external_links)) { ++ external = TRUE; ++ break; ++ } ++ } ++ ++ g_strfreev (components); ++ g_object_unref (parent); ++ ++ return external; ++} ++ ++ + static void + extract_archive_thread (GSimpleAsyncResult *result, + GObject *object, +@@ -611,6 +754,7 @@ extract_archive_thread (GSimpleAsyncResult *result, + GHashTable *checked_folders; + GHashTable *created_files; + GHashTable *folders_created_during_extraction; ++ GHashTable *external_links; + struct archive *a; + struct archive_entry *entry; + int r; +@@ -621,6 +765,7 @@ extract_archive_thread (GSimpleAsyncResult *result, + checked_folders = g_hash_table_new_full (g_file_hash, (GEqualFunc) g_file_equal, g_object_unref, NULL); + created_files = g_hash_table_new_full (g_file_hash, (GEqualFunc) g_file_equal, g_object_unref, g_object_unref); + folders_created_during_extraction = g_hash_table_new_full (g_file_hash, (GEqualFunc) g_file_equal, g_object_unref, NULL); ++ external_links = g_hash_table_new_full (g_file_hash, (GEqualFunc) g_file_equal, g_object_unref, NULL); + fr_archive_progress_set_total_files (load_data->archive, extract_data->n_files_to_extract); + + a = archive_read_new (); +@@ -652,6 +797,15 @@ extract_archive_thread (GSimpleAsyncResult *result, + fullpath = (*pathname == '/') ? g_strdup (pathname) : g_strconcat ("/", pathname, NULL); + relative_path = _g_path_get_relative_basename_safe (fullpath, extract_data->base_dir, extract_data->junk_paths); + if (relative_path == NULL) { ++ fr_archive_progress_inc_completed_files (load_data->archive, 1); ++ fr_archive_progress_inc_completed_bytes (load_data->archive, archive_entry_size_is_set (entry) ? archive_entry_size (entry) : 0); ++ archive_read_data_skip (a); ++ continue; ++ } ++ ++ if (_g_path_is_external_to_destination (relative_path, extract_data->destination, external_links)) { ++ fr_archive_progress_inc_completed_files (load_data->archive, 1); ++ fr_archive_progress_inc_completed_bytes (load_data->archive, archive_entry_size_is_set (entry) ? archive_entry_size (entry) : 0); + archive_read_data_skip (a); + continue; + } +@@ -860,6 +1014,8 @@ extract_archive_thread (GSimpleAsyncResult *result, + load_data->error = g_error_copy (local_error); + g_clear_error (&local_error); + } ++ else if (_symlink_is_external_to_destination (file, archive_entry_symlink (entry), extract_data->destination, external_links)) ++ g_hash_table_insert (external_links, g_object_ref (file), GINT_TO_POINTER (1)); + archive_read_data_skip (a); + break; + +@@ -894,6 +1050,7 @@ extract_archive_thread (GSimpleAsyncResult *result, + g_hash_table_unref (folders_created_during_extraction); + g_hash_table_unref (created_files); + g_hash_table_unref (checked_folders); ++ g_hash_table_unref (external_links); + archive_read_free (a); + extract_data_free (extract_data); + } +-- +2.26.2 + + +From 25f0759274f3be9480aaba01ed801d1308a00026 Mon Sep 17 00:00:00 2001 +From: Paolo Bacchilega +Date: Sun, 12 Apr 2020 12:19:18 +0200 +Subject: [PATCH 2/2] libarchive: overwrite the symbolic link as well + +--- + src/fr-archive-libarchive.c | 14 ++++++++++++-- + 1 file changed, 12 insertions(+), 2 deletions(-) + +diff --git a/src/fr-archive-libarchive.c b/src/fr-archive-libarchive.c +index 8d84b2ea..07babbc4 100644 +--- a/src/fr-archive-libarchive.c ++++ b/src/fr-archive-libarchive.c +@@ -1010,11 +1010,21 @@ extract_archive_thread (GSimpleAsyncResult *result, + + case AE_IFLNK: + if (! g_file_make_symbolic_link (file, archive_entry_symlink (entry), cancellable, &local_error)) { +- if (! g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_EXISTS)) ++ if (g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_EXISTS)) { ++ g_clear_error (&local_error); ++ if (g_file_delete (file, cancellable, &local_error)) { ++ g_clear_error (&local_error); ++ if (! g_file_make_symbolic_link (file, archive_entry_symlink (entry), cancellable, &local_error)) ++ load_data->error = g_error_copy (local_error); ++ } ++ else ++ load_data->error = g_error_copy (local_error); ++ } ++ else + load_data->error = g_error_copy (local_error); + g_clear_error (&local_error); + } +- else if (_symlink_is_external_to_destination (file, archive_entry_symlink (entry), extract_data->destination, external_links)) ++ if ((load_data->error == NULL) && _symlink_is_external_to_destination (file, archive_entry_symlink (entry), extract_data->destination, external_links)) + g_hash_table_insert (external_links, g_object_ref (file), GINT_TO_POINTER (1)); + archive_read_data_skip (a); + break; +-- +2.26.2 + diff --git a/SPECS/file-roller.spec b/SPECS/file-roller.spec new file mode 100644 index 0000000..6335510 --- /dev/null +++ b/SPECS/file-roller.spec @@ -0,0 +1,1048 @@ +Name: file-roller +Version: 3.28.1 +Release: 3%{?dist} +Summary: Tool for viewing and creating archives + +License: GPLv2+ +URL: https://wiki.gnome.org/Apps/FileRoller +Source0: https://download.gnome.org/sources/%{name}/3.28/%{name}-%{version}.tar.xz +# https://bugzilla.redhat.com/show_bug.cgi?id=1827395 +Patch0: file-roller-3.28.1-CVE-2020-11736.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=1767594 +Patch1: file-roller-3.28.1-CVE-2019-16680.patch + +BuildRequires: pkgconfig(gio-unix-2.0) +BuildRequires: pkgconfig(gtk+-3.0) +BuildRequires: pkgconfig(json-glib-1.0) +BuildRequires: pkgconfig(libarchive) +BuildRequires: pkgconfig(libnotify) +BuildRequires: file-devel +BuildRequires: gettext +BuildRequires: desktop-file-utils +BuildRequires: itstool +BuildRequires: meson +BuildRequires: /usr/bin/appstream-util + +%if 0%{?rhel} +# Explicitly depend on various archivers to avoid problems when installing +# new archiver support on demand. +# https://bugzilla.redhat.com/show_bug.cgi?id=837608 +Requires: /usr/bin/ar +Requires: /usr/bin/bzip2 +Requires: /usr/bin/compress +Requires: /usr/bin/cpio +Requires: /usr/bin/gzip +Requires: /usr/bin/isoinfo +Requires: /usr/bin/lzop +Requires: /usr/bin/tar +Requires: /usr/bin/unzip +Requires: /usr/bin/xz +Requires: /usr/bin/zip +%endif + +# for file triggers +Requires: glib2 >= 2.45.4-2 +Requires: desktop-file-utils >= 0.22-6 + +# https://bugzilla.redhat.com/show_bug.cgi?id=1638813 +Obsoletes: file-roller-nautilus < 3.28.1-2 + +%description +File Roller is an application for creating and viewing archives files, +such as tar or zip files. + +%prep +%autosetup -p1 + +%build +%meson +%meson_build + +%install +%meson_install + +%find_lang %{name} --with-gnome + + +%check +appstream-util validate-relax --nonet $RPM_BUILD_ROOT%{_datadir}/metainfo/org.gnome.FileRoller.appdata.xml +desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/org.gnome.FileRoller.desktop + + +%files -f %{name}.lang +%doc README NEWS AUTHORS +%license COPYING +%{_bindir}/file-roller +%{_datadir}/file-roller +%{_datadir}/applications/org.gnome.FileRoller.desktop +%{_libexecdir}/file-roller +%{_datadir}/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service +%{_datadir}/dbus-1/services/org.gnome.FileRoller.service +%{_datadir}/icons/hicolor/*/apps/file-roller.png +%{_datadir}/icons/hicolor/scalable/apps/file-roller-symbolic.svg +%{_datadir}/glib-2.0/schemas/org.gnome.FileRoller.gschema.xml +%{_datadir}/metainfo/org.gnome.FileRoller.appdata.xml + +%changelog +* Mon Jun 01 2020 David King - 3.28.1-3 +- Fix CVE-2020-11736 (#1827395) +- Fix CVE-2019-16680 (#1767594) + +* Wed Jun 05 2019 David King - 3.28.1-2 +- Remove nautilus extension subpackage (#1638813) + +* Wed Jul 25 2018 Kalev Lember - 3.28.1-1 +- Update to 3.28.1 + +* Mon Mar 12 2018 Kalev Lember - 3.28.0-1 +- Update to 3.28.0 + +* Mon Mar 05 2018 Kalev Lember - 3.27.91-1 +- Update to 3.27.91 +- Switch to the meson build system + +* Wed Feb 07 2018 Fedora Release Engineering - 3.26.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jan 11 2018 Igor Gnatenko - 3.26.2-2 +- Remove obsolete scriptlets + +* Wed Nov 01 2017 Kalev Lember - 3.26.2-1 +- Update to 3.26.2 + +* Sun Oct 08 2017 Kalev Lember - 3.26.1-1 +- Update to 3.26.1 + +* Mon Sep 11 2017 Kalev Lember - 3.26.0-1 +- Update to 3.26.0 + +* Thu Sep 07 2017 Kalev Lember - 3.25.91-1 +- Update to 3.25.91 + +* Wed Aug 02 2017 Fedora Release Engineering - 3.24.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3.24.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Apr 20 2017 David King - 3.24.1-1 +- Update to 3.24.1 + +* Tue Mar 21 2017 Kalev Lember - 3.24.0-1 +- Update to 3.24.0 + +* Thu Mar 16 2017 Kalev Lember - 3.23.92-1 +- Update to 3.23.92 + +* Mon Mar 06 2017 Kalev Lember - 3.23.91-1 +- Update to 3.23.91 +- Re-enable file-roller nautilus extension + +* Mon Feb 27 2017 Kalev Lember - 3.22.3-1 +- Update to 3.22.3 + +* Fri Feb 10 2017 Fedora Release Engineering - 3.22.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Nov 24 2016 Kalev Lember - 3.22.2-1 +- Update to 3.22.2 + +* Wed Oct 12 2016 Kalev Lember - 3.22.1-1 +- Update to 3.22.1 + +* Mon Sep 19 2016 Kalev Lember - 3.22.0-1 +- Update to 3.22.0 + +* Thu Sep 15 2016 Kalev Lember - 3.21.91-2 +- Backport a patch to fix opening multiple file-roller instances (#1376391) + +* Wed Sep 14 2016 Kalev Lember - 3.21.91-1 +- Update to 3.21.91 +- Don't set group tags +- Use the X11 backend instead of Wayland (#1374321) + +* Mon Sep 12 2016 Kalev Lember - 3.21.90-2 +- Disable nautilus extension + +* Thu Aug 18 2016 Kalev Lember - 3.21.90-1 +- Update to 3.21.90 + +* Tue May 10 2016 Kalev Lember - 3.20.2-1 +- Update to 3.20.2 + +* Wed Apr 13 2016 Kalev Lember - 3.20.1-1 +- Update to 3.20.1 +- Use make_install macro + +* Tue Mar 22 2016 Kalev Lember - 3.20.0-1 +- Update to 3.20.0 + +* Tue Mar 15 2016 Kalev Lember - 3.19.91-1 +- Update to 3.19.91 + +* Tue Feb 16 2016 David King - 3.19.90-2 +- Build with smp_mflags + +* Tue Feb 16 2016 David King - 3.19.90-1 +- Update to 3.19.90 + +* Wed Feb 03 2016 Fedora Release Engineering - 3.19.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Jan 19 2016 David King - 3.19.1-1 +- Update to 3.19.1 + +* Tue Sep 01 2015 David King - 3.16.4-1 +- Update to 3.16.4 + +* Fri Aug 21 2015 Matthias Clasen - 3.16.3-2 +- Fix a crash on shutdown (#1251755) +- Rely on file triggers for some things + +* Tue Jun 30 2015 David King - 3.16.3-1 +- Update to 3.16.3 +- Update URL +- Fix typo in extension description + +* Wed Jun 17 2015 Fedora Release Engineering - 3.16.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue May 12 2015 Kalev Lember - 3.16.2-1 +- Update to 3.16.2 + +* Tue Apr 14 2015 David King - 3.16.1-1 +- Update to 3.16.1 + +* Mon Mar 23 2015 Kalev Lember - 3.16.0-1 +- Update to 3.16.0 + +* Tue Mar 17 2015 Kalev Lember - 3.15.92-1 +- Update to 3.15.92 + +* Tue Mar 03 2015 Kalev Lember - 3.15.91-1 +- Update to 3.15.91 + +* Tue Feb 17 2015 Richard Hughes - 3.15.90-1 +- Update to 3.15.90 + +* Mon Feb 09 2015 David King - 3.15.2-1 +- Update to 3.15.2 +- Use license macro for COPYING +- Validate AppData in check +- Use pkgconfig for BuildRequires + +* Sat Nov 29 2014 Kalev Lember - 3.15.1-1 +- Update to 3.15.1 + +* Mon Nov 10 2014 Kalev Lember - 3.14.2-1 +- Update to 3.14.2 + +* Mon Oct 13 2014 Kalev Lember - 3.14.1-1 +- Update to 3.14.1 + +* Mon Sep 22 2014 Kalev Lember - 3.14.0-1 +- Update to 3.14.0 + +* Tue Sep 16 2014 Kalev Lember - 3.13.92-1 +- Update to 3.13.92 + +* Mon Sep 01 2014 Kalev Lember - 3.13.91-1 +- Update to 3.13.91 +- Tighten deps for the -nautilus subpackage + +* Sat Aug 16 2014 Fedora Release Engineering - 3.13.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Mon Jul 21 2014 Kalev Lember - 3.13.2-1 +- Update to 3.13.2 + +* Sat Jun 07 2014 Fedora Release Engineering - 3.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue Apr 29 2014 Richard Hughes - 3.13.1-1 +- Update to 3.13.1 + +* Wed Apr 16 2014 Kalev Lember - 3.12.1-1 +- Update to 3.12.1 + +* Mon Mar 24 2014 Kalev Lember - 3.12.0-1 +- Update to 3.12.0 + +* Tue Mar 18 2014 Richard Hughes - 3.11.92-1 +- Update to 3.11.92 + +* Wed Mar 05 2014 Richard Hughes - 3.11.91-1 +- Update to 3.11.91 + +* Tue Feb 18 2014 Richard Hughes - 3.11.90-1 +- Update to 3.11.90 + +* Tue Feb 04 2014 Richard Hughes - 3.11.5-1 +- Update to 3.11.5 + +* Tue Jan 14 2014 Richard Hughes - 3.11.4-1 +- Update to 3.11.4 + +* Tue Dec 17 2013 Richard Hughes - 3.11.3-1 +- Update to 3.11.3 + +* Tue Nov 19 2013 Richard Hughes - 3.11.2-1 +- Update to 3.11.2 + +* Wed Oct 30 2013 Richard Hughes - 3.11.1-1 +- Update to 3.11.1 + +* Mon Oct 28 2013 Richard Hughes - 3.10.1-1 +- Update to 3.10.1 + +* Wed Sep 25 2013 Kalev Lember - 3.10.0-1 +- Update to 3.10.0 + +* Wed Sep 18 2013 Kalev Lember - 3.9.92-1 +- Update to 3.9.92 + +* Thu Sep 5 2013 Matthias Clasen - 3.9.91-2 +- Drop unar dep again, we're oversize on the live cd + +* Tue Sep 03 2013 Kalev Lember - 3.9.91-1 +- Update to 3.9.91 + +* Thu Aug 22 2013 Kalev Lember - 3.9.90-1 +- Update to 3.9.90 + +* Mon Aug 05 2013 Parag Nemade - 3.9.4-3 +- Fix vi translations to fix desktop-file-validate error +- Fix bogus date in %%changelog +- Compilation should be more verbose, add V=1 + +* Sat Aug 03 2013 Fedora Release Engineering - 3.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Jul 16 2013 Richard Hughes - 3.9.4-1 +- Update to 3.9.4 + +* Fri Jun 21 2013 Kalev Lember - 3.9.3-1 +- Update to 3.9.3 + +* Sun Jun 02 2013 Kalev Lember - 3.9.2-1 +- Update to 3.9.2 + +* Sat May 04 2013 Kalev Lember - 3.9.1-1 +- Update to 3.9.1 + +* Fri May 3 2013 Matthias Clasen - 3.8.1-4 +- Drop old GConf dependency + +* Fri May 3 2013 Matthias Clasen - 3.8.1-3 +- No unar in rhel + +* Sun Apr 21 2013 Rahul Sundaram - 3.8.1-2 +- Add BR on json-glib-devel and requires on unrar for RAR support + +* Mon Apr 15 2013 Kalev Lember - 3.8.1-1 +- Update to 3.8.1 + +* Tue Mar 26 2013 Kalev Lember - 3.8.0-1 +- Update to 3.8.0 + +* Wed Mar 20 2013 Richard Hughes - 3.7.92-1 +- Update to 3.7.92 + +* Thu Mar 7 2013 Matthias Clasen - 3.7.91-1 +- Update to 3.7.91 + +* Tue Feb 19 2013 Richard Hughes - 3.7.90-1 +- Update to 3.7.90 + +* Wed Feb 13 2013 Fedora Release Engineering - 3.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Feb 06 2013 Kalev Lember - 3.7.3-1 +- Update to 3.7.3 +- Remove the vendor prefix from the desktop file + +* Thu Jan 17 2013 Tomas Bzatek - 3.6.3-2 +- Rebuilt for new libarchive + +* Wed Nov 28 2012 Kalev Lember - 3.6.3-1 +- Update to 3.6.3 + +* Mon Nov 12 2012 Kalev Lember - 3.6.2-1 +- Update to 3.6.2 + +* Wed Oct 17 2012 Kalev Lember - 3.6.1.1-1 +- Update to 3.6.1.1 + +* Tue Oct 16 2012 Bastien Nocera 3.6.1-2 +- Make it find its own desktop file + +* Tue Oct 16 2012 Kalev Lember - 3.6.1-1 +- Update to 3.6.1 + +* Tue Sep 25 2012 Richard Hughes - 3.6.0-1 +- Update to 3.6.0 + +* Wed Sep 19 2012 Richard Hughes - 3.5.92-1 +- Update to 3.5.92 + +* Tue Sep 04 2012 Richard Hughes - 3.5.91-1 +- Update to 3.5.91 + +* Tue Aug 21 2012 Richard Hughes - 3.5.90-1 +- Update to 3.5.90 + +* Tue Aug 07 2012 Richard Hughes - 3.5.4-1 +- Update to 3.5.4 + +* Fri Jul 27 2012 Fedora Release Engineering - 3.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 17 2012 Richard Hughes - 3.5.3-1 +- Update to 3.5.3 + +* Tue Jun 26 2012 Richard Hughes - 3.5.2-1 +- Update to 3.5.2 + +* Thu Jun 07 2012 Richard Hughes - 3.5.1-2 +- Add missing BR + +* Thu Jun 07 2012 Richard Hughes - 3.5.1-1 +- Update to 3.5.1 + +* Fri May 18 2012 Richard Hughes - 3.4.2-1 +- Update to 3.4.2 + +* Tue Apr 24 2012 Kalev Lember - 3.4.1-2 +- Silence glib-compile-schemas output + +* Tue Apr 17 2012 Kalev Lember - 3.4.1-1 +- Update to 3.4.1 + +* Mon Apr 2 2012 Matthias Clasen - 3.4.0-2 +- Drop unneeded nautilus dependency (#808539) + +* Tue Mar 27 2012 Richard Hughes - 3.4.0-1 +- Update to 3.4.0 + +* Wed Mar 21 2012 Kalev Lember - 3.3.92-1 +- Update to 3.3.92 + +* Tue Mar 6 2012 Matthias Clasen - 3.3.91-1 +- Update to 3.3.91 + +* Fri Feb 24 2012 Matthias Clasen - 3.3.90-1 +- Update to 3.3.90 + +* Tue Feb 7 2012 Matthias Clasen - 3.3.3-1 +- Update to 3.3.3 + +* Tue Jan 17 2012 Matthias Clasen - 3.3.2-1 +- Update to 3.3.2 + +* Fri Jan 13 2012 Fedora Release Engineering - 3.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Dec 20 2011 Matthias Clasen - 3.3.1-1 +- Update to 3.3.1 + +* Tue Nov 22 2011 Tomas Bzatek - 3.2.2-1 +- Update to 3.2.2 + +* Wed Oct 26 2011 Fedora Release Engineering - 3.2.1-2 +- Rebuilt for glibc bug#747377 + +* Tue Oct 18 2011 Matthias Clasen - 3.2.1-1 +- Update to 3.2.1 + +* Tue Sep 27 2011 Ray - 3.2.0-1 +- Update to 3.2.0 + +* Tue Sep 27 2011 Ray - 3.2.0-1 +- Update to 3.2.0 + +* Tue Sep 20 2011 Matthias Clasen - 3.1.92-1 +- Update to 3.1.92 + +* Wed Sep 07 2011 Kalev Lember - 3.1.91-1 +- Update to 3.1.91 + +* Wed Aug 31 2011 Matthias Clasen - 3.1.90-1 +- Update to 3.1.90 + +* Thu Aug 18 2011 Matthias Clasen - 3.1.2-1 +- Update to 3.1.2 + +* Mon Jul 25 2011 Matthias Clasen - 3.1.1-1 +- Update to 3.1.1 + +* Wed Jul 20 2011 Matthias Clasen - 3.0.2-2 +- Rebuild + +* Wed May 25 2011 Christopher Aillon - 3.0.2-1 +- Update to 3.0.2 + +* Fri Apr 29 2011 Matthias Clasen - 3.0.1-2 +- Add a nautilus dependency back to the main package; keep the + -nautilus subpackage for now, in case the setting we use moves + to gsettings-desktop-schemas (#691766) + +* Tue Apr 26 2011 Matthias Clasen - 3.0.1-1 +- Update to 3.0.1 + +* Mon Apr 4 2011 Christopher Aillon - 3.0.0-1 +- Update to 3.0.0 + +* Fri Mar 25 2011 Matthias Clasen - 2.91.93-1 +- Update to 2.91.93 + +* Mon Mar 21 2011 Matthias Clasen - 2.91.92-1 +- Update to 2.91.92 + +* Mon Mar 7 2011 Matthias Clasen - 2.91.91-1 +- Update to 2.91.91 + +* Tue Feb 22 2011 Matthias Clasen - 2.91.90-1 +- Update to 2.91.90 + +* Thu Feb 10 2011 Matthias Clasen - 2.91.6-3 +- Rebuild against newer gtk + +* Tue Feb 08 2011 Fedora Release Engineering - 2.91.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Matthias Clasen 2.91.6-1 +- Update to 2.91.6 + +* Tue Jan 25 2011 Matthias Clasen 2.91.5-2 +- Drop ancient version requirements +- Drop prehistoric conflict +- Split off a -nautilus subpackage + +* Mon Jan 10 2011 Matthias Clasen 2.91.5-1 +- Update to 2.91.5 + +* Fri Jan 7 2011 Matthias Clasen 2.91.4-1 +- Update to 2.91.4 + +* Fri Dec 3 2010 Matthias Clasen 2.91.2-1 +- Update to 2.91.2 + +* Thu Nov 11 2010 Matthias Clasen 2.91.1-1 +- 2.91.1 + +* Mon Nov 1 2010 Matthias Clasen 2.91.0-3.%{alphatag} +- Rebuild against newer gtk3 + +* Wed Oct 6 2010 Matthias Clasen 2.91.0-1 +- Update to 2.91.0 + +* Tue Aug 3 2010 Matthias Clasen 2.31.5-1 +- Update to 2.31.5 + +* Mon Jul 12 2010 Matthias Clasen 2.31.4-1 +- Update to 2.31.4 + +* Tue Jun 29 2010 Matthias Clasen 2.31.3-2 +- Update to 2.31.3 + +* Tue Jun 8 2010 Matthias Clasen 2.31.2-1 +- Update to 2.31.2 + +* Thu May 27 2010 Matthias Clasen 2.31.1-1 +- Update to 2.31.1 + +* Mon May 17 2010 Tomas Bzatek 2.30.1.1-3 +- Fix archive handling on remote GIO mounts without running fuse daemon (#527045, #518510) + +* Wed May 5 2010 Matthias Clasen 2.30.1.1-2 +- Don't crash when creating .tar.7z archives + +* Tue Apr 27 2010 Matthias Clasen 2.30.1.1-1 +- Update to 2.30.1.1 +- Spec file cleanups + +* Mon Mar 29 2010 Matthias Clasen 2.30.0-1 +- Update to 2.30.0 + +* Tue Mar 9 2010 Tomas Bzatek 2.29.92-1 +- Update to 2.29.92 + +* Mon Feb 22 2010 Matthias Clasen 2.29.91-1 +- Update to 2.29.91 + +* Wed Feb 10 2010 Bastien Nocera 2.29.90-1 +- Update to 2.29.90 + +* Tue Jan 26 2010 Matthias Clasen 2.29.5-1 +- Update to 2.29.5 + +* Tue Jan 12 2010 Matthias Clasen 2.29.4-1 +- Update to 2.29.4 + +* Tue Dec 22 2009 Matthias Clasen 2.29.3-1 +- Update to 2.29.3 + +* Mon Dec 14 2009 Matthias Clasen 2.29.2-3 +- Fix a wrong use of gdk_property_get (#538535) + +* Wed Dec 2 2009 Matthias Clasen 2.29.2-2 +- Drop unneded BRs + +* Tue Dec 01 2009 Bastien Nocera 2.29.2-1 +- Update to 2.29.2 + +* Thu Oct 29 2009 Matthias Clasen 2.28.1-2 +- Fix sticky DND + +* Mon Oct 19 2009 Matthias Clasen 2.28.1-1 +- Update to 2.28.1 + +* Thu Oct 1 2009 Matthias Clasen 2.28.0-2 +- Respect button-images setting + +* Mon Sep 21 2009 Matthias Clasen 2.28.0-1 +- Update to 2.28.0 + +* Mon Sep 7 2009 Matthias Clasen 2.27.92-1 +- Update to 2.27.92 + +* Mon Aug 24 2009 Matthias Clasen 2.27.91-1 +- Update to 2.27.91 + +* Fri Aug 14 2009 Matthias Clasen 2.27.90-2 +- Make opening .cab files work + +* Tue Aug 11 2009 Matthias Clasen 2.27.90-1 +- Update to 2.27.90 + +* Tue Jul 28 2009 Matthias Clasen 2.27.3-1 +- Update to 2.27.3 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 13 2009 Matthias Clasen 2.27.2-1 +- Update to 2.27.2 + +* Tue Jun 16 2009 Matthias Clasen 2.27.1-1 +- Update to 2.27.1 + +* Mon Apr 13 2009 Matthias Clasen 2.26.1-1 +- Update to 2.26.1 +- See http://download.gnome.org/sources/file-roller/2.26/file-roller-2.26.1.news + +* Mon Mar 16 2009 Matthias Clasen 2.26.0-1 +- Update to 2.26.0 + +* Mon Mar 2 2009 Matthias Clasen 2.25.92-1 +- Update to 2.25.92 + +* Tue Feb 24 2009 Fedora Release Engineering - 2.25.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 17 2009 Matthias Clasen - 2.25.91-1 +- Update to 2.25.91 + +* Tue Feb 3 2009 Matthias Clasen - 2.25.90-1 +- Update to 2.25.90 + +* Tue Jan 20 2009 Matthias Clasen - 2.25.2-1 +- Update to 2.25.2 + +* Tue Jan 6 2009 Matthias Clasen - 2.25.1-5 +- Update to 2.25.1 +- Clean up BRs + +* Sun Nov 23 2008 Matthias Clasen - 2.24.1-2 +- Shorten summary + +* Mon Oct 20 2008 Matthias Clasen - 2.24.1-1 +- Update to 2.24.1 + +* Mon Sep 22 2008 Matthias Clasen - 2.24.0-1 +- Update to 2.24.0 + +* Mon Sep 8 2008 Matthias Clasen - 2.23.92-1 +- Update to 2.23.92 + +* Tue Sep 2 2008 Matthias Clasen - 2.23.91-1 +- Update to 2.23.91 + +* Fri Aug 22 2008 Matthias Clasen - 2.23.6-1 +- Update to 2.23.6 +- Drop upstreamed patches + +* Fri Aug 8 2008 Matthias Clasen - 2.23.5-3 +- Fix a segfault + +* Fri Aug 8 2008 Matthias Clasen - 2.23.5-2 +- Fix the folder icons + +* Mon Aug 4 2008 Matthias Clasen - 2.23.5-1 +- Update to 2.23.5 + +* Tue Jul 22 2008 Matthias Clasen - 2.23.4-1 +- Update to 2.23.4 + +* Fri Jul 11 2008 Matthias Clasen - 2.23.3-2 +- Fix icon lookup + +* Wed Jun 18 2008 Matthias Clasen - 2.23.3-1 +- Update to 2.23.3 + +* Tue Jun 3 2008 Matthias Clasen - 2.23.2-1 +- Update to 2.23.2 + +* Thu Apr 24 2008 Matthias Clasen - 2.23.1-1 +- Update to 2.23.1 + +* Mon Apr 7 2008 Matthias Clasen - 2.22.1-1 +- Update to 2.22.1 + +* Fri Apr 4 2008 Matthias Clasen - 2.22.0-2 +- Update the gio patch + +* Tue Mar 11 2008 Matthias Clasen - 2.22.0-1 +- Update to 2.22.0 + +* Tue Mar 11 2008 Matthias Clasen - 2.21.92-3 +- Port nautilus extension to gio + +* Thu Mar 6 2008 Matthias Clasen - 2.21.92-2 +- Don't OnlyShowIn=GNOME + +* Mon Feb 25 2008 Matthias Clasen - 2.21.92-1 +- Update to 2.21.92 + +* Tue Feb 12 2008 Matthias Clasen - 2.21.91-1 +- Update to 2.21.91 + +* Tue Jan 29 2008 Matthias Clasen - 2.21.2-1 +- Update to 2.21.2 + +* Tue Jan 08 2008 - Bastien Nocera - 2.21.1-1 +- Update to 2.21.1 +- Remove obsolete patch + +* Sun Dec 23 2007 Matthias Clasen - 2.20.2-2 +- Rebuild nautilus extension against nautilus 2.21 + +* Mon Nov 26 2007 Matthias Clasen - 2.20.2-1 +- Update to 2.20.2 (translation updates) + +* Mon Oct 15 2007 Matthias Clasen - 2.20.1-1 +- Update to 2.20.1 (crash fix) + +* Mon Sep 17 2007 Matthias Clasen - 2.20.0-1 +- Update to 2.20.0 + +* Mon Sep 3 2007 Matthias Clasen - 2.19.92-1 +- Update to 2.19.92 + +* Mon Sep 3 2007 Matthias Clasen - 2.19.91-1 +- Update to 2.19.91 + +* Fri Aug 24 2007 Adam Jackson - 2.19.90-2 +- Rebuild for build ID + +* Mon Aug 13 2007 Matthias Clasen - 2.19.90-1 +- Update to 2.19.90 + +* Mon Aug 6 2007 Matthias Clasen - 2.19.4-3 +- Use %%find_lang for help files + +* Thu Aug 2 2007 Matthias Clasen - 2.19.4-2 +- Update the license field + +* Mon Jul 30 2007 Matthias Clasen - 2.19.4-1 +- Update to 2.19.4 + +* Tue Jun 19 2007 Matthias Clasen - 2.19.3-1 +- Update to 2.19.3 + +* Mon Jun 4 2007 Matthias Clasen - 2.19.2-1 +- Update to 2.19.2 + +* Sat May 19 2007 Matthias Clasen - 2.19.1-1 +- Update to 2.19.1 + +* Thu Apr 12 2007 Christopher Aillon - 2.18.1-1 +- Update to 2.18.1 + +* Tue Mar 13 2007 Matthias Clasen - 2.18.0-1 +- Update to 2.18.0 + +* Tue Feb 27 2007 Matthias Clasen - 2.17.92-1 +- Update to 2.17.92 + +* Mon Feb 12 2007 Matthias Clasen - 2.17.91-1 +- Update to 2.17.91 + +* Mon Feb 5 2007 Christopher Aillon - 2.17.90-2 +- Packaging issues: + Remove unneeded desktop-file-utils requires + Build with --disable-static + +* Mon Jan 22 2007 Matthias Clasen - 2.17.90-1 +- Update to 2.17.90 + +* Wed Jan 10 2007 Matthias Clasen - 2.17.5-1 +- Update to 2.17.5 + +* Tue Dec 19 2006 Matthias Clasen - 2.17.4-1 +- Update to 2.17.4 + +* Tue Dec 5 2006 Matthias Clasen - 2.17.3-1 +- Update to 2.17.3 + +* Tue Nov 7 2006 Matthias Clasen - 2.17.2-1 +- Update to 2.17.2 + +* Sat Oct 21 2006 Matthias Clasen - 2.17.1-1 +- Update to 2.17.1 + +* Fri Sep 8 2006 Matthias Clasen - 2.16.0-2 +- Fix directory ownership issues + +* Mon Sep 4 2006 Matthias Clasen - 2.16.0-1.fc6 +- Update to 2.16.0 +- Add missing BRs + +* Tue Aug 22 2006 Matthias Clasen - 2.15.93-2.fc6 +- Add a %%preun script +- Silence %%post and %%preun + +* Mon Aug 21 2006 Matthias Clasen - 2.15.93-1.fc6 +- Update to 2.15.93 + +* Sat Aug 12 2006 Matthias Clasen - 2.15.92-1.fc6 +- Update to 2.15.92 +- BR nautilus-devel + +* Thu Aug 3 2006 Matthias Clasen - 2.15.90-1.fc6 +- Update to 2.15.90 + +* Sun Jul 30 2006 Matthias Clasen - 2.15.1-2 +- Avoid warnings from recent menu + +* Wed Jul 12 2006 Matthias Clasen - 2.15.1-1 +- Update to 2.15.1 + +* Wed Jul 12 2006 Jesse Keating - 2.14.3-4.1 +- rebuild + +* Thu Jun 8 2006 Matthias Clasen - 2.14.3-4 +- Add more BuildRequires + +* Mon Jun 5 2006 Matthias Clasen - 2.14.3-3 +- Rebuild + +* Mon May 29 2006 Matthias Clasen - 2.14.3-2 +- Update to 2.14.3 + +* Tue Apr 18 2006 Matthias Clasen - 2.14.2-3 +- Remove dot from summary + +* Tue Apr 18 2006 Matthias Clasen - 2.14.2-2 +- Update to 2.14.2 +- Some .spec file cleanups + +* Mon Apr 10 2006 Matthias Clasen - 2.14.1-2 +- Update to 2.14.1 + +* Mon Mar 13 2006 Matthias Clasen - 2.14.0-1 +- Update to 2.14.0 + +* Mon Feb 27 2006 Matthias Clasen - 2.13.92-1 +- Update to 2.13.92 + +* Tue Feb 21 2006 Karsten Hopp 2.13.91-2 +- BuildRequire: gnome-doc-utils + +* Wed Feb 15 2006 Matthias Clasen - 2.13.91-1 +- Update to 2.13.91 + +* Sun Feb 12 2006 Christopher Aillon 2.13.90-2 +- Rebuild + +* Tue Feb 07 2006 Jesse Keating 2.13.90-1.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Tue Jan 31 2006 Matthias Clasen 2.13.90-1 +- Update to 2.13.90 + +* Mon Jan 16 2006 Matthias Clasen 2.13.4-1 +- Update to 2.13.4 + +* Tue Jan 03 2006 Matthias Clasen 2.13.3-1 +- Update to 2.13.3 + +* Wed Dec 14 2005 Matthias Clasen 2.13.2-1 +- Update to 2.13.2 +- Remove upstreamed patches + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Thu Dec 1 2005 Matthias Clasen 2.13.1-1 +- Update to 2.13.1 + +* Thu Nov 3 2005 Christopher Aillon 2.12.1-2 +- Add 7-zip to the desktop file, since file-roller supports it + +* Thu Oct 6 2005 Matthias Clasen 2.12.1-1 +- Update to 2.12.1 + +* Wed Sep 7 2005 Matthias Clasen 2.12.0-1 +- Update to 2.12.0 + +* Wed Aug 17 2005 David Zeuthen +- Disable scrollkeeper until gnome-doc changes are sorted out + +* Tue Aug 16 2005 Matthias Clasen +- New upstream version + +* Thu Aug 4 2005 Matthias Clasen 2.11.90-1 +- New upstream version + +* Mon Jul 11 2005 Matthias Clasen 2.11.2-1 +- New upstream version + +* Fri Mar 18 2005 David Zeuthen 2.10.0-1 +- New upstream version + +* Thu Mar 3 2005 Marco Pesenti Gritti 2.9.92-1 +- Update to 2.9.92 + +* Wed Feb 9 2005 Matthias Clasen 2.9.91-1 +- Update to 2.9.91 + +* Mon Jan 31 2005 Matthias Clasen 2.9.4-1 +- Update to 2.9.4 + +* Wed Nov 3 2004 Christopher Aillon 2.8.3-1 +- Update to 2.8.3 + +* Wed Oct 13 2004 Christopher Aillon 2.8.2-2 +- Update to 2.8.2 + +* Tue Oct 5 2004 Christopher Aillon 2.8.1-1 +- Update to 2.8.1 + +* Thu Sep 30 2004 Christopher Aillon 2.8.0-4 +- Prereq desktop-file-utils >= 0.9 + +* Tue Sep 28 2004 Christopher Aillon 2.8.0-2 +- update-desktop-database after uninstall. +- nautilus shouldn't try to open remote files with file-roller (#133592) + +* Wed Sep 22 2004 Christopher Aillon 2.8.0-1 +- Update to 2.8.0 + +* Mon Aug 30 2004 Christopher Aillon 2.7.5-0 +- Update to 2.7.5 + +* Wed Aug 18 2004 Christopher Aillon 2.7.4-0 +- Update to 2.7.4 + +* Mon Aug 16 2004 Christopher Aillon 2.7.3-3 +- Use update-desktop-database instead of rebuild-mime-info-cache + +* Sun Aug 15 2004 Christopher Aillon 2.7.3-2 +- Rebuild MIME info cache + +* Thu Aug 05 2004 Christopher Aillon 2.7.3-1 +- Update to 2.7.3 + +* Sat Jul 03 2004 Christopher Aillon 2.6.2-1 +- update to 2.6.2 + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Wed Jun 09 2004 Christopher Aillon 2.6.1-1 +- update to 2.6.1 + +* Fri Apr 2 2004 Alex Larsson 2.6.0-1 +- update to 2.6.0 + +* Tue Mar 9 2004 Alexander Larsson 2.5.6-1 +- update to 2.5.6 + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Thu Feb 26 2004 Alexander Larsson 2.5.5-1 +- update to 2.5.5 + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Fri Jan 30 2004 Alexander Larsson 2.5.2-1 +- update to 2.5.2 + +* Fri Oct 3 2003 Alexander Larsson 2.4.0.1-1 +- 2.4.0.1 + +* Tue Aug 19 2003 Alexander Larsson 2.3.4-1 +- update for gnome 2.3 + +* Fri Aug 8 2003 Elliot Lee 2.2.3-5 +- Fix libtool + +* Wed Jul 9 2003 Alexander Larsson 2.2.3-4.E +- Rebuild + +* Thu Jun 5 2003 Elliot Lee +- rebuilt + +* Thu Jun 5 2003 Alexander Larsson 2.2.3-3 +- Update scrollkeeper prereq to version 0.3.4-2 (#92251) + +* Mon May 19 2003 Alexander Larsson 2.2.3-2 +- Use system libtool + +* Mon May 19 2003 Alexander Larsson 2.2.3-1 +- Update to 2.2.3 + +* Tue Feb 4 2003 Alexander Larsson 2.2.1-2 +- Add patch that disables monitoring in recent-files + +* Fri Jan 31 2003 Alexander Larsson 2.2.1-1 +- Update to 2.2.1, more translations + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Tue Jan 21 2003 Alexander Larsson 2.2.0-1 +- Update to 2.2.0 +- Conflict with nautilus < 2.2.0 + +* Thu Jan 9 2003 Alexander Larsson 2.1.5-1 +- Update to 2.1.5 + +* Thu Dec 19 2002 Havoc Pennington +- 2.1.4 +- remove noscripts patch, now upstream + +* Mon Dec 9 2002 Alexander Larsson 2.1.3-3 +- fix server file path + +* Mon Dec 9 2002 Alexander Larsson 2.1.3-2 +- Remove unpackaged files + +* Mon Dec 9 2002 Alexander Larsson 2.1.3-1 +- Update to 2.1.3 + +* Fri Dec 6 2002 Havoc Pennington +- 2.1.2 +- fix unpackaged files + +* Wed Jul 31 2002 Havoc Pennington +- fix URL field +- put icon in file list +- 2.0.0 stable release + +* Fri Jun 21 2002 Havoc Pennington +- initial build +