Blame SPECS/shared-mime-info.spec

96ae90
Summary: Shared MIME information database
96ae90
Name: shared-mime-info
6418cd
Version: 1.8
6418cd
Release: 3%{?dist}
96ae90
License: GPLv2+
96ae90
Group: System Environment/Base
96ae90
URL: http://freedesktop.org/Software/shared-mime-info
96ae90
Source0: http://people.freedesktop.org/~hadess/%{name}-%{version}.tar.xz
6418cd
Source1: gnome-mimeapps.list
96ae90
# Generated with:
6418cd
# for i in `cat /home/hadess/Projects/jhbuild/totem/data/mime-type-list.txt | grep -v audio/flac | grep -v ^#` ; do if grep MimeType /home/hadess/Projects/jhbuild/rhythmbox/data/rhythmbox.desktop.in.in | grep -q "$i;" ; then echo "$i=rhythmbox.desktop;org.gnome.Totem.desktop;" >> totem-defaults.list ; else echo "$i=org.gnome.Totem.desktop;" >> totem-defaults.list ; fi ; done ; for i in `cat /home/hadess/Projects/jhbuild/totem/data/uri-schemes-list.txt | grep -v ^#` ; do echo "x-scheme-handler/$i=org.gnome.Totem.desktop;" >> totem-defaults.list ; done
96ae90
Source2: totem-defaults.list
96ae90
# Generated with:
6418cd
# for i in `grep MimeType= /usr/share/applications/org.gnome.FileRoller.desktop | sed 's/MimeType=//' | sed 's/;/ /g'` application/x-source-rpm ; do if ! `grep -q $i defaults.list` ; then echo $i=org.gnome.FileRoller.desktop\; >> file-roller-defaults.list ; fi ; done
96ae90
Source3: file-roller-defaults.list
96ae90
# Generated with:
6418cd
# for i in `grep MimeType= /usr/share/applications/eog.desktop | sed 's/MimeType=//' | sed 's/;/ /g'` ; do echo $i=eog.desktop\; >> eog-defaults.list ; done
6418cd
Source4: eog-defaults.list
96ae90
96ae90
# Work-around for https://bugs.freedesktop.org/show_bug.cgi?id=40354
96ae90
Patch0: 0001-Remove-sub-classing-from-OO.o-mime-types.patch
96ae90
96ae90
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
96ae90
BuildRequires:  libxml2-devel
96ae90
BuildRequires:  glib2-devel
96ae90
BuildRequires:  gettext
96ae90
# For intltool:
96ae90
BuildRequires: perl(XML::Parser) intltool
96ae90
96ae90
Requires(post): glib2
6418cd
Requires(post): coreutils
6418cd
6418cd
# Disable pkgconfig autodep
6418cd
%global __requires_exclude ^/usr/bin/pkg-config$
96ae90
96ae90
%description
96ae90
This is the freedesktop.org shared MIME info database.
96ae90
96ae90
Many programs and desktops use the MIME system to represent the types of
96ae90
files. Frequently, it is necessary to work out the correct MIME type for
96ae90
a file. This is generally done by examining the file's name or contents,
96ae90
and looking up the correct MIME type in a database.
96ae90
96ae90
%prep
6418cd
%autosetup
96ae90
96ae90
%build
6418cd
%configure --disable-silent-rules --disable-update-mimedb
6418cd
# not smp safe, pretty small package anyway
96ae90
make
96ae90
96ae90
%install
6418cd
# speed build a bit
6418cd
PKGSYSTEM_ENABLE_FSYNC=0 \
96ae90
make install DESTDIR=$RPM_BUILD_ROOT
96ae90
96ae90
find $RPM_BUILD_ROOT%{_datadir}/mime -type d \
96ae90
| sed -e "s|^$RPM_BUILD_ROOT|%%dir |" > %{name}.files
96ae90
find $RPM_BUILD_ROOT%{_datadir}/mime -type f -not -path "*/packages/*" \
96ae90
| sed -e "s|^$RPM_BUILD_ROOT|%%ghost |" >> %{name}.files
96ae90
96ae90
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/applications
6418cd
install -m 644 %SOURCE1 $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
6418cd
cat %SOURCE2 >> $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
6418cd
cat %SOURCE3 >> $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
6418cd
cat %SOURCE4 >> $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
6418cd
6418cd
# Support fallback/generic mimeapps.list (currently based on gnome-mimeapps.list), see
6418cd
# https://lists.fedoraproject.org/pipermail/devel/2015-July/212403.html
6418cd
# https://bugzilla.redhat.com/show_bug.cgi?id=1243049
6418cd
cp $RPM_BUILD_ROOT%{_datadir}/applications/gnome-mimeapps.list \
6418cd
   $RPM_BUILD_ROOT%{_datadir}/applications/mimeapps.list
96ae90
96ae90
## remove bogus translation files
96ae90
## translations are already in the xml file installed
96ae90
rm -rf $RPM_BUILD_ROOT%{_datadir}/locale/*
96ae90
96ae90
96ae90
%post
6418cd
/bin/touch --no-create %{_datadir}/mime/packages &>/dev/null ||:
6418cd
6418cd
%posttrans
6418cd
%{_bindir}/update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null ||:
96ae90
96ae90
%files -f %{name}.files
6418cd
%{!?_licensedir:%global license %%doc}
6418cd
%license COPYING
6418cd
%doc README NEWS HACKING shared-mime-info-spec.xml
96ae90
%{_bindir}/*
96ae90
%{_datadir}/mime/packages/*
6418cd
%{_datadir}/applications/mimeapps.list
6418cd
%{_datadir}/applications/gnome-mimeapps.list
6418cd
# better to co-own this dir than to pull in pkgconfig
96ae90
%dir %{_datadir}/pkgconfig
96ae90
%{_datadir}/pkgconfig/shared-mime-info.pc
96ae90
%{_mandir}/man*/*
96ae90
96ae90
%changelog
6418cd
* Wed Mar 22 2017 Bastien Nocera <bnocera@redhat.com> - 1.8-3
6418cd
+ shared-mime-info-1.8-3
6418cd
- Remove triggers, they're not supported in RHEL 7.4's RPM
6418cd
Resolves: #1433916
6418cd
6418cd
* Wed Mar 01 2017 Bastien Nocera <bnocera@redhat.com> - 1.8-2
6418cd
+ shared-mime-info-1.8-2
6418cd
- Rebase to 1.8
6418cd
Resolves: #1387045
6418cd
640c3b
* Fri Jul 17 2015 Matthias Clasen <mclasen@redhat.com> 1.1-9
640c3b
- Add support for raw disk images
640c3b
  Related: #1211198
640c3b
640c3b
* Tue Jun 30 2015 Ray Strode <rstrode@redhat.com> 1.1-8
640c3b
- Update default file assocations to match rebased names
640c3b
  Resolves: #1235413
640c3b
410ed2
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.1-7
410ed2
- Mass rebuild 2014-01-24
410ed2
410ed2
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.1-6
410ed2
- Mass rebuild 2013-12-27
410ed2
96ae90
* Sat Jun  8 2013 Matthias Clasen <mclasen@redhat.com> - 1.1-5
96ae90
- Drop pkgconfig dep, instead co-own /usr/share/pkgconfig
96ae90
96ae90
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.1-4
96ae90
- Update for file-roller desktop file vendor prefix removal
96ae90
96ae90
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.1-3
96ae90
- Update for eog desktop file vendor prefix removal
96ae90
96ae90
* Sun Feb 17 2013 Christoph Wickert <cwickert@fedoraproject.org> - 1.1-2
96ae90
- De-vendorize defaults.list (https://fedorahosted.org/fesco/ticket/1077)
96ae90
96ae90
* Wed Feb 13 2013 Bastien Nocera <bnocera@redhat.com> 1.1-1
96ae90
- Update to 1.1
96ae90
96ae90
* Fri Nov 30 2012 Bastien Nocera <bnocera@redhat.com> 1.0-6
96ae90
- Open src.rpm files in file-roller instead of PackageKit
96ae90
96ae90
* Mon Nov 05 2012 Bastien Nocera <bnocera@redhat.com> 1.0-6
96ae90
- Rebuild file-roller's default list
96ae90
96ae90
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-5
96ae90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
96ae90
96ae90
* Tue May 22 2012 Rex Dieter <rdieter@fedoraproject.org> 
96ae90
- 1.0-4
96ae90
- defaults.list: s/mozilla-firefox/firefox/ (see #736558)
96ae90
- defaults.list: s/gpk-install-file/gpk-install-local-file/
96ae90
- defaults.list: application/x-catalog=gpk-install-catalog.desktop (#770019) 
96ae90
96ae90
* Fri May 11 2012 Bastien Nocera <bnocera@redhat.com> 1.0-3
96ae90
- Use gnome-disk-image-mounter from gnome-disk-utility to handle
96ae90
  CD images by default (#820403)
96ae90
96ae90
* Wed Mar  7 2012 Matthias Clasen <mclasen@redhat.com> - 1.0-2
96ae90
- Own/%%ghost files generated by update-mime-database from
96ae90
  freedesktop.org.xml (patch by Ville Skyttä, #716451))
96ae90
96ae90
* Tue Jan 17 2012 Bastien Nocera <bnocera@redhat.com> 1.0-1
96ae90
- Update to 1.0
96ae90
96ae90
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-7
96ae90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
96ae90
96ae90
* Mon Nov 21 2011 Jon Masters <jcm@jonmasters.org> 0.91-6
96ae90
- Fix interpretation of MP3 files as application/x-designer (#755472)
96ae90
96ae90
* Mon Oct 24 2011 Rex Dieter <rdieter@fedoraproject.org> 0.91-5
96ae90
- s/mozilla-firefox.desktop/firefox.desktop/ (f17+, #736558)
96ae90
96ae90
* Thu Oct 13 2011 Bastien Nocera <bnocera@redhat.com> 0.91-4
96ae90
- Make Evolution the default calendar (and not Gedit...)
96ae90
96ae90
* Thu Oct 13 2011 Bastien Nocera <bnocera@redhat.com> 0.91-3
96ae90
- Make shotwell the default for camera roll handling
96ae90
- Make shotwell-viewer the default image viewer (for the
96ae90
  image types it handles)
96ae90
- Prefer Rhythmbox to Totem for music files
96ae90
96ae90
* Sun Sep 18 2011 Bastien Nocera <bnocera@redhat.com> 0.91-2
96ae90
- Fix changelog entries
96ae90
96ae90
* Sun Sep 18 2011 Bastien Nocera <bnocera@redhat.com> 0.91-1
96ae90
- Update to 0.91
96ae90
96ae90
* Thu Aug 25 2011 Bastien Nocera <bnocera@redhat.com> 0.90-9
96ae90
- Never try to load OO.o files in file-roller
96ae90
96ae90
* Thu May 26 2011 Bastien Nocera <bnocera@redhat.com> 0.90-8
96ae90
- Fix LibreOffice associations (patch from Caolan McNamara, #707971)
96ae90
96ae90
* Thu Apr 21 2011 Bastien Nocera <bnocera@redhat.com> 0.90-7
96ae90
- Fix name of nautilus.desktop file (#698502)
96ae90
96ae90
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.90-6
96ae90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
96ae90
96ae90
* Thu Dec 16 2010 Bastien Nocera <bnocera@redhat.com> 0.90-5
96ae90
- Auto-generate file-roller's bindings as well
96ae90
96ae90
* Wed Dec 08 2010 Bastien Nocera <bnocera@redhat.com> 0.90-4
96ae90
- Update defaults.list and update for newer desktop names,
96ae90
  with help from Edward Sheldrake (#659457)
96ae90
96ae90
* Tue Dec 07 2010 Bastien Nocera <bnocera@redhat.com> 0.90-3
96ae90
- Add Firefox as the default for application/xhtml+xml
96ae90
  (#660657)
96ae90
96ae90
* Wed Dec 01 2010 Bastien Nocera <bnocera@redhat.com> 0.90-2
96ae90
- Update list of defaults, adding new mime-types for Totem,
96ae90
  as well as scheme handlers, and install defaults for
96ae90
  Evolution and Firefox
96ae90
96ae90
* Wed Dec 01 2010 Bastien Nocera <bnocera@redhat.com> 0.90-1
96ae90
- Update to 0.90
96ae90
96ae90
* Thu Nov  4 2010 Tom "spot" Callaway <tcallawa@redhat.com> 0.80-2
96ae90
- rebuild for new libxml
96ae90
96ae90
* Thu Sep 30 2010 Bastien Nocera <bnocera@redhat.com> 0.80-1
96ae90
- Update to 0.80
96ae90
96ae90
* Tue Jul  6 2010 Colin Walters <walters@verbum.org> - 0.71-4
96ae90
- Fix previous change to be Requires(post); spotted by
96ae90
  Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
96ae90
96ae90
* Sat Jul  3 2010 Colin Walters <walters@verbum.org> - 0.71-3
96ae90
- Requires(pre) on glib, since update-mime-database uses it
96ae90
- Remove /dev/null redirection, we should see future errors
96ae90
  And really, RPM is dumb here - this stuff needs to go to
96ae90
  log files.
96ae90
96ae90
* Tue Jun 01 2010 Bastien Nocera <bnocera@redhat.com> 0.71-2
96ae90
- Update some OO.o defaults, patch from Caolan McNamara
96ae90
96ae90
* Mon Feb 01 2010 Bastien Nocera <bnocera@redhat.com> 0.71-1
96ae90
- Update to 0.71
96ae90
96ae90
* Tue Oct 06 2009 Bastien Nocera <bnocera@redhat.com> 0.70-1
96ae90
- Update to 0.70
96ae90
96ae90
* Thu Sep 24 2009 - Caolán McNamara <caolanm@redhat.com> - 0.60-5
96ae90
- Resolves: rhbz#508559 openoffice.org desktop files changed name
96ae90
96ae90
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-4
96ae90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
96ae90
96ae90
* Wed Mar 04 2009 - Bastien Nocera <bnocera@redhat.com> - 0.60-3
96ae90
- Remove Totem as handling Blu-ray and HD-DVD
96ae90
- Use brasero-ncb.desktop instead of nautilus-cd-burner for blank devices
96ae90
- Update media mime-types for Rhythmbox/Totem
96ae90
96ae90
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-2
96ae90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
96ae90
96ae90
* Sat Feb 21 2009 - Bastien Nocera <bnocera@redhat.com> - 0.60-1
96ae90
- Update to 0.60
96ae90
96ae90
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-6
96ae90
- Update with comments from Orcan Ogetbil <orcanbahri@yahoo.com>
96ae90
96ae90
* Wed Nov 26 2008 - Julian Sikorski <belegdol[at]gmail[dot]com> - 0.51-5
96ae90
- Fix text/plain, gedit installs gedit.desktop and not gnome-gedit.desktop
96ae90
96ae90
* Wed Oct 29 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-4
96ae90
- Add patch to avoid picture CD being anything with a pictures directory
96ae90
  (#459365)
96ae90
96ae90
* Thu Oct 02 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-3
96ae90
- Use evince, not tetex-xdvi.desktop for DVI files (#465242)
96ae90
96ae90
* Mon Sep 01 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-2
96ae90
- Use Firefox and not redhat-web as the default app for HTML files (#452184)
96ae90
96ae90
* Wed Jul 23 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-1
96ae90
- Update to 0.51
96ae90
96ae90
* Tue Jul 22 2008 - Bastien Nocera <bnocera@redhat.com> - 0.50-1
96ae90
- Update to 0.50
96ae90
96ae90
* Sat Jun 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.40-2
96ae90
- update license tag
96ae90
96ae90
* Wed Jun 11 2008 - Bastien Nocera <bnocera@redhat.com> - 0.40-1
96ae90
- Update to 0.40
96ae90
96ae90
* Mon May 12 2008 - Bastien Nocera <bnocera@redhat.com> - 0.30-1
96ae90
- Update to 0.30
96ae90
96ae90
* Fri May  2 2008 David Zeuthen <davidz@redhat.com> - 0.23-9
96ae90
- Fix defaults for x-content/image-dcf (#445032)
96ae90
96ae90
* Thu Apr 17 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-8
96ae90
- Make mount-archive.desktop the default for iso images (#442960)
96ae90
96ae90
* Tue Apr 15 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-7
96ae90
- Update the desktop file name for Gimp, too
96ae90
96ae90
* Tue Apr 15 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-6
96ae90
- Change default for rpm to gpk-install-file (#442485)
96ae90
96ae90
* Thu Mar 27 2008 - Bastien Nocera <bnocera@redhat.com> - 0.23-5
96ae90
- Make Totem the default for the mime-types it handles (#366101)
96ae90
- And make sure Rhythmbox is the second default only for the mime-types
96ae90
  it handles
96ae90
96ae90
* Thu Mar 20 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-4
96ae90
- Change default for rpm to pk-install-file
96ae90
96ae90
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.23-3
96ae90
- Autorebuild for GCC 4.3
96ae90
96ae90
* Fri Jan 18 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-2
96ae90
- Add defaults for content types
96ae90
96ae90
* Tue Dec 18 2007 - Bastien Nocera <bnocera@redhat.com> - 0.23-1
96ae90
- Update to 0.23
96ae90
96ae90
* Tue Nov 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-5
96ae90
- Remove Totem as the default music/movie player, it will be the
96ae90
  default for movies, as only it handles them, and Rhythmbox can
96ae90
  handle missing plugins now
96ae90
96ae90
* Mon Nov 05 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-4
96ae90
- Make Totem the default for the mime-types it handles (#366101)
96ae90
96ae90
* Fri Aug 24 2007 Adam Jackson <ajax@redhat.com> - 0.22-3
96ae90
- Rebuild for PPC toolchain bug
96ae90
- BuildRequires: gawk
96ae90
96ae90
* Tue Aug 21 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-2
96ae90
- Don't say that webcal files are handled by evolution-2.0, it can't
96ae90
- Disable vCard mapping as well, as evolution doesn't handle it
96ae90
  (See http://bugzilla.gnome.org/show_bug.cgi?id=309073)
96ae90
96ae90
* Mon Jul 30 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-1
96ae90
- Update to 0.22
96ae90
96ae90
* Tue Apr 17 2007 - Bastien Nocera <bnocera@redhat.com> - 0.20-2
96ae90
- Fix the dia association (#194313)
96ae90
96ae90
* Tue Feb 06 2007 - Bastien Nocera <bnocera@redhat.com> - 0.20-1
96ae90
- Update to 0.20, and remove outdated patches
96ae90
96ae90
* Fri Nov 10 2006 Christopher Aillon <caillon@redhat.com> - 0.19-2
96ae90
- Alias image/pdf to application/pdf
96ae90
96ae90
* Fri Aug 25 2006 Christopher Aillon <caillon@redhat.com> - 0.19-1
96ae90
- Update to 0.19
96ae90
96ae90
* Wed Jul 26 2006 Matthias Clasen <mclasen@redhat.com> - 0.18-2
96ae90
- add an inode/directory entry to defaults.list (#187021)
96ae90
96ae90
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.18-1.1
96ae90
- rebuild
96ae90
96ae90
* Wed Jul  5 2006 Kristian Høgsberg <krh@redhat.com> - 0.18-1
96ae90
- Update to 0.18 and drop backported patches.
96ae90
96ae90
* Thu Jun 29 2006 Kristian Høgsberg <krh@redhat.com> - 0.17-3
96ae90
- Adding PDF fix backported from CVS.
96ae90
96ae90
* Wed Mar 22 2006 Matthias Clasen <mclasen@redhat.com> - 0.17-2
96ae90
- Backport upstream change to fix postscript vs. matlab confusion
96ae90
96ae90
* Thu Mar 16 2006 Matthias Clasen <mclasen@redhat.com> - 0.17-1
96ae90
- Update to 0.17
96ae90
96ae90
* Mon Feb 13 2006 Ray Strode <rstrode@redhat.com> - 0.16.cvs20060212-3
96ae90
- add gthumb as fallback
96ae90
96ae90
* Mon Feb 13 2006 Ray Strode <rstrode@redhat.com> - 0.16.cvs20060212-2
96ae90
- make eog the default image viewer
96ae90
96ae90
* Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 0.16.cvs20060212-1
96ae90
- Newer CVS snapshot
96ae90
96ae90
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.16.cvs20051219-2.1
96ae90
- rebuilt for new gcc4.1 snapshot and glibc changes
96ae90
96ae90
* Mon Jan 30 2006 Caolan McNamara <caolanm@redhat.com> - 0.16.cvs20051219-2
96ae90
- rh#179138# add openoffice.org as preferred app for oasis formats 
96ae90
96ae90
* Mon Dec 19 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051219-1
96ae90
- Newer cvs snapshot
96ae90
96ae90
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
96ae90
- rebuilt
96ae90
96ae90
* Thu Dec  1 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051201-1
96ae90
- Incorporate upstream changes
96ae90
96ae90
* Wed Nov 02 2005 John (J5) Palmieri <johnp@redhat.com> - 0.16.cvs20051018-2
96ae90
- Change all refs of eog to gthumb in defaults.list
96ae90
96ae90
* Tue Oct 18 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051018-1
96ae90
- Incorporate upstream changes
96ae90
96ae90
* Wed Oct 12 2005 Matthias Clasen <mclasen@redhat.com> - 0.16-6
96ae90
- Add glade to defaults.list
96ae90
96ae90
* Mon Oct  3 2005 Matthias Clasen <mclasen@redhat.com> - 0.16-5
96ae90
- Make sure Type1 fonts are recognized as such (#160909)
96ae90
96ae90
* Fri Jun 17 2005 David Zeuthen <davidz@redhat.com> - 0.16-4
96ae90
- Add MIME-types for .pcf Cisco VPN settings files (fdo #3560)
96ae90
96ae90
* Fri May 20 2005 Dan Williams <dcbw@redhat.com> - 0.16-3
96ae90
- Update OpenOffice.org desktop file names. #155353
96ae90
- WordPerfect default now OOo Writer, since Abiword is in Extras
96ae90
96ae90
* Sun Apr  3 2005 David Zeuthen <davidz@redhat.com> - 0.16-2
96ae90
- Make Evince the default for application/pdf and application/postscript
96ae90
- Remove remaining references to gnome-ggv (application/x-gzpostscript and
96ae90
  image/x-eps) as this is no longer in the distribution
96ae90
96ae90
* Fri Apr  1 2005 David Zeuthen <davidz@redhat.com> - 0.16-1
96ae90
- Update to upstream release 0.16
96ae90
- Drop all patches as they are in the new upstream release
96ae90
96ae90
* Wed Mar  9 2005 David Zeuthen <davidz@redhat.com> - 0.15-11
96ae90
- Add mimetypes for OOo2 (#150546)
96ae90
96ae90
* Mon Oct 18 2004 Alexander Larsson <alexl@redhat.com> - 0.15-10
96ae90
- Fix for mime sniffing on big-endian
96ae90
96ae90
* Thu Oct 14 2004 Colin Walters <walters@redhat.com> - 0.15-9
96ae90
- Handle renaming of hxplay.desktop to realplay.desktop
96ae90
96ae90
* Wed Oct 13 2004 Matthias Clasen <mclasen@redhat.com> - 0.15-8
96ae90
- Handle XUL files. #134122
96ae90
96ae90
* Wed Oct 13 2004 Colin Walters <walters@redhat.com> - 0.15-7
96ae90
- Make helix default for ogg and mp3, will switch wav/flac too 
96ae90
  when support is added
96ae90
96ae90
* Wed Oct  6 2004 Alexander Larsson <alexl@redhat.com> - 0.15-6
96ae90
- Change default pdf viewer to ggv
96ae90
96ae90
* Tue Sep  7 2004 Alexander Larsson <alexl@redhat.com> - 0.15-4
96ae90
- Fixed evo desktop file reference in defaults.list
96ae90
96ae90
* Mon Sep  6 2004 Caolan McNamara <caolanm@redhat.com> - 0.15-3
96ae90
- wpd can be opened in abiword, but not in openoffice.org (#114907)
96ae90
96ae90
* Fri Sep  3 2004 Alexander Larsson <alexl@redhat.com> - 0.15-2
96ae90
- Add list of default apps (#131643)
96ae90
96ae90
* Mon Aug 30 2004 Jonathan Blandford <jrb@redhat.com> 0.15-1
96ae90
- bump version
96ae90
96ae90
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
96ae90
- rebuilt
96ae90
96ae90
* Mon Mar 22 2004 Alex Larsson <alexl@redhat.com> 0.14-1
96ae90
- update to 0.14
96ae90
96ae90
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
96ae90
- rebuilt
96ae90
96ae90
* Mon Jan 26 2004 Alexander Larsson <alexl@redhat.com> 0.13-1
96ae90
- 0.13
96ae90
96ae90
* Fri Jan 16 2004 Alexander Larsson <alexl@redhat.com> mime-info
96ae90
- Initial build.