gnome-settings-daemon/gnome-settings-daemon.spec

896 lines
31 KiB
RPMSpec
Raw Normal View History

2010-05-16 04:03:01 +00:00
Name: gnome-settings-daemon
2012-04-16 15:52:09 +00:00
Version: 3.4.1
2012-02-22 12:45:01 +00:00
Release: 1%{?dist}
2010-05-16 04:03:01 +00:00
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
Group: System Environment/Daemons
License: GPLv2+
URL: http://download.gnome.org/sources/%{name}
2010-03-29 16:24:55 +00:00
#VCS: git:git://git.gnome.org/gnome-settings-daemon
2012-03-26 16:26:41 +00:00
Source: http://download.gnome.org/sources/%{name}/3.4/%{name}-%{version}.tar.xz
2011-11-11 13:04:51 +00:00
# Fedora specific patch
2011-10-24 22:43:12 +00:00
Patch0: gsd-calculator.patch
2008-01-17 18:38:42 +00:00
2009-02-05 04:33:18 +00:00
Requires: control-center-filesystem
2008-01-17 18:38:42 +00:00
2010-05-16 04:03:01 +00:00
BuildRequires: dbus-glib-devel
2011-05-11 15:44:26 +00:00
BuildRequires: gtk3-devel >= 2.99.3
2011-07-25 23:59:34 +00:00
BuildRequires: gnome-desktop3-devel >= 3.1.4
BuildRequires: xorg-x11-proto-devel libXxf86misc-devel
2011-07-04 12:34:56 +00:00
BuildRequires: xorg-x11-proto-devel libXxf86misc-devel
2010-05-16 04:03:01 +00:00
BuildRequires: gstreamer-devel
BuildRequires: gstreamer-plugins-base-devel
BuildRequires: pulseaudio-libs-devel
2010-05-16 04:03:01 +00:00
BuildRequires: libgnomekbd-devel
BuildRequires: libnotify-devel
BuildRequires: gettext intltool
BuildRequires: fontconfig-devel
2010-05-16 04:03:01 +00:00
BuildRequires: libcanberra-devel
2010-06-29 18:28:46 +00:00
BuildRequires: polkit-devel
2011-12-27 18:25:39 +00:00
BuildRequires: autoconf automake libtool
2010-10-06 18:21:34 +00:00
BuildRequires: libxklavier-devel
2011-02-22 06:21:13 +00:00
BuildRequires: gsettings-desktop-schemas-devel >= 0.1.7
2011-02-23 16:49:25 +00:00
BuildRequires: PackageKit-glib-devel
BuildRequires: cups-devel
2011-02-23 17:12:53 +00:00
BuildRequires: upower-devel
2011-02-23 17:32:24 +00:00
BuildRequires: libgudev1-devel
BuildRequires: nss-devel
2011-09-05 09:41:49 +00:00
BuildRequires: colord-devel >= 0.1.12
2011-06-15 16:47:52 +00:00
BuildRequires: lcms2-devel >= 2.2
BuildRequires: libXi-devel libXfixes-devel
2011-12-23 12:17:44 +00:00
BuildRequires: libwacom-devel
2012-02-10 04:46:52 +00:00
BuildRequires: systemd-devel
2012-02-22 13:18:55 +00:00
BuildRequires: libXtst-devel
BuildRequires: xorg-x11-drv-wacom-devel
2009-12-18 16:21:09 +00:00
2008-01-17 18:38:42 +00:00
%description
2008-02-29 22:26:07 +00:00
A daemon to share settings from GNOME to other applications. It also
2008-01-17 18:38:42 +00:00
handles global keybindings, as well as a number of desktop-wide settings.
2010-05-16 04:03:01 +00:00
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: dbus-glib-devel
2008-01-17 18:38:42 +00:00
2010-05-16 04:03:01 +00:00
%description devel
2008-01-17 18:38:42 +00:00
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
2010-11-10 12:42:57 +00:00
%setup -q
2011-11-11 13:04:51 +00:00
%patch0 -p1 -b .calc
2010-05-16 04:19:51 +00:00
2011-12-27 17:47:09 +00:00
autoreconf -i -f
2009-02-05 04:33:18 +00:00
%build
2011-02-23 16:49:25 +00:00
%configure --disable-static \
--enable-profiling \
2012-02-10 04:46:52 +00:00
--enable-packagekit \
--enable-systemd
2008-01-17 18:38:42 +00:00
make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
%find_lang %{name} --with-gnome
2011-01-11 15:07:45 +00:00
mkdir $RPM_BUILD_ROOT%{_libdir}/gnome-settings-daemon-3.0/gtk-modules
2008-01-17 18:38:42 +00:00
%post
2010-02-28 04:25:29 +00:00
touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
2008-01-17 18:38:42 +00:00
%postun
2010-02-28 04:25:29 +00:00
if [ $1 -eq 0 ]; then
touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
fi
2010-02-28 04:25:29 +00:00
%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
2010-02-28 04:25:29 +00:00
2011-01-11 15:07:45 +00:00
2008-01-17 18:38:42 +00:00
%files -f %{name}.lang
2008-02-29 22:26:07 +00:00
%doc AUTHORS COPYING NEWS
2010-05-27 22:08:25 +00:00
%dir %{_sysconfdir}/gnome-settings-daemon
%dir %{_sysconfdir}/gnome-settings-daemon/xrandr
2011-02-23 16:49:25 +00:00
# list plugins explicitly, so we notice if one goes missing
# some of these don't have a separate gschema
%{_libdir}/gnome-settings-daemon-3.0/a11y-keyboard.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/liba11y-keyboard.so
# The automount plugin is a separate executable used in fallback
# mode only
%{_libexecdir}/gnome-fallback-mount-helper
%{_sysconfdir}/xdg/autostart/gnome-fallback-mount-helper.desktop
2011-02-23 16:49:25 +00:00
%{_libdir}/gnome-settings-daemon-3.0/background.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libbackground.so
%{_libdir}/gnome-settings-daemon-3.0/clipboard.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libclipboard.so
%{_libdir}/gnome-settings-daemon-3.0/housekeeping.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libhousekeeping.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/keyboard.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libkeyboard.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.keyboard.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/media-keys.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libmedia-keys.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.media-keys.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/mouse.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libmouse.so
2011-09-06 22:56:22 +00:00
%{_libexecdir}/gsd-backlight-helper
%{_datadir}/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy
%{_libdir}/gnome-settings-daemon-3.0/power.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libpower.so
2011-02-23 16:49:25 +00:00
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.power.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/print-notifications.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libprint-notifications.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/smartcard.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libsmartcard.so
%{_libdir}/gnome-settings-daemon-3.0/sound.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libsound.so
%{_libdir}/gnome-settings-daemon-3.0/updates.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libupdates.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.updates.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/wacom.gnome-settings-plugin
2011-12-23 19:01:43 +00:00
%{_libdir}/gnome-settings-daemon-3.0/libgsdwacom.so
2011-02-23 16:49:25 +00:00
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.peripherals.gschema.xml
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.peripherals.wacom.gschema.xml
2012-03-05 19:38:02 +00:00
%{_libexecdir}/gsd-wacom-led-helper
%{_datadir}/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy
2011-02-23 16:49:25 +00:00
%{_libdir}/gnome-settings-daemon-3.0/xrandr.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libxrandr.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.xrandr.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/xsettings.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libxsettings.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.xsettings.gschema.xml
2011-03-25 17:13:51 +00:00
%{_libdir}/gnome-settings-daemon-3.0/a11y-settings.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/liba11y-settings.so
2011-07-04 12:34:56 +00:00
%{_libdir}/gnome-settings-daemon-3.0/color.gnome-settings-plugin
%{_libdir}/gnome-settings-daemon-3.0/libcolor.so
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.color.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/liborientation.so
%{_libdir}/gnome-settings-daemon-3.0/orientation.gnome-settings-plugin
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.orientation.gschema.xml
%{_libdir}/gnome-settings-daemon-3.0/libcursor.so
%{_libdir}/gnome-settings-daemon-3.0/cursor.gnome-settings-plugin
2012-03-05 19:03:15 +00:00
%{_libdir}/gnome-settings-daemon-3.0/libgsd.so
2012-02-22 13:55:29 +00:00
2008-01-17 18:38:42 +00:00
%{_libexecdir}/gnome-settings-daemon
%{_libexecdir}/gsd-locate-pointer
2011-03-22 01:47:45 +00:00
%{_libexecdir}/gsd-printer
2008-01-17 18:38:42 +00:00
%{_datadir}/gnome-settings-daemon/
%{_datadir}/dbus-1/services/org.gnome.SettingsDaemon.service
2008-04-26 22:57:00 +00:00
%{_sysconfdir}/xdg/autostart/gnome-settings-daemon.desktop
%{_datadir}/icons/hicolor/*/apps/gsd-xrandr.*
%{_datadir}/GConf/gsettings/gnome-settings-daemon.convert
2011-02-23 16:49:25 +00:00
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.enums.xml
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.gschema.xml
2011-03-08 09:10:25 +00:00
%{_datadir}/dbus-1/interfaces/org.gnome.SettingsDaemonUpdates.xml
%{_datadir}/man/man1/gnome-settings-daemon.1.gz
2008-01-17 18:38:42 +00:00
2011-01-11 15:07:45 +00:00
2008-01-17 18:38:42 +00:00
%files devel
%{_includedir}/gnome-settings-daemon-3.0
2008-01-17 18:38:42 +00:00
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
2011-03-22 01:47:45 +00:00
%dir %{_datadir}/gnome-settings-daemon-3.0
%{_datadir}/gnome-settings-daemon-3.0/input-device-example.sh
2008-01-17 18:38:42 +00:00
%changelog
2012-04-16 15:52:09 +00:00
* Mon Apr 16 2012 Richard Hughes <hughsient@gmail.com> - 3.4.1-1
- Update to 3.4.1
2012-03-26 16:26:41 +00:00
* Mon Mar 26 2012 Richard Hughes <rhughes@redhat.com> - 3.4.0-1
- New upstream version.
2012-03-20 16:13:26 +00:00
* Tue Mar 20 2012 Richard Hughes <rhughes@redhat.com> 3.3.92-1
- Update to 3.3.92
2012-03-05 18:37:20 +00:00
* Mon Mar 05 2012 Bastien Nocera <bnocera@redhat.com> 3.3.91-1
- Update to 3.3.91
2012-02-22 12:45:01 +00:00
* Wed Feb 22 2012 Bastien Nocera <bnocera@redhat.com> 3.3.90.1-1
- Update to 3.3.90.1
2012-02-10 04:46:52 +00:00
* Thu Feb 9 2012 Matthias Clasen <mclasen@redhat.com> 3.3.5-2
- Use systemd for session tracking
2012-02-07 20:00:53 +00:00
* Tue Feb 7 2012 Matthias Clasen <mclasen@redhat.com> 3.3.5-1
- Update to 3.3.5
2012-01-20 19:05:11 +00:00
* Fri Jan 20 2012 Matthias Clasen <mclasen@redhat.com> 3.3.4-2
- Some crash fixes
2012-01-17 15:17:38 +00:00
* Tue Jan 17 2012 Bastien Nocera <bnocera@redhat.com> 3.3.4-1
- Update to 3.3.4
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-27 17:47:09 +00:00
* Tue Dec 27 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.3.1-2
- Fix a path problem in the gnome-settings-daemon autostart file
2011-12-23 12:52:02 +00:00
* Fri Dec 23 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.3.1-1
- Update to 3.3.3.1
2011-12-21 05:37:04 +00:00
* Wed Dec 21 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.3-1
- Update to 3.3.3
2011-11-24 01:36:33 +00:00
* Wed Nov 23 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.2-1
- Update to 3.3.2
2011-11-11 13:04:51 +00:00
* Fri Nov 11 2011 Bastien Nocera <bnocera@redhat.com> 3.2.2-1
- Update to 3.2.2
2011-10-26 23:56:10 +00:00
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-4
- Rebuilt for glibc bug#747377
* Tue Oct 25 2011 Marek Kasik <mkasik@redhat.com> - 3.2.1-3
- Fix a typo in registration of an object on DBus (#747318)
2011-10-24 22:43:12 +00:00
* Mon Oct 24 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1-2
- Fix calculator keybinding (#745367)
* Mon Oct 17 2011 Bastien Nocera <bnocera@redhat.com> 3.2.1-1
- Update to 3.2.1
* Wed Oct 12 2011 Adam Williamson <awilliam@redhat.com> - 3.2.0-2
- backport some greatest hits from git to stop the same bugs being
reported over and over (all will be in 3.2.1)
2011-09-27 05:12:43 +00:00
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1
- Update to 3.2.0
2011-09-20 15:56:53 +00:00
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.92-1
- Update to 3.1.92
2011-09-06 22:18:06 +00:00
* Tue Sep 6 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.91-1
- Update to 3.1.91
* Tue Jul 26 2011 Cosimo Cecchi <cosimoc@redhat.com> - 3.1.4-2
- Add a patch to make the fallback mounter to build correctly
- Include the new power plugin
2011-07-25 23:32:02 +00:00
* Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.4-1
- Update to 3.1.4
2011-07-22 12:31:05 +00:00
* Fri Jul 22 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.3-2
- Add support for chrony (#723212)
* Mon Jul 04 2011 Bastien Nocera <bnocera@redhat.com> 3.1.3-1
2011-07-04 12:34:56 +00:00
- Update to 3.1.3
* Tue Jun 21 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-2
- Fix fortify fail in gsd-color-manager.c (#714625)
2011-06-15 16:47:52 +00:00
* Wed Jun 15 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-1
- Update to 3.1.2
2011-06-15 13:56:31 +00:00
* Wed Jun 15 2011 Bastien Nocera <bnocera@redhat.com> 3.1.1-3
- Rebuild for new gnome-desktop3 libs
* Mon Jun 13 2011 Marek Kasik <mkasik@redhat.com> 3.1.1-2
- Remove requirement of system-config-printer-udev (#704381)
2011-05-11 15:44:26 +00:00
* Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.1-1
- Update to 3.1.1
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 3.0.1-5
- Update gsettings schema scriptlet
2011-05-02 20:56:04 +00:00
* Mon May 2 2011 Matthias Clasen <mclasen@redhat.com> 3.0.1-4
2011-05-02 18:28:23 +00:00
- Try to fix a crash (#698533)
2011-04-28 14:53:10 +00:00
* Thu Apr 28 2011 Bastien Nocera <bnocera@redhat.com> 3.0.1-2
- Fix setting ntpd usage with SystemD
2011-04-26 10:12:31 +00:00
* Tue Apr 26 2011 Bastien Nocera <bnocera@redhat.com> 3.0.1-1
- Update to 3.0.1
2011-04-06 13:13:05 +00:00
* Wed Apr 06 2011 Bastien Nocera <bnocera@redhat.com> 3.0.0.1-1
- Update to 3.0.0.1
2011-04-04 17:03:26 +00:00
* Mon Apr 04 2011 Bastien Nocera <bnocera@redhat.com> 3.0.0-1
- Update to 3.0.0
2011-03-30 15:45:23 +00:00
* Wed Mar 30 2011 Marek Kasik <mkasik@redhat.com> 2.91.93-2
- Make CUPS' subscriptions expirable
2011-03-25 16:34:08 +00:00
* Fri Mar 25 2011 Bastien Nocera <bnocera@redhat.com> 2.91.93-1
- Update to 2.91.93
2011-03-22 01:31:46 +00:00
* Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> 2.91.92-1
- Update 2.91.92
* Wed Mar 16 2011 Richard Hughes <rhughes@redhat.com> 2.91.91-3
- Add a patch from upstream to fix the updates plugin.
* Fri Mar 11 2011 Bastien Nocera <bnocera@redhat.com> 2.91.91-2
- Add libXxf86misc-devel requires so that key repeat/delay works
2011-03-08 08:40:48 +00:00
* Tue Mar 08 2011 Bastien Nocera <bnocera@redhat.com> 2.91.91-1
- Update to 2.91.91
* Fri Feb 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.90-4
- Fix undefined symbols in the updates plugin
2011-02-23 16:49:25 +00:00
* Wed Feb 23 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.90-3
- BR PackageKit and cups
- Explicitly list plugins so we notice if they go missing
* Wed Feb 23 2011 Cosimo Cecchi <cosimoc@redhat.com> - 2.91.90-2
- Include an upstream patch to fix a possible crasher
2011-02-22 06:21:13 +00:00
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 2.91.90-1
- Update to 2.91.90
* Wed Feb 16 2011 Bastien Nocera <bnocera@redhat.com> 2.91.9-6
- Fix crasher when media keys GSettings value changes
2011-02-13 19:35:17 +00:00
* Sun Feb 13 2011 Christopher Aillon <caillon@redhat.com> - 2.91.9-5
- Rebuild for new libxklavier
2011-02-11 05:05:59 +00:00
* Fri Feb 11 2011 Matthias Clasen <mclasen@redhat.com> 2.91.9-4
- Rebuild against newer gtk
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.91.9-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Tue Feb 08 2011 Bastien Nocera <bnocera@redhat.com> 2.91.9-2
- Fix setting timezones in the date & time panel (#674999)
2011-02-02 16:56:06 +00:00
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 2.91.9-1
- 2.91.9
2011-01-12 02:00:30 +00:00
* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> 2.91.8-1
- 2.91.8
2011-01-11 15:07:45 +00:00
* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> 2.91.7-2
- Own %%{_libdir}/gnome-settings-daemon-3.0/gtk-modules
2011-01-10 16:14:30 +00:00
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> 2.91.7-1
- Update to 2.91.7
2011-01-08 21:03:03 +00:00
* Sat Jan 8 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6.2-1
- Update to 2.91.6.2
2010-12-03 16:36:49 +00:00
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> 2.91.5.1-1
- Update to 2.91.5.1
* Thu Dec 2 2010 Dan Williams <dcbw@redhat.com> - 2.91.5-4
- Re-add patch handling org.gnome.media-handling gsettings schema rename
2010-12-01 18:17:17 +00:00
* Wed Dec 1 2010 Dan Williams <dcbw@redhat.com> - 2.91.5-3
- Fix various cases of forgetting to draw the background
* Tue Nov 30 2010 Owen Taylor <otaylor@redhat.com> - 2.91.5-2
- Add a patch handling org.gnome.media-handling gsettings schema rename
2010-11-30 10:41:04 +00:00
* Tue Nov 30 2010 Tomas Bzatek <tbzatek@redhat.com> 2.91.5-1
- Update to 2.91.5
2010-11-26 00:10:41 +00:00
* Fri Nov 26 2010 Bastien Nocera <bnocera@redhat.com> 2.91.4-2
- Fix crasher on startup
2010-11-25 13:00:13 +00:00
* Thu Nov 25 2010 Bastien Nocera <bnocera@redhat.com> 2.91.4-1
- Update to 2.91.4
2010-11-17 17:35:21 +00:00
* Wed Nov 17 2010 Richard Hughes <richard@hughsie.com> 2.91.3-1
- Update to 2.91.3
2010-11-10 12:24:54 +00:00
* Wed Nov 10 2010 Bastien Nocera <bnocera@redhat.com> 2.91.2.1-0.4.
- Update to 2.91.2.1
2010-11-03 11:24:37 +00:00
* Wed Nov 3 2010 Matthias Clasen <mclasen@redhat.com> 2.91.2-0.4.20101102
- Rebuild against new libnotify
2010-11-03 00:18:59 +00:00
* Tue Nov 2 2010 Matthias Clasen <mclasen@redhat.com> 2.91.2-0.3.20101102
- Make theme changing work
* Tue Nov 02 2010 Richard Hughes <richard@hughsie.com> 2.91.2-0.2.20101102
- Add BR gsettings-desktop-schemas-devel
* Tue Nov 02 2010 Richard Hughes <richard@hughsie.com> 2.91.2-0.1.20101102
- Update to a git snapshot to fix rawhide.
2010-10-06 18:21:34 +00:00
* Wed Oct 06 2010 Richard Hughes <rhughes@redhat.com> 2.91.0-3
- Fix the pkgconfig file manually
* Wed Oct 06 2010 Richard Hughes <rhughes@redhat.com> 2.91.0-2
- Rebuild against the new libgnomekbd library
2010-10-05 01:56:31 +00:00
* Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.0-1
- Update to 2.91.0
2010-09-29 21:20:57 +00:00
* Wed Sep 29 2010 jkeating - 2.90.1-2
- Rebuilt for gcc bug 634757
2010-09-22 10:40:16 +00:00
* Wed Sep 22 2010 Bastien Nocera <bnocera@redhat.com> 2.90.1-1
- Update to 2.90.1
2010-09-01 03:10:52 +00:00
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> 2.31.91-1
- Update to 2.31.91
* Fri Aug 27 2010 Matthias Clasen <mclasen@redhat.com> 2.31.6-2
- Fix a problem with warning bubbles in virtual machines (#624624)
2010-08-04 00:58:39 +00:00
* Tue Aug 3 2010 Matthias Clasen <mclasen@redhat.com> 2.31.6-1
- Update to 2.31.6
2010-07-14 01:13:22 +00:00
* Tue Jul 13 2010 Matthias Clasen <mclasen@redhat.com> 2.31.5.1-1
- Update to 2.31.5.1
2010-07-12 21:50:07 +00:00
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> 2.31.5-1
- Update to 2.31.5
2010-06-30 23:17:22 +00:00
* Wed Jun 30 2010 Matthias Clasen <mclasen@redhat.com> 2.31.4.2-1
- Update to 2.31.4.2
2010-06-29 18:57:45 +00:00
* Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> 2.31.4.1-1
- Update to 2.31.4.1
2010-06-29 17:10:56 +00:00
* Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> 2.31.4-1
- Update to 2.31.4
* Mon Jun 28 2010 Bastien Nocera <bnocera@redhat.com> 2.31.3-3
- Don't remove the sound plugin if we want the caches to be
updated
2010-06-09 03:07:01 +00:00
* Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> 2.31.3-1
- Update to 2.31.3
2010-05-27 20:25:33 +00:00
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> 2.31.2-1
- Update to 2.31.2
2010-05-16 04:03:01 +00:00
* Sun May 16 2010 Matthias Clasen <mclasen@redhat.com> 2.31.1-1
- Update to 2.31.1
* Fri Apr 30 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-4
- Waah, one more mistake in these macros
2010-04-27 14:06:46 +00:00
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-3
- Nobody understands macro processors...
2010-04-27 13:30:44 +00:00
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-2
- Fix a typo
2010-04-26 23:45:37 +00:00
* Mon Apr 26 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-1
- Update to 2.30.1
- Spec file cleanups
2010-03-29 16:24:55 +00:00
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> 2.30.0-1
- Update to 2.30.0
2010-03-22 15:52:00 +00:00
* Mon Mar 22 2010 Bastien Nocera <bnocera@redhat.com> 2.29.92-3
- Disable the font plugin by default
* Wed Mar 10 2010 Bastien Nocera <bnocera@redhat.com> 2.29.92-2
- Remove unneeded icons, already upstream
2010-03-09 15:25:49 +00:00
* Tue Mar 09 2010 Bastien Nocera <bnocera@redhat.com> 2.29.92-1
- Update to 2.29.92
2010-02-28 04:25:29 +00:00
* Sat Feb 27 2010 Matthias Clasen <mclasen@redhat.com> 2.29.91.1-2
- Fix Fn-F8 OSD icon
- Modernize scriptlets
2010-02-24 15:38:58 +00:00
* Wed Feb 24 2010 Matthias Clasen <mclasen@redhat.com> 2.29.91.1-1
- Update to 2.29.91.1
2010-02-17 23:40:49 +00:00
* Wed Feb 17 2010 Matthias Clasen <mclasen@redhat.com> 2.29.90-2
- Set a name for the keyboard statusicon
2010-02-10 16:48:11 +00:00
* Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> 2.29.90-1
- Update to 2.29.90
2010-01-26 17:10:06 +00:00
* Tue Jan 26 2010 Matthias Clasen <mclasen@redhat.com> 2.29.6-1
- Update to 2.29.6
2009-12-18 16:21:09 +00:00
* Fri Dec 18 2009 Matthias Clasen <mclasen@redhat.com> 2.28.1-10
- Avoid warning messages from the OSD code
2009-12-15 21:43:26 +00:00
* Tue Dec 15 2009 Matthias Clasen <mclasen@redhat.com> 2.28.1-9
- Survive when running without XKB (#547780)
2009-11-12 14:09:49 +00:00
* Thu Nov 12 2009 Matthias Clasen <mclasen@redhat.com> 2.28.1-8
- Avoid a 'whitespace leak' around the display statusicon (gnome #601696)
* Mon Nov 9 2009 Matthias Clasen <mclasen@redhat.com> 2.28.1-7
2009-11-12 14:09:49 +00:00
- React to screen changes when showing the background (gnome #601203)
* Thu Nov 05 2009 Bastien Nocera <bnocera@redhat.com> 2.28.1-6
- Fix the volume going over 100% in the OSD
2009-10-28 10:29:51 +00:00
* Wed Oct 28 2009 Bastien Nocera <bnocera@redhat.com> 2.28.1-5
- Update OSD code again
2009-10-28 10:29:51 +00:00
2009-10-27 22:44:05 +00:00
* Tue Oct 27 2009 Bastien Nocera <bnocera@redhat.com> 2.28.1-4
- Fix bluriness in OSD
* Mon Oct 26 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.1-3
- Change default font rendering to use slight hinting
* Mon Oct 26 2009 Peter Hutterer <peter.hutterer@redhat.com> 2.28.1-2
- left-handed-touchpad.patch: change physical touchpad buttons to
left-handed, not tapping though (#498249)
* Mon Oct 19 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.1-1
- Update to 2.28.1
2009-10-27 22:44:05 +00:00
* Thu Oct 1 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-4
- Fix keyboard variant handling
2009-10-27 22:44:05 +00:00
2009-09-25 17:48:56 +00:00
* Fri Sep 25 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-3
- Align the OSD visuals with the notification theme
2009-09-22 19:35:04 +00:00
* Tue Sep 22 2009 Adam Jackson <ajax@redhat.com> 2.28.0-2
- BuildRequires: libcanberra-devel
2009-09-22 00:45:46 +00:00
* Mon Sep 21 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
- Update to 2.28.0
2009-09-09 11:02:31 +00:00
* Wed Sep 09 2009 Bastien Nocera <bnocera@redhat.com> 2.27.92-2
- Update left-hand touchpad patch
2009-09-07 22:33:37 +00:00
* Mon Sep 7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.92-1
- Update to 2.27.92
2009-08-30 06:43:29 +00:00
* Sun Aug 30 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.91-3
- Make 'Locate Pointer' work with metacity again
* Wed Aug 26 2009 Peter Hutterer <peter.hutterer@redhat.com> 2.27.91-2
- buttonmapping.patch: Don't check for IsXExtensionDevice, only skip button
mappings for core devices instead (#502129).
2009-08-25 01:55:38 +00:00
* Mon Aug 24 2009 Bastien Nocera <bnocera@redhat.com> 2.27.91-1
- Update to 2.27.91
2009-08-14 17:17:59 +00:00
* Fri Aug 14 2009 Bastien Nocera <bnocera@redhat.com> 2.27.90-2
- Update gnome-volume-control code
2009-08-14 10:13:47 +00:00
* Fri Aug 14 2009 Bastien Nocera <bnocera@redhat.com> 2.27.90-1
- Update to 2.27.90
2009-07-28 05:03:25 +00:00
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> 2.27.5-1
- Update to 2.27.5
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Tue Jul 21 2009 Matthias Clasen <mclasen@redhat.com> 2.27.4-3
- Make locate-pointer not interfere with media keys
2009-07-15 21:53:38 +00:00
* Wed Jul 15 2009 Matthias Clasen <mclasen@redhat.com> 2.27.4-2
- Rebuild against new libgnomekbd
2009-07-14 13:51:31 +00:00
* Tue Jul 14 2009 Matthias Clasen <mclasen@redhat.com> 2.27.4-1
- Update ot 2.27.4
2009-06-30 20:34:12 +00:00
* Tue Jun 30 2009 Matthias Clasen <mclasen@redhat.com> 2.27.3-2
- Rebuild against new libxklavier
2009-06-16 04:13:01 +00:00
* Tue Jun 16 2009 Matthias Clasen <mclasen@redhat.com> 2.27.3-1
- Update to 2.27.3
* Mon Jun 8 2009 Matthias Clasen <mclasen@redhat.com> 2.27.1-2
- Make the 'locate pointer' effect cope with changing compositing
managers
2009-05-16 05:14:59 +00:00
* Sat May 16 2009 Matthias Clasen <mclasen@redhat.com> 2.27.1-1
- Update to 2.27.1
* Fri May 08 2009 Bastien Nocera <bnocera@redhat.com> 2.26.1-4
- Remove useless patch, see:
http://bugzilla.gnome.org/show_bug.cgi?id=580761 for details
* Wed Apr 29 2009 Bastien Nocera <bnocera@redhat.com> 2.26.1-3
- Don't set touchpads to be left-handed, otherwise the tap
behaves like the 2nd mouse button (#483639)
2009-04-27 06:28:42 +00:00
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.1-2
- Don't drop schemas translations from po files
2009-04-14 18:27:49 +00:00
* Tue Apr 14 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.1-1
- Update to 2.26.1
2009-04-09 01:38:46 +00:00
* Wed Apr 8 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-2
- Support touchpads
2009-03-16 18:28:35 +00:00
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
- Update to 2.26.0
2009-03-03 01:45:18 +00:00
* Mon Mar 2 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.92-1
- Update to 2.25.92
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.90-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2009-02-05 05:54:11 +00:00
* Thu Feb 5 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.90-2
- Fix a warning (#484132)
2009-02-05 04:33:18 +00:00
* Wed Feb 4 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.90-1
- Update to 2.25.90
* Mon Jan 19 2009 - Ray Strode <rstrode@redhat.com> - 2.25.3-4
- Update fade patch for new gnome-desktop release
2008-12-18 19:22:35 +00:00
* Thu Dec 18 2008 - Bastien Nocera <bnocera@redhat.com> - 2.25.3-3
- Rebuild
2008-12-18 18:12:04 +00:00
* Thu Dec 18 2008 - Ray Strode <rstrode@redhat.com> - 2.25.3-2
- Drop touchpad patch for now
2008-12-18 18:00:04 +00:00
* Thu Dec 18 2008 - Bastien Nocera <bnocera@redhat.com> - 2.25.3-1
- Update to 2.25.3
2008-12-18 16:56:53 +00:00
* Thu Dec 18 2008 - Bastien Nocera <bnocera@redhat.com> - 2.25.2-11
- Fix touchpad patches
2008-12-18 03:35:55 +00:00
* Wed Dec 17 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.2-10
- Rebuild against new gnome-desktop
* Wed Dec 10 2008 Ray Strode <rstrode@redhat.com> - 2.25.2-9
- Don't call SetPointerMapping when using Xinput since
it duplicates effort but gets touchpads wrong (bug 324721)
* Wed Dec 10 2008 Ray Strode <rstrode@redhat.com> - 2.25.2-8
- Shutdown cleanly when bus goes away (bug 445898 again)
* Wed Dec 10 2008 Ray Strode <rstrode@redhat.com> - 2.25.2-7
- Don't map touch pad tap to right-click for left-handed
users (bug 324721)
* Wed Dec 10 2008 Ray Strode <rstrode@redhat.com> - 2.25.2-6
- Listen for DeviceAdded signals when configuring mouse
(in addition to DeviceEnabled). This may help with
bug 474758.
* Tue Dec 9 2008 Ray Strode <rstrode@redhat.com> - 2.25.2-5
- Shutdown cleanly on TERM signal (bug 445898)
* Sun Dec 7 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.25.2-4
- Add gnome-settings-daemon-2.24.1-umask.patch
* Thu Dec 4 2008 Ray Strode <rstrode@redhat.com> - 2.25.2-2
- Rebase fade patch to apply with Behdad's updates to
g-s-d
2008-12-03 23:42:58 +00:00
* Wed Dec 3 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.2-1
- Ypdate to 2.25.2
2008-11-13 18:01:34 +00:00
* Thu Nov 13 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.1-4
2008-11-13 17:47:43 +00:00
- Rebuild
2008-11-13 04:23:19 +00:00
* Wed Nov 12 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.1-2
2008-11-13 03:29:33 +00:00
- Update to 2.25.1
* Fri Oct 24 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-14
- At fontconfig-devel buildrequires (bug 468304)
2008-10-15 05:11:15 +00:00
* Wed Oct 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-13
- Save some space
* Tue Oct 14 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-12
- Hold off on settings-daemon fade if nautilus is going to do
it anyway.
2008-10-14 18:38:23 +00:00
* Tue Oct 14 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-11
- Show the shutdown dialog when the power button is pressed
2008-10-14 13:42:27 +00:00
* Tue Oct 14 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-9
2008-10-14 13:31:31 +00:00
- Drop a patch that is no longer needed with the evdev ruleset
in xkeyboard-config
2008-10-12 19:29:45 +00:00
* Sun Oct 12 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-7
- Try harder not to override peoples configured keyboard layouts
* Sun Oct 12 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-6
- Update fade patch to skip crossfade when changing frames in
slideshow background.
2008-10-11 02:40:10 +00:00
* Fri Oct 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-5
2008-10-11 02:38:01 +00:00
- Fix the picking up of the gdm keyboard layout even more
2008-10-01 03:32:08 +00:00
* Tue Sep 30 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-3
- Fix the picking up of the gdm keyboard layout
* Wed Sep 28 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-2
- Don't draw background twice at startup
2008-09-23 15:53:50 +00:00
* Tue Sep 23 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
- Update to 2.24.0
* Thu Sep 18 2008 Ray Strode <rstrode@redhat.com> - 2.23.92-3
- When switching desktop backgrounds fade between them
* Thu Sep 11 2008 Soren Sandmann <sandmann@redhat.com> - 2.23.92-2
2008-09-11 07:57:39 +00:00
- Fix various bugs in the fn-F7 support
2008-09-08 16:34:05 +00:00
* Mon Sep 8 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.92-1
- Update to 2.23.92
* Fri Sep 5 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.91-5
- Try harder to use the keyboard layout that gdm tells us
2008-09-04 19:36:21 +00:00
* Tue Sep 04 2008 Soren Sandmann <sandmann@redhat.com> - 2.23.91-4
- Use the fn-F7 key, not the F7 key.
2008-09-04 03:47:24 +00:00
* Wed Sep 03 2008 Soren Sandmann <sandmann@redhat.com> - 2.23.91-3
- Bump gnome-desktop requirement
2008-09-04 03:39:34 +00:00
* Wed Sep 03 2008 Soren Sandmann <sandmann@redhat.com> - 2.23.91-2
- Add patch to do fn-f7 cycling
2008-09-01 14:53:45 +00:00
* Mon Sep 01 2008 - Bastien Nocera <bnocera@redhat.com> - 2.23.91-1
- Update to 2.23.91
2008-08-28 18:30:17 +00:00
* Thu Aug 28 2008 Jon McCann <jmccann@redhat.com> - 2.23.91-0.2008.08.28.2
- BuildRequires libnotify-devel
2008-08-28 13:34:23 +00:00
* Thu Aug 28 2008 Jon McCann <jmccann@redhat.com> - 2.23.91-0.2008.08.28.1
- Update to snapshot
2008-08-23 02:35:24 +00:00
* Fri Aug 22 2008 Matthias Clasen <mclasne@redhat.com> - 2.23.90-1
- Update to 2.23.90
* Thu Aug 14 2008 Lennart Poettering <lpoetter@redhat.com> - 2.23.6-3
- Rerun autotools after patching configure.ac
* Thu Aug 14 2008 Lennart Poettering <lpoetter@redhat.com> - 2.23.6-2
- Apply patch from gnome bug 545386. This hasn't been accepted in this form yet
by upstream, will however very likely be merged in a similar form.
- Disable esd/sounds module since we don't need it to start PA anymore
2008-08-05 04:20:07 +00:00
* Tue Aug 5 2008 Matthias Clasen <mclasne@redhat.com> - 2.23.6-1
- Update to 2.23.6
2008-07-25 17:47:11 +00:00
* Fri Jul 25 2008 Matthias Clasen <mclasne@redhat.com> - 2.23.5-3
- Use standard icon names in the volume OSD
* Fri Jul 25 2008 - Bastien Nocera <bnocera@redhat.com> - 2.23.5-2
- Fix build, call gtk-update-icon-cache as required
2008-07-24 20:03:39 +00:00
* Thu Jul 24 2008 Soren Sandmann <sandmann@redhat.com> - 2.23.5-1
- Update to 2.23.5
2008-06-18 17:39:41 +00:00
* Wed Jun 18 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.4-1
- Update to 2.23.4
* Tue Jun 17 2008 Colin Walters <walters@redhat.com> - 2.23.3-2
- Add (now upstreamed) patch to legacy ESD preference; see
http://bugzilla.gnome.org/show_bug.cgi?id=533198
https://bugzilla.redhat.com/show_bug.cgi?id=430624
2008-06-04 18:33:44 +00:00
* Wed Jun 4 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.3-1
- Update to 2.23.3
2008-05-15 01:53:07 +00:00
* Wed May 14 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2-0.2008.05.14.2
- Fix BuildRequires
2008-05-14 23:36:06 +00:00
* Wed May 14 2008 Jon McCann <jmccann@redhat.com> - 2.23.2-0.2008.05.14.1
- Build snapshot
2008-05-13 13:49:12 +00:00
* Tue May 13 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1-5
- Rebuild
* Mon May 5 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1-4
- Pick up the keyboard layout from the login screen
* Mon May 5 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1-3
- Fix background drawing without nautilus
* Tue Apr 29 2008 - Bastien Nocera <bnocera@redhat.com> - 2.23.1.1-2
- Add patch from upstream to avoid the Stop button triggering an Eject (#346201)
2008-04-25 19:56:45 +00:00
* Fri Apr 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1.1-1
- Update to 2.23.1.1
2008-04-22 17:54:20 +00:00
* Tue Apr 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1-2008.03.26.6
- Make the xrandr plugin survive the absence of Xrandr
2008-04-05 16:49:35 +00:00
* Sat Apr 5 2008 - Soren Sandmann <sandmann@redhat.com> - 2.22.1-2008.03.26.5
- Update randr plugin
* Mon Mar 31 2008 - Ray Strode <rstrode@redhat.com> - 2.22.1-0.2008.03.26.4
- Over the releases we've accumulated default.png, default-wide.png default-5_4.png
and default.jpg. We haven't been able to drop them because it would leave some
users with white backgrounds on upgrade. This patch just falls back to the
default image if the user's background doesn't exist.
* Wed Mar 26 2008 - Bastien Nocera <bnocera@redhat.com> - 2.22.1-0.2008.03.26.3
- Add patch for the mouse plugin not to eat multimedia key events (#438942)
2008-03-26 15:50:20 +00:00
* Wed Mar 26 2008 Jon McCann <jmccann@redhat.com> - 2.22.1-0.2008.03.26.2
- Rebuild
* Wed Mar 26 2008 Jon McCann <jmccann@redhat.com> - 2.22.1-0.2008.03.26.1
- Update to snapshot
- Enable profiling
* Wed Mar 26 2008 - Bastien Nocera <bnocera@redhat.com> - 2.22.0-3
- apps_gnome_settings_daemon_default_editor.schemas is obsolete (#438937)
* Thu Mar 20 2008 Matthias Clasen <mclasen@redhat.com> 2.22.0-2
- Fix interaction between "Locate Pointer" and volume keys
2008-03-10 22:08:50 +00:00
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> 2.22.0-1
- Update to 2.22.0
* Sun Mar 9 2008 Ray Strode <rstrode@redhat.com> - 2.21.92-3
- Don't set keyboard model on startup from gconf if evdev is being used.
Evdev needs to use its own keyboard model to work right.
2008-03-02 22:21:35 +00:00
* Sun Mar 2 2008 Soren Sandmann <sandmann@redhat.com> - 2.21.92-2
- Update randr patch to handle video key
2008-02-29 22:26:07 +00:00
* Fri Feb 29 2008 Jon McCann <jmccann@redhat.com> - 2.21.92-1
- Update to 2.21.92
2008-02-12 19:57:10 +00:00
* Tue Feb 12 2008 Soren Sandmann <sandmann@redhat.com> - 2.21.91-3
- Add patch to make the xrandr plugin listen for client messages from
the control panel and reread the configuration file.
* Mon Feb 11 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.91-2
- Remove obsolete control-center translations
* Mon Feb 11 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.91-1
- Update to 2.21.91
- Remove obsolete patches
2008-02-08 03:54:28 +00:00
* Thu Feb 7 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90.1-3
- Load xkb settings initially
* Thu Jan 31 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90.1-2
- Fix the path for g-s-d, from upstream patch
2008-01-29 17:41:38 +00:00
* Tue Jan 29 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90.1-1
- Update to 2.21.90.1
2008-01-29 15:05:43 +00:00
* Tue Jan 29 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90-1
- Update to 2.21.90
2008-01-17 18:38:42 +00:00
* Tue Jan 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.5.2-2
- Incorporate review feedback (#428833)
* Tue Jan 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.5.2-1
- Update to 2.21.5.2
* Tue Jan 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.5.1-1
- Update to 2.21.5.1
- Fix up BuildRequires
* Thu Dec 06 2007 - Bastien Nocera <bnocera@redhat.com> - 2.21.5-1
- First package