c0c808
%global _changelog_trimtime %(date +%s -d "1 year ago")
c0c808
c0c808
%if 0%{?fedora} > 12 || 0%{?rhel} > 7
c0c808
%global with_python3 1
c0c808
%else
c0c808
%global with_python3 0
c0c808
%endif
c0c808
c0c808
%if %{with_python3}
c0c808
%global __python %{__python3}
c0c808
%endif
c0c808
c0c808
%global glib2_version 2.44
c0c808
%global gtk3_version 3.22.0
c0c808
%global gtksourceview_version 3.22.0
c0c808
%global libpeas_version 1.14.1
c0c808
%global gspell_version 0.2.5
c0c808
%global pygo_version 3.0.0
c0c808
c0c808
Name:		gedit
c0c808
Epoch:		2
c0c808
Version:	3.28.1
c0c808
Release:	3%{?dist}
c0c808
Summary:	Text editor for the GNOME desktop
c0c808
c0c808
License:	GPLv2+ and GFDL
c0c808
URL:		https://wiki.gnome.org/Apps/Gedit
c0c808
Source0:	https://download.gnome.org/sources/%{name}/3.28/%{name}-%{version}.tar.xz
c0c808
c0c808
BuildRequires: gnome-common
c0c808
BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version}
c0c808
BuildRequires: pkgconfig(gobject-introspection-1.0)
c0c808
BuildRequires: pkgconfig(gsettings-desktop-schemas)
c0c808
BuildRequires: pkgconfig(gspell-1) >= %{gspell_version}
c0c808
BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version}
c0c808
BuildRequires: pkgconfig(gtksourceview-3.0) >= %{gtksourceview_version}
c0c808
BuildRequires: pkgconfig(iso-codes)
c0c808
BuildRequires: pkgconfig(libpeas-gtk-1.0) >= %{libpeas_version}
c0c808
BuildRequires: pkgconfig(libxml-2.0)
c0c808
BuildRequires: pkgconfig(pygobject-3.0)
c0c808
BuildRequires: desktop-file-utils
c0c808
BuildRequires: gettext
c0c808
BuildRequires: which
c0c808
BuildRequires: intltool
c0c808
BuildRequires: yelp-tools
c0c808
BuildRequires: itstool
c0c808
BuildRequires: vala
c0c808
%if %{with_python3}
c0c808
BuildRequires: python3-devel
c0c808
BuildRequires: python3-gobject >= %{pygo_version}
c0c808
%else
c0c808
BuildRequires: python-devel
c0c808
%endif
c0c808
BuildRequires: /usr/bin/appstream-util
c0c808
c0c808
Requires: glib2%{?_isa} >= %{glib2_version}
c0c808
Requires: gspell%{?_isa} >= %{gspell_version}
c0c808
Requires: gtk3%{?_isa} >= %{gtk3_version}
c0c808
Requires: gtksourceview3%{?_isa} >= %{gtksourceview_version}
c0c808
%if %{with_python3}
c0c808
Requires: libpeas-loader-python3%{?_isa}
c0c808
Requires: python3-gobject >= %{pygo_version}
c0c808
%endif
c0c808
# the run-command plugin uses zenity
c0c808
Requires: zenity
c0c808
Requires: gsettings-desktop-schemas
c0c808
Requires: gvfs
c0c808
c0c808
# for file triggers
c0c808
Requires: glib2 >= 2.45.4-2
c0c808
Requires: desktop-file-utils >= 0.22-6
c0c808
c0c808
Obsoletes: gedit-collaboration < 3.6.1-6
c0c808
c0c808
%description
c0c808
gedit is a small, but powerful text editor designed specifically for
c0c808
the GNOME desktop. It has most standard text editor functions and fully
c0c808
supports international text in Unicode. Advanced features include syntax
c0c808
highlighting and automatic indentation of source code, printing and editing
c0c808
of multiple documents in one window.
c0c808
c0c808
gedit is extensible through a plugin system, which currently includes
c0c808
support for spell checking, comparing files, viewing CVS ChangeLogs, and
c0c808
adjusting indentation levels. Further plugins can be found in the
c0c808
gedit-plugins package.
c0c808
c0c808
%package devel
c0c808
Summary: Support for developing plugins for the gedit text editor
c0c808
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
c0c808
c0c808
%description devel
c0c808
gedit is a small, but powerful text editor for the GNOME desktop.
c0c808
This package allows you to develop plugins that add new functionality
c0c808
to gedit.
c0c808
c0c808
Install gedit-devel if you want to write plugins for gedit.
c0c808
c0c808
%prep
c0c808
%setup -q
c0c808
c0c808
%build
c0c808
%configure \
c0c808
	--disable-static \
c0c808
	--disable-gtk-doc \
c0c808
	--enable-introspection=yes \
c0c808
%if %{with_python3}
c0c808
    PYTHON=%{__python3} \
c0c808
	--enable-python=yes \
c0c808
%else
c0c808
	--enable-python=no \
c0c808
%endif
c0c808
	--disable-updater \
c0c808
	--enable-gvfs-metadata
c0c808
make %{_smp_mflags}
c0c808
c0c808
%install
c0c808
%make_install
c0c808
c0c808
find $RPM_BUILD_ROOT -name '*.la' -delete
c0c808
c0c808
%find_lang %{name} --with-gnome
c0c808
c0c808
%check
c0c808
appstream-util validate-relax --nonet $RPM_BUILD_ROOT/%{_datadir}/metainfo/org.gnome.gedit.appdata.xml
c0c808
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/org.gnome.gedit.desktop
c0c808
c0c808
%files -f %{name}.lang
c0c808
%doc README AUTHORS
c0c808
%license COPYING
c0c808
%{_datadir}/gedit
c0c808
%{_datadir}/applications/org.gnome.gedit.desktop
c0c808
%{_mandir}/man1/*
c0c808
%if %{with_python3}
c0c808
%{python3_sitearch}/gi/overrides/Gedit.py*
c0c808
%{python3_sitearch}/gi/overrides/__pycache__
c0c808
%endif
c0c808
%{_libexecdir}/gedit
c0c808
%{_libdir}/gedit/girepository-1.0
c0c808
%dir %{_libdir}/gedit
c0c808
%dir %{_libdir}/gedit/plugins
c0c808
%{_libdir}/gedit/libgedit.so
c0c808
%{_libdir}/gedit/plugins/docinfo.plugin
c0c808
%{_libdir}/gedit/plugins/libdocinfo.so
c0c808
%{_libdir}/gedit/plugins/filebrowser.plugin
c0c808
%{_libdir}/gedit/plugins/libfilebrowser.so
c0c808
%{_libdir}/gedit/plugins/modelines.plugin
c0c808
%{_libdir}/gedit/plugins/libmodelines.so
c0c808
%if %{with_python3}
c0c808
%{_libdir}/gedit/plugins/externaltools.plugin
c0c808
%{_libdir}/gedit/plugins/externaltools
c0c808
%{_libdir}/gedit/plugins/pythonconsole.plugin
c0c808
%{_libdir}/gedit/plugins/pythonconsole
c0c808
%{_libdir}/gedit/plugins/quickopen.plugin
c0c808
%{_libdir}/gedit/plugins/quickopen
c0c808
%{_libdir}/gedit/plugins/snippets.plugin
c0c808
%{_libdir}/gedit/plugins/snippets
c0c808
%endif
c0c808
%{_libdir}/gedit/plugins/sort.plugin
c0c808
%{_libdir}/gedit/plugins/libsort.so
c0c808
%{_libdir}/gedit/plugins/spell.plugin
c0c808
%{_libdir}/gedit/plugins/libspell.so
c0c808
%{_libdir}/gedit/plugins/time.plugin
c0c808
%{_libdir}/gedit/plugins/libtime.so
c0c808
%{_bindir}/*
c0c808
%{_datadir}/GConf/gsettings
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.gschema.xml
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.enums.xml
c0c808
%if %{with_python3}
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.externaltools.gschema.xml
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.pythonconsole.gschema.xml
c0c808
%endif
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.gschema.xml
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.enums.xml
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.time.gschema.xml
c0c808
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.time.enums.xml
c0c808
%{_datadir}/dbus-1/services/org.gnome.gedit.service
c0c808
%{_datadir}/icons/hicolor/*/apps/gedit.png
c0c808
%{_datadir}/icons/hicolor/symbolic/apps/gedit-symbolic.svg
c0c808
%{_datadir}/metainfo/org.gnome.gedit.appdata.xml
c0c808
c0c808
%files devel
c0c808
%{_includedir}/gedit-3.14
c0c808
%{_libdir}/pkgconfig/gedit.pc
c0c808
%{_datadir}/gtk-doc
c0c808
%{_datadir}/vala/
c0c808
c0c808
%changelog
c0c808
* Wed Aug 01 2018 Charalampos Stratakis <cstratak@redhat.com> - 2:3.28.1-3
c0c808
- Fix python shebangs
c0c808
c0c808
* Tue Jun 26 2018 Charalampos Stratakis <cstratak@redhat.com> - 2:3.28.1-2
c0c808
- Enable python3 on RHEL8
c0c808
c0c808
* Mon Apr 09 2018 Kalev Lember <klember@redhat.com> - 2:3.28.1-1
c0c808
- Update to 3.28.1
c0c808
c0c808
* Mon Mar 12 2018 Kalev Lember <klember@redhat.com> - 2:3.28.0-1
c0c808
- Update to 3.28.0
c0c808
c0c808
* Sun Mar 11 2018 Kalev Lember <klember@redhat.com> - 2:3.27.92-2
c0c808
- Rebuilt for gspell 1.8
c0c808
c0c808
* Mon Mar 05 2018 Kalev Lember <klember@redhat.com> - 2:3.27.92-1
c0c808
- Update to 3.27.92
c0c808
c0c808
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.22.1-4
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c0c808
c0c808
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2:3.22.1-3
c0c808
- Remove obsolete scriptlets
c0c808
c0c808
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.22.1-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c0c808
c0c808
* Mon Jul 31 2017 Kalev Lember <klember@redhat.com> - 2:3.22.1-1
c0c808
- Update to 3.22.1
c0c808
c0c808
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.22.0-5
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c0c808
c0c808
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.22.0-4
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c0c808
c0c808
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2:3.22.0-3
c0c808
- Rebuild for Python 3.6
c0c808
c0c808
* Thu Sep 22 2016 Kalev Lember <klember@redhat.com> - 2:3.22.0-2
c0c808
- BR vala instead of obsolete vala-tools subpackage
c0c808
c0c808
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 2:3.22.0-1
c0c808
- Update to 3.22.0
c0c808
- Don't set group tags
c0c808
c0c808
* Sun Aug 21 2016 Kalev Lember <klember@redhat.com> - 2:3.21.90-1
c0c808
- Update to 3.21.90
c0c808
c0c808
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.20.2-2
c0c808
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
c0c808
c0c808
* Sun May 08 2016 Kalev Lember <klember@redhat.com> - 2:3.20.2-1
c0c808
- Update to 3.20.2
c0c808
c0c808
* Fri Apr 01 2016 Kalev Lember <klember@redhat.com> - 2:3.20.1-1
c0c808
- Update to 3.20.1
c0c808
c0c808
* Sun Mar 20 2016 Kalev Lember <klember@redhat.com> - 2:3.20.0-1
c0c808
- Update to 3.20.0
c0c808
c0c808
* Mon Mar 14 2016 Kalev Lember <klember@redhat.com> - 2:3.19.5-1
c0c808
- Update to 3.19.5
c0c808
c0c808
* Tue Feb 16 2016 David King <amigadave@amigadave.com> - 3.19.4-1
c0c808
- Update to 3.19.4
c0c808
c0c808
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.19.3-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c0c808
c0c808
* Wed Jan 20 2016 Kalev Lember <klember@redhat.com> - 2:3.19.3-1
c0c808
- Update to 3.19.3
c0c808
c0c808
* Mon Dec 14 2015 Kalev Lember <klember@redhat.com> - 2:3.19.2-1
c0c808
- Update to 3.19.2
c0c808
c0c808
* Mon Dec 07 2015 Kalev Lember <klember@redhat.com> - 2:3.19.1-1
c0c808
- Update to 3.19.1
c0c808
c0c808
* Thu Nov 12 2015 Kalev Lember <klember@redhat.com> - 2:3.18.2-1
c0c808
- Update to 3.18.2
c0c808
c0c808
* Wed Nov 11 2015 Kalev Lember <klember@redhat.com> - 2:3.18.1-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
c0c808
c0c808
* Mon Oct 12 2015 Kalev Lember <klember@redhat.com> - 2:3.18.1-1
c0c808
- Update to 3.18.1
c0c808
c0c808
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 2:3.18.0-1
c0c808
- Update to 3.18.0
c0c808
c0c808
* Mon Sep 14 2015 Kalev Lember <klember@redhat.com> - 2:3.17.92-1
c0c808
- Update to 3.17.92
c0c808
c0c808
* Tue Aug 18 2015 Kalev Lember <klember@redhat.com> - 2:3.17.90-1
c0c808
- Update to 3.17.90
c0c808
- Use make_install macro
c0c808
c0c808
* Fri Aug 14 2015 Matthias Clasen <mclasen@redhat.com> - 2:3.17.2-2
c0c808
- Rely on file triggers for schemas and desktop files
c0c808
c0c808
* Mon Jul 20 2015 David King <amigadave@amigadave.com> - 2:3.17.2-1
c0c808
- Update to 3.17.2
c0c808
- Preserve timestamps during install
c0c808
c0c808
* Fri Jul 03 2015 Kalev Lember <klember@redhat.com> - 2:3.17.1-2
c0c808
- Require libpeas-loader-python3 for Python 3 plugin support (#1226879)
c0c808
c0c808
* Tue Jun 23 2015 David King <amigadave@amigadave.com> - 2:3.17.1-1
c0c808
- Update to 3.17.1
c0c808
- Update URL
c0c808
c0c808
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.17.0-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c0c808
c0c808
* Fri May 01 2015 Kalev Lember <kalevlember@gmail.com> - 2:3.17.0-1
c0c808
- Update to 3.17.0
c0c808
c0c808
* Sun Apr 12 2015 Kalev Lember <kalevlember@gmail.com> - 2:3.16.1-1
c0c808
- Update to 3.16.1
c0c808
c0c808
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 2:3.16.0-1
c0c808
- Update to 3.16.0
c0c808
c0c808
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 2:3.15.92-1
c0c808
- Update to 3.15.92
c0c808
- Tighten deps with the _isa macro
c0c808
c0c808
* Tue Mar 03 2015 Kalev Lember <kalevlember@gmail.com> - 2:3.15.91-1
c0c808
- Update to 3.15.91
c0c808
c0c808
* Wed Feb 18 2015 David King <amigadave@amigadave.com> - 2:3.15.90-1
c0c808
- Update to 3.15.90
c0c808
- Use pkgconfig for BuildRequires
c0c808
- Use license macro for COPYING
c0c808
- Validate AppData in check
c0c808
c0c808
* Tue Jan 20 2015 Richard Hughes <rhughes@redhat.com> - 2:3.15.1-1
c0c808
- Update to 3.15.1
c0c808
c0c808
* Thu Dec 04 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.14.2-1
c0c808
- Update to 3.14.2
c0c808
c0c808
* Mon Nov 10 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.14.1-1
c0c808
- Update to 3.14.1
c0c808
c0c808
* Sat Nov 01 2014 Richard Hughes <rhughes@redhat.com> - 2:3.14.0-3
c0c808
- Fix compile on RHEL
c0c808
c0c808
* Sun Sep 28 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.14.0-2
c0c808
- Obsolete retired gedit-collaboration
c0c808
c0c808
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.14.0-1
c0c808
- Update to 3.14.0
c0c808
c0c808
* Tue Aug 19 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.13.91-1
c0c808
- Update to 3.13.91
c0c808
c0c808
* Tue Aug 19 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.13.90-1
c0c808
- Update to 3.13.90
c0c808
c0c808
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.13.5-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c0c808
c0c808
* Tue Aug 12 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.13.5-1
c0c808
- Update to 3.13.5
c0c808
c0c808
* Tue Jul 29 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.13.4-1
c0c808
- Update to 3.13.4
c0c808
c0c808
* Wed Jul 23 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.13.3-1
c0c808
- Update to 3.13.3
c0c808
c0c808
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.13.2-3
c0c808
- Rebuilt for gobject-introspection 1.41.4
c0c808
c0c808
* Tue Jul 15 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.13.2-2
c0c808
- Backport a fix for a crash at startup with gtk3 3.13.4
c0c808
c0c808
* Tue Jun 24 2014 Richard Hughes <rhughes@redhat.com> - 2:3.13.2-1
c0c808
- Update to 3.13.2
c0c808
c0c808
* Wed Jun 18 2014 Richard Hughes <rhughes@redhat.com> - 2:3.13.1-1
c0c808
- Update to 3.13.1
c0c808
c0c808
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.12.2-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c0c808
c0c808
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.12.2-1
c0c808
- Update to 3.12.2
c0c808
c0c808
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.12.1-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
c0c808
c0c808
* Tue Apr 15 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.12.1-1
c0c808
- Update to 3.12.1
c0c808
c0c808
* Sat Apr 05 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.12.0-2
c0c808
- Update dep versions
c0c808
c0c808
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 2:3.12.0-1
c0c808
- Update to 3.12.0
c0c808
c0c808
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 2:3.11.92-1
c0c808
- Update to 3.11.92
c0c808
c0c808
* Wed Mar 05 2014 Richard Hughes <rhughes@redhat.com> - 2:3.11.91-1
c0c808
- Update to 3.11.91
c0c808
c0c808
* Thu Feb 20 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.11.90-2
c0c808
- Enable vala support
c0c808
c0c808
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 2:3.11.90-1
c0c808
- Update to 3.11.90
c0c808
c0c808
* Thu Feb 06 2014 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.11.3-1
c0c808
- Update to 3.11.3
c0c808
c0c808
* Mon Jan 13 2014 Richard Hughes <rhughes@redhat.com> - 2:3.11.2-1
c0c808
- Update to 3.11.2
c0c808
c0c808
* Wed Oct 30 2013 Richard Hughes <rhughes@redhat.com> - 2:3.11.1-1
c0c808
- Update to 3.11.1
c0c808
c0c808
* Mon Oct 28 2013 Richard Hughes <rhughes@redhat.com> - 2:3.10.1-1
c0c808
- Update to 3.10.1
c0c808
c0c808
* Tue Sep 24 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.10.0-1
c0c808
- Update to 3.10.0
c0c808
c0c808
* Wed Sep 18 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.9.92-1
c0c808
- Update to 3.9.92
c0c808
- Include the appdata file
c0c808
c0c808
* Wed Sep 04 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.9.91-1
c0c808
- Update to 3.9.91
c0c808
c0c808
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.9.90-1
c0c808
- Update to 3.9.90
c0c808
c0c808
* Wed Aug 07 2013 Adam Williamson <awilliam@redhat.com> - 2:3.9.4-1
c0c808
- Update to 3.9.4
c0c808
c0c808
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.9.3-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c0c808
c0c808
* Tue Jul 02 2013 Adam Williamson <awilliam@redhat.com> - 2:3.9.3-1
c0c808
- Update to 3.9.3
c0c808
c0c808
* Sat Jun 22 2013 Matthias Clasen <mclasen@redhat.com> - 2:3.9.2-2
c0c808
- Trim %%changelog
c0c808
c0c808
* Tue Jun 18 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.9.2-1
c0c808
- Update to 3.9.2
c0c808
c0c808
* Tue Jun 04 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.9.1-1
c0c808
- Update to 3.9.1
c0c808
c0c808
* Mon May 13 2013 Richard Hughes <rhughes@redhat.com> - 2:3.8.2-1
c0c808
- Update to 3.8.2
c0c808
c0c808
* Mon May  6 2013 Marek Kasik <mkasik@redhat.com> - 2:3.8.1-3
c0c808
- Make usage of Zeitgeist and python3 conditional
c0c808
c0c808
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.8.1-1
c0c808
- Update to 3.8.1
c0c808
c0c808
* Mon Mar 25 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.8.0-2
c0c808
- Rebuilt for gtksourceview3 soname bump
c0c808
c0c808
* Mon Mar 25 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.8.0-1
c0c808
- Update to 3.8.0
c0c808
c0c808
* Wed Mar 20 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.6-1
c0c808
- Update to 3.7.6
c0c808
c0c808
* Wed Mar 06 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.5-1
c0c808
- Update to 3.7.5
c0c808
c0c808
* Tue Feb 19 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.4-1
c0c808
- Update to 3.7.4
c0c808
c0c808
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.7.3-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c0c808
c0c808
* Thu Jan 17 2013 Matthias Clasen <mclasen@redhat.com> - 2:3.7.3-2
c0c808
- Make zeitgeist optional
c0c808
c0c808
* Mon Jan 07 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.3-1
c0c808
- Update to 3.7.3
c0c808
c0c808
* Mon Nov 05 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.1-1
c0c808
- Update to 3.7.1
c0c808
c0c808
* Tue Oct 16 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.6.1-1
c0c808
- Update to 3.6.1
c0c808
c0c808
* Tue Sep 25 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.6.0-1
c0c808
- Update to 3.6.0
c0c808
c0c808
* Wed Sep 19 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.5.3-1
c0c808
- Update to 3.5.3
c0c808
c0c808
* Fri Aug 31 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.5.2-1
c0c808
- Update to 3.5.2
c0c808
c0c808
* Sat Jul 21 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.5.1-1
c0c808
- Update to 3.5.1
c0c808
c0c808
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.4.2-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c0c808
c0c808
* Thu May 24 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.4.2-1
c0c808
- Update to 3.4.2
c0c808
- Adjust for libgedit-private.so location change
c0c808
c0c808
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.4.1-2
c0c808
- Silence rpm scriptlet output
c0c808
c0c808
* Mon Apr 16 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.4.1-1
c0c808
- Update to 3.4.1
c0c808
c0c808
* Tue Mar 27 2012 Richard Hughes <hughsient@gmail.com> - 2:3.4.0-1
c0c808
- Update to 3.4.0
c0c808
c0c808
* Wed Mar 07 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.7-1
c0c808
- Update to 3.3.7
c0c808
c0c808
* Mon Mar 05 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.6-1
c0c808
- Update to 3.3.6
c0c808
c0c808
* Fri Mar 02 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.5-1
c0c808
- Update to 3.3.5
c0c808
c0c808
* Thu Feb 23 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.4-1
c0c808
- Update to 3.3.4
c0c808
c0c808
* Tue Feb 07 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.3-1
c0c808
- Update to 3.3.3
c0c808
c0c808
* Sun Jan 08 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.2-1
c0c808
- Update to 3.3.2
c0c808
c0c808
* Sat Dec 17 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.1-1
c0c808
- Update to 3.3.1
c0c808
c0c808
* Thu Dec 08 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.5-1
c0c808
- Update to 3.2.5
c0c808
c0c808
* Thu Dec 08 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.4-1
c0c808
- Update to 3.2.4
c0c808
c0c808
* Tue Nov 15 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.3-1
c0c808
- Update to 3.2.3
c0c808
c0c808
* Tue Nov 01 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.2-1
c0c808
- Update to 3.2.2
c0c808
c0c808
* Sun Oct 16 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.1-1
c0c808
- Update to 3.2.1
c0c808
c0c808
* Mon Sep 26 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.0-1
c0c808
- Update to 3.2.0
c0c808
c0c808
* Tue Sep 20 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.6-1
c0c808
- Update to 3.1.6
c0c808
c0c808
* Tue Sep 06 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.5-1
c0c808
- Update to 3.1.5
c0c808
c0c808
* Tue Aug 30 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.4-1
c0c808
- Update to 3.1.4
c0c808
c0c808
* Thu Aug 04 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.3-1
c0c808
- Update to 3.1.3
c0c808
- Add patch to not include the unity quicklist on the desktop file.
c0c808
c0c808
* Tue Jul 05 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.2-1
c0c808
- Update to 3.1.2
c0c808
c0c808
* Mon Jun 20 2011 Tomas Bzatek <tbzatek@redhat.com> - 2:3.1.1-2
c0c808
- Fix Requires of the zeitgeist subpackage
c0c808
c0c808
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 2:3.1.1-1
c0c808
- Update to 3.1.1
c0c808
- New gedit-zeitgeist subpackage
c0c808
c0c808
* Wed May 25 2011 Dan Williams <dcbw@redhat.com> 2:3.0.2-2
c0c808
- Fix double-free when searching
c0c808
c0c808
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 2:3.0.2-1
c0c808
- Update to 3.0.2
c0c808
c0c808
* Tue Apr 12 2011 Christopher Aillon <caillon@redhat.com> 2:3.0.1-1
c0c808
- Update to 3.0.1
c0c808
c0c808
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> 2:3.0.0-1
c0c808
- Update to 3.0.0
c0c808
c0c808
* Mon Mar 28 2011 Dan Williams <dcbw@redhat.com> 2:2.91.11-1
c0c808
- Re-enable python plugins
c0c808
c0c808
* Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.11-1
c0c808
- Update to 2.91.11
c0c808
c0c808
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.10-2
c0c808
- The epoch got messed up by accident
c0c808
c0c808
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.10-1
c0c808
- Update to 2.91.10
c0c808
c0c808
* Tue Mar  8 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.8-1
c0c808
- Update to 2.91.8
c0c808
c0c808
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.7-1
c0c808
- Update to 2.91.7
c0c808
c0c808
* Fri Feb 11 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.6-3
c0c808
- Rebuild against newer gtk
c0c808
c0c808
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.91.6-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c0c808
c0c808
* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.19.6-1
c0c808
- Update to 2.91.6
c0c808
c0c808
* Mon Jan 31 2011 Dan Williams <dcbw@redhat.com> - 2:2.91.5-5
c0c808
- Remove patch for (bgo #640215); problem fixed elsewhere
c0c808
c0c808
* Fri Jan 21 2011 Dan Williams <dcbw@redhat.com> - 2:2.91.5-4
c0c808
- Fix crash on quit due to use-after-free (bgo #640215)
c0c808
c0c808
* Fri Jan 14 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.5-3
c0c808
- Clean up python dependencies
c0c808
c0c808
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.5-2
c0c808
- Make epoch match what it should be (again !)
c0c808
c0c808
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.5-1
c0c808
- Update to 2.91.5
c0c808
c0c808
* Sat Jan  8 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.4-1
c0c808
- Update to 2.91.4
c0c808
c0c808
* Fri Dec  3 2010 Tomas Bzatek <tbzatek@redhat.com> - 2:2.91.3-1
c0c808
- Update to 2.91.3
c0c808
c0c808
* Thu Nov 11 2010 Dan Williams <dcbw@redhat.com> - 2:2.91.2-1
c0c808
- Update to 2.91.2
c0c808
c0c808
* Thu Nov  4 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.91.1-2
c0c808
- Make the epoch match what it should be
c0c808
c0c808
* Wed Nov  3 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.91.1-1
c0c808
- Update to 2.91.1
c0c808
- Fix Requires in gedit-devel
c0c808
c0c808
* Thu Oct  7 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.91.0-1
c0c808
- Update to 2.91.0
c0c808
c0c808
* Mon Aug 23 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.31.6-4
c0c808
- Co-own /usr/share/gtk-doc
c0c808
c0c808
* Wed Aug 11 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.31.6-3
c0c808
- Bump epoch to stay ahead of F14
c0c808
c0c808
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 1:2.31.6-2
c0c808
- recompiling .py files against Python 2.7 (rhbz#623307)
c0c808
c0c808
* Thu Aug  5 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
c0c808
- Update to 2.31.6
c0c808
c0c808
* Tue Jul 13 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-1
c0c808
- Update to 2.31.5
c0c808
c0c808
* Tue Jun  8 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.3-1
c0c808
- Update to 2.31.3
c0c808
c0c808
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
c0c808
- Update to 2.31.2
c0c808
c0c808
* Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.1-1
c0c808
- Update to 2.31.1
c0c808
c0c808
* Sun Apr 18 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.2-1
c0c808
- Update to 2.30.2
c0c808
- Use GConf macros
c0c808
c0c808
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
c0c808
- Update to 2.30.0
c0c808
c0c808
* Sun Mar 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.9-1
c0c808
- Update to 2.29.9
c0c808
c0c808
* Mon Mar  8 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.8-2
c0c808
- Fix some "(null)" error messages
c0c808
c0c808
* Tue Mar  2 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.8-1
c0c808
- Update to 2.29.8
c0c808
c0c808
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.7-1
c0c808
- Update to 2.29.7
c0c808
c0c808
* Wed Feb 10 2010 Bastien Nocera <bnocera@redhat.com> 2.29.6-1
c0c808
- Update to 2.29.6
c0c808
c0c808
* Tue Jan 26 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.29.5-1
c0c808
- Update to 2.29.5
c0c808
c0c808
* Wed Jan 13 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.29.4-1
c0c808
- Update to 2.29.4
c0c808
c0c808
* Thu Dec  3 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.29.3-3
c0c808
- Don't ship .la files
c0c808
c0c808
* Tue Dec  1 2009 Brian Pepple <bpepple@fedoraproject.org> - 1:2.29.3-2
c0c808
- Rebase fix python path patch.
c0c808
c0c808
* Tue Dec 01 2009 Bastien Nocera <bnocera@redhat.com> 2.29.3-1
c0c808
- Update to 2.29.3
c0c808
c0c808
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.28.0-1
c0c808
- Update to 2.28.0
c0c808
c0c808
* Mon Sep  7 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.6-1
c0c808
- Update to 2.27.6
c0c808
c0c808
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.5-1
c0c808
- Update to 2.27.5
c0c808
c0c808
* Sat Aug 22 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.4-2
c0c808
- Respect button-images setting
c0c808
c0c808
* Tue Aug 11 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.4-1
c0c808
- Update to 2.27.4
c0c808
c0c808
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.3-1
c0c808
- Update to 2.27.3
c0c808
c0c808
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.27.2-3
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c0c808
c0c808
* Thu Jul 16 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.2-2
c0c808
- Make some stubborn buttons behave
c0c808
c0c808
* Tue Jun 30 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.2-1
c0c808
- Update to 2.27.2
c0c808
c0c808
* Fri Jun 26 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.1-2
c0c808
- Improve print-to-file
c0c808
c0c808
* Sun May 31 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.1-1
c0c808
- Update to 2.27.1
c0c808
c0c808
* Wed May 20 2009 Ray Strode <rstrode@redhat.com> 2.26.2-1
c0c808
- Update to 2.26.2
c0c808
c0c808
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.26.1-2
c0c808
- Don't drop schemas translations from po files
c0c808
c0c808
* Mon Apr 13 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.26.1-1
c0c808
- Update to 2.26.1
c0c808
- See http://download.gnome.org/sources/gedit/2.26/gedit-2.26.1.news
c0c808
c0c808
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.26.0-1
c0c808
- Update to 2.26.0
c0c808
c0c808
* Mon Mar  2 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.8-1
c0c808
- Update to 2.25.8
c0c808
c0c808
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.25.7-2
c0c808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c0c808
c0c808
* Wed Feb 18 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.7-1
c0c808
- Update to 2.25.7
c0c808
c0c808
* Tue Feb  3 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.6-1
c0c808
- Update to 2.25.6
c0c808
c0c808
* Mon Jan 26 2009 Ray Strode <rstrode@redhat.com> - 1:2.25.5-3
c0c808
- Different, more functional fix for bug 481556.
c0c808
c0c808
* Mon Jan 26 2009 Ray Strode <rstrode@redhat.com> - 1:2.25.5-2
c0c808
- Fix up python plugin path to close up a security attack
c0c808
  vectors (bug 481556).
c0c808
c0c808
* Tue Jan 20 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.5-1
c0c808
- Update to 2.25.5
c0c808
c0c808
* Tue Jan  6 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.4-2
c0c808
- Update to 2.25.4
c0c808
c0c808
* Mon Jan 05 2009 - Bastien Nocera <bnocera@redhat.com> - 1:2.25.2-3
c0c808
- Remove some unneeded dependencies
c0c808
c0c808
* Thu Dec  4 2008 Matthias Clasen <mclasen@redhat.com>
c0c808
- Rebuild for Python 2.6 
c0c808
c0c808
* Thu Dec  4 2008 Matthias Clasen <mclasen@redhat.com>
c0c808
- Update to 2.25.2
c0c808
c0c808
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1:2.24.1-4
c0c808
- Rebuild for Python 2.6
c0c808
c0c808
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.1-3
c0c808
- Better URL
c0c808
c0c808
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.1-2
c0c808
- Improve %%summmary and %%description
c0c808
c0c808
* Tue Nov  4 2008 Ray Strode <rstrode@redhat.com> - 1:2.24.1-1
c0c808
- Update to 2.24.1 (bug 469934)
c0c808
c0c808
* Wed Oct 15 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.0-4
c0c808
- Save some more space
c0c808
c0c808
* Thu Sep 25 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.0-3
c0c808
- Save some space
c0c808
c0c808
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.0-2
c0c808
- Update to 2.24.0
c0c808
c0c808
* Mon Sep  8 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.92-1
c0c808
- Update to 2.23.92
c0c808
c0c808
* Tue Sep  2 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.91-1
c0c808
- Update to 2.23.91
c0c808
c0c808
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.90-1
c0c808
- Update to 2.23.90
c0c808
c0c808
* Wed Aug 13 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.3-2
c0c808
- Finally drop the vendor prefix, since it broke things again
c0c808
c0c808
* Wed Aug 13 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.3-1
c0c808
- Update to 2.23.3
c0c808
c0c808
* Sat Aug  9 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.1-3
c0c808
- One more icon name fix
c0c808
c0c808
* Wed Jul  9 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.1-2
c0c808
- Use standard icon names
c0c808
c0c808
* Tue May 13 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.1-1
c0c808
- Update to 2.23.1
c0c808
c0c808
* Tue Apr 08 2008 - Bastien Nocera <bnocera@redhat.com> - 1:2.22.1-1
c0c808
- Update to 2.22.1
c0c808
c0c808
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.22.0-1
c0c808
- Update to 2.22.0
c0c808
c0c808
* Thu Mar  6 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.2-2
c0c808
- Don't OnlyShowIn=GNOME
c0c808
c0c808
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.2-1
c0c808
- Update to 2.21.2
c0c808
c0c808
* Fri Feb 15 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.1-3
c0c808
- Drop libgnomeprint22 BR
c0c808
c0c808
* Sat Feb  2 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.1-2
c0c808
- Require zenity (#253815)
c0c808
c0c808
* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.1-1
c0c808
- Update to 2.21.1
c0c808
c0c808
* Tue Nov 27 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.4-1
c0c808
- Update to 2.20.4
c0c808
c0c808
* Sun Nov 18 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.2-3
c0c808
- Fix the license field
c0c808
c0c808
* Tue Nov 13 2007 Florian La Roche <laroche@redhat.com> - 1:2.20.2-2
c0c808
- define pango_version
c0c808
c0c808
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.2-1
c0c808
- Update to 2.20.2 (bug fixes and translation updates)
c0c808
c0c808
* Wed Sep 26 2007 Ray Strode <rstrode@redhat.com> - 1:2.20.1-1
c0c808
- Update to 2.20.1 at the request of upstream
c0c808
c0c808
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.0-1
c0c808
- Update to 2.20.0
c0c808
c0c808
* Fri Sep 14 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.92-1
c0c808
- Update to 2.19.92
c0c808
c0c808
* Tue Sep  4 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.91-1
c0c808
- Update to 2.19.91
c0c808
c0c808
* Wed Aug 15 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.90-1
c0c808
- Update to 2.19.90
c0c808
- %%find_lang also finds omf files now
c0c808
c0c808
* Tue Aug  7 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.3-3
c0c808
- Remove a stale comment
c0c808
c0c808
* Mon Aug  6 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.3-2
c0c808
- Update license field
c0c808
- Use %%find_lang for help files
c0c808
c0c808
* Wed Aug  1 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.3-1
c0c808
- Update to 2.19.3
c0c808
c0c808
* Thu Jul 19 2007 Jeremy Katz <katzj@redhat.com> - 1:2.19.2-2
c0c808
- fix requires to be on pygtksoureview
c0c808
c0c808
* Tue Jul 10 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.2-1
c0c808
- Update to 2.19.2
c0c808
- Require gtksourceview2
c0c808
c0c808
* Mon Jun 25 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.1-1
c0c808
- Update to 2.19.1
c0c808
c0c808
* Sun May 20 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.1-1
c0c808
- Update to 2.18.1
c0c808
c0c808
* Sat May  5 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.0-3
c0c808
- Add enchant-devel and iso-codes-devel BRs to build
c0c808
  with spell-checking support (#227477)
c0c808
c0c808
* Tue Mar 27 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.0-2
c0c808
- Reduce the size of the tags files
c0c808
c0c808
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.0-1
c0c808
- Update to 2.18.0
c0c808
c0c808
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.6-1
c0c808
- Update to 2.17.6
c0c808
c0c808
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.5-1
c0c808
- Update to 2.17.5
c0c808
c0c808
* Tue Jan 23 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.4-1
c0c808
- Update to 2.17.4
c0c808
c0c808
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.3-1
c0c808
- Update to 2.17.3
c0c808
c0c808
* Wed Dec 20 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.17.2-1
c0c808
- Update to 2.17.2
c0c808
c0c808
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 1:2.17.1-2
c0c808
- rebuild for python 2.5
c0c808
c0c808
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.17.1-1
c0c808
- Update to 2.17.1
c0c808
c0c808
* Mon Dec  4 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.2-3
c0c808
- Add BuildRequires for libattr-devel
c0c808
c0c808
* Thu Nov 30 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.2-2
c0c808
- Small accessibility improvements
c0c808
c0c808
* Sat Nov  4 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.2-1
c0c808
- Update to 2.16.2
c0c808
c0c808
* Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.1-1
c0c808
- Update to 2.16.1
c0c808
c0c808
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.0-4
c0c808
- Fix scripts according to packaging guidelines
c0c808
c0c808
* Fri Sep  8 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.0-3
c0c808
- Fix directory ownership issues (#205675)
c0c808
c0c808
* Tue Sep  5 2006 Ray Strode <rstrode@redhat.com> - 1:2.16.0-2.fc6
c0c808
- Fix up dependencies a bit
c0c808
c0c808
* Tue Sep  5 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.0-1.fc6
c0c808
- Update to 2.16.0
c0c808
- Require pkgconfig for the -devel package
c0c808
c0c808
* Sun Aug 27 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.9-1.fc6
c0c808
- Update to 2.15.9
c0c808
- Add BR for perl-XML-Parser
c0c808
c0c808
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.8-1.fc6
c0c808
- Update to 2.15.8
c0c808
c0c808
* Mon Aug 14 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.7-1.fc6
c0c808
- Update to 2.15.7
c0c808
c0c808
* Sat Aug 12 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.6-2.fc6
c0c808
- Bump gtksourceview requirement
c0c808
c0c808
* Sat Aug 12 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.6-1.fc6
c0c808
- Update to 2.15.6
c0c808
c0c808
* Thu Aug 10 2006 Ray Strode <rstrode@redhat.com> - 1:2.15.5-2.fc6
c0c808
- Apply patch from James Antill to copy extended attributes over
c0c808
  when saving files (bug 202099)
c0c808
c0c808
* Thu Aug  3 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.5-1.fc6
c0c808
- Update to 2.15.5
c0c808
c0c808
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.4-1
c0c808
- Update to 2.15.4
c0c808
c0c808
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:2.15.3-1.1
c0c808
- rebuild
c0c808
c0c808
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> 2.15.3-1
c0c808
- Update to 2.15.3
c0c808
c0c808
* Wed May 17 2006 Matthias Clasen <mclasen@redhat.com> 2.15.2-1
c0c808
- Update to 2.15.2
c0c808
c0c808
* Sat May 13 2006 Dan Williams <dcbw@redhat.com> - 2.15.1-2
c0c808
- Work around gnome.org #341055 (gedit doesn't remember previous open/save dir)
c0c808
c0c808
* Tue May  9 2006 Matthias Clasen <mclasen@redhat.com> 2.15.1-1
c0c808
- Update to 2.15.1
c0c808
c0c808
* Mon Apr 10 2006 Matthias Clasen <mclasen@redhat.com> 2.14.2-2
c0c808
- Update to 2.14.2
c0c808
c0c808
* Thu Mar 16 2006 Matthias Clasen <mclasen@redhat.com> 2.14.1-1
c0c808
- Update to 2.14.1
c0c808
c0c808
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> 2.14.0-1
c0c808
- Update to 2.14.0
c0c808
c0c808
* Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 2.13.92-2	
c0c808
- BuildRequire: gnome-doc-utils
c0c808
c0c808
* Sun Feb 26 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.92-1
c0c808
- Update to 2.13.92
c0c808
c0c808
* Wed Feb 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.91-1
c0c808
- Update to 2.13.91
c0c808
c0c808
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:2.13.90-3.1
c0c808
- bump again for double-long bug on ppc(64)
c0c808
c0c808
* Mon Feb  6 2006 John (J5) Palmieri <johnp@redhat.com> - 1:2.13.90-3
c0c808
- Add dependancy on gnome-python2-desktop
c0c808
c0c808
* Mon Feb  6 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.90-2
c0c808
- Enable python again
c0c808
- Fix multiarch problem
c0c808
c0c808
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.90-1
c0c808
- Update to 2.13.90
c0c808
c0c808
* Thu Jan 26 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.4-1
c0c808
- Update to 2.13.4
c0c808
c0c808
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.3-1
c0c808
- Update to 2.13.3
c0c808
c0c808
* Fri Jan 13 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.2-1
c0c808
- Update to 2.13.2
c0c808
- Update the persistent file selector size patch (again!)
c0c808
c0c808
* Sun Jan  8 2006 Dan Williams <dcbw@redhat.com > - 1:2.13.1-2
c0c808
- Fix up and re-enable persistent file selector size patch
c0c808
c0c808
* Tue Jan  3 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.1-1
c0c808
- Update to 2.13.1
c0c808
- Disable scrollkeeper
c0c808
c0c808
* Wed Dec 21 2005 Jeremy Katz <katzj@redhat.com> - 1:2.13.0-3
c0c808
- fix gedit-devel requirement to include epoch
c0c808
c0c808
* Tue Dec 20 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.0-2
c0c808
- Update requirements
c0c808
c0c808
* Wed Dec 14 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.0-1
c0c808
- Update to 2.13.0
c0c808
- Comment out the fileselector patches for now, these
c0c808
  will need updating for the new-mdi branch
c0c808
c0c808
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
c0c808
- rebuilt
c0c808
c0c808
* Thu Oct  6 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-1
c0c808
- Update to 2.12.1
c0c808
c0c808
* Thu Sep  8 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
c0c808
- Update to 2.12.0
c0c808
c0c808
* Tue Aug 16 2005 Matthias Clasen <mclasen@redhat.com> 
c0c808
- New upstream version
c0c808
c0c808
* Thu Aug  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.10.4-1
c0c808
- New upstream version
c0c808
c0c808
* Wed Aug 03 2005 Ray Strode <rstrode@redhat.com> - 2.10.3-1
c0c808
- Update to upstream version 2.10.3
c0c808
c0c808
* Mon Jun 13 2005 Ray Strode <rstrode@redhat.com> 1:2.10.2-6
c0c808
- Remove some patches that are already upstream 
c0c808
c0c808
* Tue Jun 07 2005 Ray Strode <rstrode@redhat.com> 1:2.10.2-5
c0c808
- Dont pass user input as format specifiers to
c0c808
  gtk_message_dialog_new (bug 159657).
c0c808
c0c808
* Thu Apr 14 2005 John (J5) Palmieri <johnp@redhat.com> - 2.10.2-3
c0c808
- Revert the addition of the gedit icon to the hicolor theme as
c0c808
  the new gnome-icon-theme package does the right thing
c0c808
c0c808
* Tue Apr 12 2005 Matthias Clasen <mclasen@redhat.com> - 2.10.2-2
c0c808
- Add the icon to the hicolor theme, and rename it to what
c0c808
  the .desktop file says.
c0c808
c0c808
* Fri Apr  8 2005 Ray Strode <rstrode@redhat.com> - 2.10.2-1
c0c808
- Update to upstream version 2.10.2
c0c808
c0c808
* Tue Mar 29 2005 Warren Togami <wtogami@redhat.com> - 2.10.0-2
c0c808
- devel req libgnomeprintui22-devel for pkgconfig (#152487)
c0c808
c0c808
* Thu Mar 17 2005 Ray Strode <rstrode@redhat.com> - 2.10.0-1
c0c808
- Update to upstream version 2.10.0
c0c808
c0c808
* Thu Mar  3 2005 Marco Pesenti Gritti <mpg@redhat.com> 1:2.9.7-1
c0c808
- Update to 2.9.7
c0c808
c0c808
* Wed Feb  9 2005 Matthias Clasen <mclasen@redhat.com> 1:2.9.6-1
c0c808
- Update to 2.9.6
c0c808
c0c808
* Sun Jan 30 2005 Matthias Clasen <mclasen@redhat.com> 1:2.9.5-1
c0c808
- Update to 2.9.5
c0c808
c0c808
* Thu Nov  4 2004 Marco Pesenti Gritti <mpg@redhat.com> 1:2.8.1-2
c0c808
- Update the desktop files database. (RH Bug: 135571)
c0c808
c0c808
* Mon Oct 11 2004 Dan Williams <dcbw@redhat.com> 1:2.8.1-1
c0c808
- Update to 2.8.1
c0c808
c0c808
* Wed Sep 22 2004 Dan Williams <dcbw@redhat.com> 1:2.8.0-1
c0c808
- Update to 2.8.0
c0c808
c0c808
* Wed Sep 15 2004 John (J5) Palmieri <johnp@redhat.com> 1:2.7.92-2
c0c808
- Added the spelling plugin to the default gconf schema so that the
c0c808
  tools menu is not empty (RH Bug: 31607)
c0c808
c0c808
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 1:2.7.92-1
c0c808
- update to 2.7.92
c0c808
c0c808
* Wed Aug 18 2004 Dan Williams <dcbw@redhat.com> 1:2.7.91-1
c0c808
- Update to 2.7.91
c0c808
c0c808
* Tue Aug  3 2004 Owen Taylor <otaylor@redhat.com> - 1:2.7.90-1
c0c808
- Upgrade to 2.7.90
c0c808
- Add patch to use Pango font names, not gnome-print font names
c0c808
c0c808
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
c0c808
- rebuilt
c0c808
c0c808
* Sat May 15 2004 Dan Williams <dcbw@redhat.com> 1:2.6.1-1
c0c808
- Upgrade to 2.6.1
c0c808
c0c808
* Fri Apr 16 2004 Dan Williams <dcbw@redhat.com> 1:2.6.0-4
c0c808
- Gnome.org #137825 Gedit crash on Find/Replace dialog close
c0c808
    when hitting escape
c0c808
c0c808
* Tue Apr 13 2004 Warren Togami <wtogami@redhat.com> 1:2.6.0-3
c0c808
- #111156 BR intltool scrollkeeper gettext
c0c808
- #111157 -devel R eel2-devel gtksourceview-devel
c0c808
- rm bogus BR esound
c0c808
c0c808
* Thu Apr 08 2004 Dan Williams <dcbw@redhat.com> 1:2.6.0-2
c0c808
- Fix dumb bug in ~/.recently-used patch where lockf() could
c0c808
    never succeed
c0c808
c0c808
* Wed Mar 31 2004 Dan Williams <dcbw@redhat.com> 1:2.6.0-1
c0c808
- Update to gedit-2.6.0 sources
c0c808
c0c808
* Thu Mar 18 2004 Dan Williams <dcbw@redhat.com> 1:2.5.92-1
c0c808
- Update to gedit-2.5.92 sources
c0c808
c0c808
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
c0c808
- rebuilt
c0c808
c0c808
* Wed Feb 25 2004 Dan Williams <dcbw@redhat.com> 1:2.5.90-1
c0c808
- fix dumbness in the egg-recent file locking patch
c0c808
- Remove the autotools-1.8 patch because it is no longer
c0c808
    needed
c0c808
- Require gtksourceview-devel >= 0.9 due to update to 2.5.90
c0c808
- Update to gedit-2.5.90
c0c808
c0c808
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
c0c808
- rebuilt
c0c808
c0c808
* Wed Feb 11 2004 Dan Williams <dcbw@redhat.com> 1:2.5.3-3
c0c808
- Correctly convert last path from open/save into a directory
c0c808
   for storing in gconf, not a file
c0c808
c0c808
* Fri Feb 06 2004 Dan Williams <dcbw@redhat.com> 1:2.5.3-2
c0c808
- Bring file selector size/last path patch up to 2.5.3
c0c808
- Fix up the recent-files locking algorithm to have finer
c0c808
   resolution timeouts
c0c808
c0c808
* Wed Jan 28 2004 Alexander Larsson <alexl@redhat.com> 1:2.5.3-1
c0c808
- update to 2.5.3
c0c808
c0c808
* Mon Jan 19 2004 Dan Williams <dcbw@redhat.com> 1:2.4.0-5
c0c808
- Work around recent files locking contention when using NFS
c0c808
    home directories (gnome.org #131930)
c0c808
- Make Find and Replace dialogs use a cancel button, so that
c0c808
    pressing escape makes them close (gnome.org #131927)
c0c808
c0c808
* Thu Jan  8 2004 Dan Williams <dcbw@redhat.com> 1:2.4.0-4
c0c808
- Remeber file selector size and last directory on open/save
c0c808
   (gnome.org #123787)
c0c808
- Small hack to work around switch from autotools 1.7 - 1.8
c0c808
c0c808
* Tue Oct 21 2003 Matt Wilson <msw@redhat.com> 1:2.4.0-3 
c0c808
- eel_read_entire_file takes a pointer to an int, not to a gsize
c0c808
  (#103933)
c0c808
c0c808
* Tue Oct  7 2003 Owen Taylor <otaylor@redhat.com> 1:2.4.0-2
c0c808
- Fix bug with multibyte chars in shell-output plugin (#104027, Jens Petersen)
c0c808
- Add missing BuildRequires on eel2, aspell-devel (#87746, Alan Cox)
c0c808
- Add versioned Requires on eel2, libgnomeui (#103363, Jens Petersen)
c0c808
c0c808
* Fri Oct  3 2003 Alexander Larsson <alexl@redhat.com> 1:2.4.0-1
c0c808
- 2.4.0
c0c808
c0c808
* Mon Sep 22 2003 Bill Nottingham <notting@redhat.com> 1:2.3.5-2
c0c808
- fix defattr (#103333)
c0c808
c0c808
* Tue Aug 26 2003 Jonathan Blandford <jrb@redhat.com>
c0c808
- require the new gtksourceview
c0c808
c0c808
* Fri Aug 15 2003 Jonathan Blandford <jrb@redhat.com> 1:2.3.3-1
c0c808
- update for GNOME 2.4
c0c808
c0c808
* Tue Jul 29 2003 Havoc Pennington <hp@redhat.com> 1:2.2.2-2
c0c808
- rebuild
c0c808
c0c808
* Mon Jul  7 2003 Havoc Pennington <hp@redhat.com> 1:2.2.2-1
c0c808
- 2.2.2
c0c808
- fix name of gettext domain
c0c808
- remove recent-monitor patch now upstream
c0c808
c0c808
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
c0c808
- rebuilt
c0c808
c0c808
* Thu May  1 2003 Havoc Pennington <hp@redhat.com> 1:2.2.0-3
c0c808
- patch configure.in for new aspell
c0c808
c0c808
* Mon Apr 28 2003 Tim Powers <timp@redhat.com> 1:2.2.0-2
c0c808
- rebuild to fix broken libpspell deps
c0c808
c0c808
* Tue Feb  4 2003 Alexander Larsson <alexl@redhat.com> 1:2.2.0-1
c0c808
- Update to 2.2.0
c0c808
- Add patch to disable recent files monitoring
c0c808
- Bump libgnomeprint requirements
c0c808
c0c808
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
c0c808
- rebuilt
c0c808
c0c808
* Fri Dec 13 2002 Tim Powers <timp@redhat.com> 1:2.1.4-1
c0c808
- update to 2.1.4
c0c808
c0c808
* Mon Dec  9 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 2.1.3
c0c808
- fix unpackaged files
c0c808
c0c808
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
c0c808
- Add missing bonobo server files (#71261, Taco Witte)
c0c808
- Remove empty NEWS, FAQ files from %%doc (#66079)
c0c808
c0c808
* Thu Aug  1 2002 Havoc Pennington <hp@redhat.com>
c0c808
- fix desktop file really
c0c808
c0c808
* Thu Aug  1 2002 Havoc Pennington <hp@redhat.com>
c0c808
- fix desktop file
c0c808
c0c808
* Mon Jul 29 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 2.0.2
c0c808
- build with new gail
c0c808
c0c808
* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 2.0.1
c0c808
c0c808
* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
c0c808
- 2.0.0, fix missing locale files
c0c808
c0c808
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 1.199.0
c0c808
- use desktop-file-install
c0c808
- remove static libs from plugins dir
c0c808
c0c808
* Sat Jun 08 2002 Havoc Pennington <hp@redhat.com>
c0c808
- rebuild in different environment
c0c808
c0c808
* Wed Jun  5 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 1.121.1
c0c808
c0c808
* Sun May 26 2002 Tim Powers <timp@redhat.com>
c0c808
- automated rebuild
c0c808
c0c808
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
c0c808
- rebuild in different environment
c0c808
c0c808
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 1.120.0
c0c808
c0c808
* Fri May  3 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 1.118.0
c0c808
c0c808
* Fri Apr 19 2002 Havoc Pennington <hp@redhat.com>
c0c808
- move to gnome 2 version
c0c808
c0c808
* Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
c0c808
- fix ko.po
c0c808
c0c808
* Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
c0c808
- get correct po files from elvis 
c0c808
c0c808
* Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
c0c808
- gedit-pofiles.tar.gz, not gedit-po.tar.gz
c0c808
c0c808
* Mon Apr 15 2002 Havoc Pennington <hp@redhat.com>
c0c808
- merge translations
c0c808
c0c808
* Fri Mar 29 2002 Havoc Pennington <hp@redhat.com>
c0c808
- gettextize default font
c0c808
c0c808
* Thu Mar 28 2002 Havoc Pennington <hp@redhat.com>
c0c808
- more multibyte fixes #61948
c0c808
c0c808
* Wed Mar 27 2002 Havoc Pennington <hp@redhat.com>
c0c808
- 0.9.7 for multibyte support
c0c808
c0c808
* Tue Mar 26 2002 Akira TAGOH <tagoh@redhat.com> 0.9.4-11
c0c808
- gedit-0.9.4-printprefs.patch: I forgot to add to POTFILES.in...
c0c808
- gedit-po.tar.gz: added. it's on CVS now.
c0c808
c0c808
* Sun Mar 24 2002 Akira TAGOH <tagoh@redhat.com> 0.9.4-10
c0c808
- gedit-0.9.4-printprefs.patch: fix typo and sanity check.
c0c808
c0c808
* Mon Mar 04 2002 Akira TAGOH <tagoh@redhat.com> 0.9.4-9
c0c808
- Applied a font selector patch for the printing
c0c808
- fix BuildRequires for automake-1.4
c0c808
c0c808
* Mon Jan 28 2002 Havoc Pennington <hp@redhat.com>
c0c808
- rebuild in rawhide
c0c808
- fix up cflags for moved gnome headers
c0c808
c0c808
* Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
c0c808
- add some more build requires
c0c808
c0c808
* Tue Jul 17 2001 Havoc Pennington <hp@redhat.com>
c0c808
- require libglade-devel to build
c0c808
c0c808
* Fri Jun 15 2001 Nalin Dahyabhai <nalin@redhat.com>
c0c808
- rebuild in new environment
c0c808
c0c808
* Fri Feb 23 2001 Akira TAGOH <tagoh@redhat.com>
c0c808
- Fixed preview for !ja locale.
c0c808
c0c808
* Wed Feb 07 2001 Akira TAGOH <tagoh@redhat.com>
c0c808
- Fixed handling fontset. (Bug#24998)
c0c808
- Added print out for multibyte patch.
c0c808
c0c808
* Fri Dec 29 2000 Matt Wilson <msw@redhat.com>
c0c808
- 0.9.4
c0c808
c0c808
* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
c0c808
- Up Epoch and release
c0c808
c0c808
* Wed Aug 09 2000 Jonathan Blandford <jrb@redhat.com>
c0c808
- include glade files so that it will actually work.
c0c808
c0c808
* Tue Aug 01 2000 Jonathan Blandford <jrb@redhat.com>
c0c808
- upgrade package to newer version at request of author.
c0c808
c0c808
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
c0c808
- automatic rebuild
c0c808
c0c808
* Mon Jun 19 2000 Preston Brown <pbrown@redhat.com>
c0c808
- FHS paths
c0c808
c0c808
* Sun Jun 11 2000 Jonathan Blandford <jrb@redhat.com>
c0c808
- update to 0.7.9.  Somewhat untested.
c0c808
c0c808
* Fri Feb 11 2000 Jonathan Blandford <jrb@redhat.com>
c0c808
- removed "reverse search function as it doesn't work.
c0c808
c0c808
* Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
c0c808
- rebuild to gzip man pages
c0c808
c0c808
* Mon Jan 17 2000 Elliot Lee <sopwith@redhat.com>
c0c808
- If I don't put in a log entry here, people will be very upset about not
c0c808
  being able to find out that I am to blame for the 0.6.1 upgrade
c0c808
c0c808
* Mon Aug 16 1999 Michael Fulbright <drmike@redhat.com>
c0c808
- version 0.5.4
c0c808
c0c808
* Sat Feb 06 1999 Michael Johnson <johnsonm@redhat.com>
c0c808
- Cleaned up a bit for Red Hat use
c0c808
c0c808
* Thu Oct 22 1998 Alex Roberts <bse@dial.pipex.com>
c0c808
- First try at an RPM