| 1 |
Summary: Unobtrusive window manager
|
| 2 |
Name: metacity
|
| 3 |
Version: 2.28.0
|
| 4 |
Release: 1%{?dist}
|
| 5 |
URL: http://download.gnome.org/sources/metacity/
|
| 6 |
Source0: http://download.gnome.org/sources/metacity/2.28/metacity-%{version}.tar.bz2
|
| 7 |
# http://bugzilla.gnome.org/show_bug.cgi?id=558723
|
| 8 |
Patch4: stop-spamming-xsession-errors.patch
|
| 9 |
# http://bugzilla.gnome.org/show_bug.cgi?id=135056
|
| 10 |
Patch5: dnd-keynav.patch
|
| 11 |
# http://bugzilla.gnome.org/show_bug.cgi?id=588119
|
| 12 |
Patch6: Should-set-RestartStyleHint-to-RestartIfRunning-when.patch
|
| 13 |
# http://bugzilla.gnome.org/show_bug.cgi?id=593355
|
| 14 |
Patch7: 0001-bell-increase-bell-rate-limit-from-1-s-to-1-100ms.patch
|
| 15 |
# http://bugzilla.gnome.org/show_bug.cgi?id=593356
|
| 16 |
Patch8: 0001-sound-ask-libcanberra-to-cache-alert-desktop-switch-.patch
|
| 17 |
# http://bugzilla.gnome.org/show_bug.cgi?id=593358
|
| 18 |
Patch9: 0001-tooltip-set-window-type-hint-for-self-drawn-tooltips.patch
|
| 19 |
|
| 20 |
License: GPLv2+
|
| 21 |
Group: User Interface/Desktops
|
| 22 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
| 23 |
BuildRequires: gtk2-devel >= 2.2.0
|
| 24 |
BuildRequires: pango-devel >= 1.2.0
|
| 25 |
BuildRequires: fontconfig-devel
|
| 26 |
BuildRequires: GConf2-devel >= 2.2.0
|
| 27 |
BuildRequires: desktop-file-utils >= 0.3
|
| 28 |
BuildRequires: libglade2-devel >= 2.0.0
|
| 29 |
BuildRequires: autoconf, automake, libtool
|
| 30 |
BuildRequires: intltool >= 0.35
|
| 31 |
BuildRequires: startup-notification-devel >= 0.7
|
| 32 |
BuildRequires: libtool automake autoconf gettext
|
| 33 |
BuildRequires: xorg-x11-proto-devel >= 7.0-13
|
| 34 |
BuildRequires: libSM-devel, libICE-devel, libX11-devel
|
| 35 |
BuildRequires: libXext-devel, libXinerama-devel, libXrandr-devel, libXrender-devel
|
| 36 |
BuildRequires: libXcursor-devel
|
| 37 |
BuildRequires: libXcomposite-devel, libXdamage-devel
|
| 38 |
# for gnome-keybindings.pc
|
| 39 |
BuildRequires: control-center >= 2.19.4
|
| 40 |
BuildRequires: gnome-doc-utils
|
| 41 |
BuildRequires: zenity
|
| 42 |
BuildRequires: dbus-devel
|
| 43 |
BuildRequires: libcanberra-devel
|
| 44 |
|
| 45 |
Requires: startup-notification >= 0.7
|
| 46 |
Requires: nodoka-metacity-theme
|
| 47 |
# for /usr/share/control-center/keybindings, /usr/share/gnome/wm-properties
|
| 48 |
Requires: control-center-filesystem
|
| 49 |
# for /etc/gconf/schemas
|
| 50 |
Requires: GConf2
|
| 51 |
Requires: zenity
|
| 52 |
|
| 53 |
Requires(post): GConf2 >= 2.14
|
| 54 |
Requires(post): /sbin/ldconfig
|
| 55 |
Requires(pre): GConf2 >= 2.14
|
| 56 |
Requires(preun): GConf2 >= 2.14
|
| 57 |
|
| 58 |
%description
|
| 59 |
Metacity is a window manager that integrates nicely with the GNOME desktop.
|
| 60 |
It strives to be quiet, small, stable, get on with its job, and stay out of
|
| 61 |
your attention.
|
| 62 |
|
| 63 |
%package devel
|
| 64 |
Group: Development/Libraries
|
| 65 |
Summary: Development files for metacity
|
| 66 |
Requires: gtk2-devel, libX11-devel
|
| 67 |
Requires: pkgconfig
|
| 68 |
Requires: %{name} = %{version}-%{release}
|
| 69 |
|
| 70 |
%description devel
|
| 71 |
This package contains the files needed for compiling programs using
|
| 72 |
the metacity-private library. Note that you are not supposed to write
|
| 73 |
programs using the metacity-private library, since it is a private
|
| 74 |
API. This package exists purely for technical reasons.
|
| 75 |
|
| 76 |
%prep
|
| 77 |
%setup -q
|
| 78 |
%patch4 -p1 -b .stop-spamming-xsession-errors
|
| 79 |
%patch5 -p1 -b .dnd-keynav
|
| 80 |
%patch6 -p1 -b .restart-if-running
|
| 81 |
%patch7 -p1 -b .bell
|
| 82 |
%patch8 -p1 -b .sound-cache
|
| 83 |
%patch9 -p1 -b .tooltip
|
| 84 |
|
| 85 |
# force regeneration
|
| 86 |
rm src/metacity.schemas
|
| 87 |
|
| 88 |
autoreconf -i -f
|
| 89 |
|
| 90 |
%build
|
| 91 |
rm -rf $RPM_BUILD_ROOT
|
| 92 |
|
| 93 |
CPPFLAGS="$CPPFLAGS -I$RPM_BUILD_ROOT%{_includedir}"
|
| 94 |
export CPPFLAGS
|
| 95 |
|
| 96 |
%configure
|
| 97 |
|
| 98 |
SHOULD_HAVE_DEFINED="HAVE_SM HAVE_XINERAMA HAVE_XFREE_XINERAMA HAVE_SHAPE HAVE_RANDR HAVE_STARTUP_NOTIFICATION"
|
| 99 |
|
| 100 |
for I in $SHOULD_HAVE_DEFINED; do
|
| 101 |
if ! grep -q "define $I" config.h; then
|
| 102 |
echo "$I was not defined in config.h"
|
| 103 |
grep "$I" config.h
|
| 104 |
exit 1
|
| 105 |
else
|
| 106 |
echo "$I was defined as it should have been"
|
| 107 |
grep "$I" config.h
|
| 108 |
fi
|
| 109 |
done
|
| 110 |
|
| 111 |
make CPPFLAGS="$CPPFLAGS" LIBS="$LIBS"
|
| 112 |
|
| 113 |
%if 0
|
| 114 |
# strip unneeded translations from .mo files
|
| 115 |
cd po
|
| 116 |
grep -v ".*[.]desktop[.]in$\|.*[.]server[.]in$" POTFILES.in > POTFILES.keep
|
| 117 |
mv POTFILES.keep POTFILES.in
|
| 118 |
intltool-update --pot
|
| 119 |
for p in *.po; do
|
| 120 |
msgmerge $p metacity.pot > $p.out
|
| 121 |
msgfmt -o `basename $p .po`.gmo $p.out
|
| 122 |
done
|
| 123 |
%endif
|
| 124 |
|
| 125 |
%install
|
| 126 |
rm -rf $RPM_BUILD_ROOT
|
| 127 |
|
| 128 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
|
| 129 |
make install DESTDIR=$RPM_BUILD_ROOT
|
| 130 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
|
| 131 |
|
| 132 |
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
| 133 |
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
| 134 |
|
| 135 |
# the desktop file is not valid, I've complained on metacity-devel-list
|
| 136 |
#desktop-file-install --vendor "" --delete-original \
|
| 137 |
# --dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
| 138 |
# $RPM_BUILD_ROOT%{_datadir}/applications/metacity.desktop
|
| 139 |
|
| 140 |
%find_lang %{name}
|
| 141 |
|
| 142 |
%clean
|
| 143 |
rm -rf $RPM_BUILD_ROOT
|
| 144 |
|
| 145 |
%post
|
| 146 |
/sbin/ldconfig
|
| 147 |
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
| 148 |
gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/metacity.schemas > /dev/null || :
|
| 149 |
|
| 150 |
%pre
|
| 151 |
if [ "$1" -gt 1 ]; then
|
| 152 |
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
| 153 |
gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/metacity.schemas > /dev/null || :
|
| 154 |
fi
|
| 155 |
|
| 156 |
%preun
|
| 157 |
if [ "$1" -eq 0 ]; then
|
| 158 |
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
| 159 |
gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/metacity.schemas > /dev/null || :
|
| 160 |
fi
|
| 161 |
|
| 162 |
%postun -p /sbin/ldconfig
|
| 163 |
|
| 164 |
%files -f %{name}.lang
|
| 165 |
%defattr(-,root,root)
|
| 166 |
%doc README AUTHORS COPYING NEWS HACKING doc/theme-format.txt doc/metacity-theme.dtd rationales.txt
|
| 167 |
%{_bindir}/metacity
|
| 168 |
%{_bindir}/metacity-message
|
| 169 |
%{_sysconfdir}/gconf/schemas/*.schemas
|
| 170 |
%{_datadir}/metacity
|
| 171 |
%{_datadir}/themes/*
|
| 172 |
%{_datadir}/gnome-control-center/keybindings/*
|
| 173 |
%{_libdir}/lib*.so.*
|
| 174 |
%{_mandir}/man1/metacity.1.gz
|
| 175 |
%{_mandir}/man1/metacity-message.1.gz
|
| 176 |
%{_datadir}/applications/metacity.desktop
|
| 177 |
%{_datadir}/gnome/wm-properties/metacity-wm.desktop
|
| 178 |
%{_datadir}/gnome/help/creating-metacity-themes
|
| 179 |
|
| 180 |
%files devel
|
| 181 |
%defattr(-,root,root)
|
| 182 |
%{_bindir}/metacity-theme-viewer
|
| 183 |
%{_bindir}/metacity-window-demo
|
| 184 |
%{_includedir}/*
|
| 185 |
%{_libdir}/lib*.so
|
| 186 |
%{_libdir}/pkgconfig/*
|
| 187 |
%{_mandir}/man1/metacity-theme-viewer.1.gz
|
| 188 |
%{_mandir}/man1/metacity-window-demo.1.gz
|
| 189 |
|
| 190 |
%changelog
|
| 191 |
* Tue Sep 22 2009 Matthias Clasen <mclasen@redhat.cm> - 2.28.0-1
|
| 192 |
- Update to 2.28.0
|
| 193 |
|
| 194 |
* Tue Sep 8 2009 Matthias Clasen <mclasen@redhat.cm> - 2.27.1-1
|
| 195 |
- Update to 2.27.1
|
| 196 |
|
| 197 |
* Wed Sep 2 2009 Peter Robinson <pbrobinson@gmail.com> - 2.27.0-9
|
| 198 |
- Add upstreamed patch for option to force fullscreen for sugar
|
| 199 |
- https://bugzilla.redhat.com/show_bug.cgi?id=516225
|
| 200 |
|
| 201 |
* Fri Aug 28 2009 Lennart Poettering <lpoetter@redhat.com> - 2.27.0-8
|
| 202 |
- Actually apply the patch from -7
|
| 203 |
|
| 204 |
* Fri Aug 28 2009 Lennart Poettering <lpoetter@redhat.com> - 2.27.0-7
|
| 205 |
- Apply another trivial patch related to sound events
|
| 206 |
- http://bugzilla.gnome.org/show_bug.cgi?id=593358
|
| 207 |
|
| 208 |
* Fri Aug 28 2009 Lennart Poettering <lpoetter@redhat.com> - 2.27.0-6
|
| 209 |
- Apply two trivial patches for bell/sound
|
| 210 |
- http://bugzilla.gnome.org/show_bug.cgi?id=593356
|
| 211 |
- http://bugzilla.gnome.org/show_bug.cgi?id=593355
|
| 212 |
|
| 213 |
* Sat Aug 22 2009 Owen Taylor <otaylor@redhat.com> - 2.27.0-5
|
| 214 |
- Add a fix for http://bugzilla.gnome.org/show_bug.cgi?id=588119,
|
| 215 |
remove no-longer-needed no-lame-dialog patch
|
| 216 |
|
| 217 |
* Wed Aug 5 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.0-4
|
| 218 |
- Change the default theme to Clearlooks
|
| 219 |
|
| 220 |
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.0-3
|
| 221 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
| 222 |
|
| 223 |
* Sun Jun 7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.0-2
|
| 224 |
- Make DND work better
|
| 225 |
- Don't show a lame dialog
|
| 226 |
|
| 227 |
* Sun May 31 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.0-1
|
| 228 |
- Update to 2.27.0
|
| 229 |
|
| 230 |
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-2
|
| 231 |
- Don't drop schemas translations from po files
|
| 232 |
|
| 233 |
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
|
| 234 |
- Update to 2.26.0
|
| 235 |
|
| 236 |
* Wed Mar 11 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.144-6
|
| 237 |
- Fix interaction with autohide panels
|
| 238 |
|
| 239 |
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.144-5
|
| 240 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
| 241 |
|
| 242 |
* Sat Feb 21 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.144-4
|
| 243 |
- Don't force the bell (#486137)
|
| 244 |
|
| 245 |
* Wed Feb 18 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.144-3
|
| 246 |
- Update the theme patch to apply to the right file
|
| 247 |
|
| 248 |
* Tue Feb 10 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.144-2
|
| 249 |
- Use libcanberra to play the alert sound from the sound theme
|
| 250 |
for the audible system bell
|
| 251 |
|
| 252 |
* Tue Feb 3 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.144-1
|
| 253 |
- Update to 2.25.144
|
| 254 |
|
| 255 |
* Mon Jan 5 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.89-1
|
| 256 |
- Update to 2.25.89
|
| 257 |
|
| 258 |
* Tue Dec 16 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.55-1
|
| 259 |
- Update to 2.25.55
|
| 260 |
|
| 261 |
* Mon Dec 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.34-3
|
| 262 |
- Clean _NET_SUPPORTING_WM_CHECK on shutdown
|
| 263 |
- Fix BuildRequires
|
| 264 |
|
| 265 |
* Wed Dec 3 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.34-1
|
| 266 |
- Update to 2.25.34
|
| 267 |
|
| 268 |
* Mon Nov 24 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.8-4
|
| 269 |
- Update to 2.25.8
|
| 270 |
|
| 271 |
* Sat Nov 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.5-4
|
| 272 |
- Tweak %%summary and %%description
|
| 273 |
- Fix BuildRequires
|
| 274 |
|
| 275 |
* Wed Nov 12 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.5-1
|
| 276 |
- Update to 2.25.5
|
| 277 |
|
| 278 |
* Fri Oct 31 2008 Soren Sandmann <sandmann@redhat.com> - 2.24.0-3
|
| 279 |
- Don't spam .xsession-errors so hard (bug 467802)
|
| 280 |
|
| 281 |
* Thu Sep 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-2
|
| 282 |
- Save some space
|
| 283 |
|
| 284 |
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
|
| 285 |
- Update to 2.24.0
|
| 286 |
|
| 287 |
* Fri Sep 19 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.610-2
|
| 288 |
- Fix some memory leaks
|
| 289 |
|
| 290 |
* Tue Sep 9 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.610-1
|
| 291 |
- Update to 2.23.610
|
| 292 |
|
| 293 |
* Tue Sep 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.233-1
|
| 294 |
- Update to 2.23.233
|
| 295 |
|
| 296 |
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.144-1
|
| 297 |
- Update to 2.23.144
|
| 298 |
|
| 299 |
* Tue Jul 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.55-1
|
| 300 |
- Update to 2.23.55
|
| 301 |
|
| 302 |
* Tue Jun 17 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.34-1
|
| 303 |
- Update to 2.23.34
|
| 304 |
|
| 305 |
* Tue May 27 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.21-1
|
| 306 |
- Update to 2.23.21
|
| 307 |
|
| 308 |
* Mon May 5 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.13-1
|
| 309 |
- Update to 2.23.13
|
| 310 |
|
| 311 |
* Thu Apr 24 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.8-1
|
| 312 |
- Update to 2.23.8
|
| 313 |
- Drop obsolete patches
|
| 314 |
|
| 315 |
* Thu Apr 24 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-3
|
| 316 |
- Fix a possible crash in the appearance capplet with
|
| 317 |
invalid metacity themes (launchpad #199402)
|
| 318 |
|
| 319 |
* Wed Mar 12 2008 Marco Pesenti Gritti <mpg@redhat.com> - 2.22.0-2
|
| 320 |
- Add patch to fix focus of keep-above windows
|
| 321 |
http://bugzilla.gnome.org/show_bug.cgi?id=519188
|
| 322 |
|
| 323 |
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
|
| 324 |
- Update to 2.22.0
|
| 325 |
|
| 326 |
* Wed Feb 27 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.21-1
|
| 327 |
- Update to 2.21.21
|
| 328 |
|
| 329 |
* Tue Feb 12 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.13-1
|
| 330 |
- Update to 2.21.13
|
| 331 |
|
| 332 |
* Wed Feb 6 2008 Colin Walters <walters@redhat.com> - 2.21.8.svn3554-1
|
| 333 |
- Drop random macros at top of file; spec files should be as amenable
|
| 334 |
to static analysis as possible, easing our way into the bright future
|
| 335 |
where our software build process isn't a horrible mismash of a
|
| 336 |
preprocessor on shell script, with manual editing required,
|
| 337 |
but something scriptable.
|
| 338 |
- Update to SVN 3554, to which our patches were designed to apply
|
| 339 |
- Readd patch metacity-2.21.13-dont-move-windows.patch, which makes
|
| 340 |
Firefox behave as those multiple-workspace users desire.
|
| 341 |
|
| 342 |
* Wed Feb 6 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.8-1
|
| 343 |
- Update to 2.21.8
|
| 344 |
|
| 345 |
* Sun Feb 3 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.5-3
|
| 346 |
- Make skip-taskbar windows appear in the ctrl-alt-tab list
|
| 347 |
|
| 348 |
* Thu Dec 20 2007 Colin Walters <walters@redhat.com> - 2.21.5-2
|
| 349 |
- Add patch for avoiding moving windows across workspaces
|
| 350 |
This makes clicking on links in firefox do what you want.
|
| 351 |
http://bugzilla.gnome.org/show_bug.cgi?id=482354
|
| 352 |
|
| 353 |
* Wed Dec 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.5-1
|
| 354 |
- Update to 2.21.5, including the new compositor
|
| 355 |
|
| 356 |
* Sun Dec 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.3-1
|
| 357 |
- Update to 2.21.3
|
| 358 |
|
| 359 |
* Sun Nov 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.2-1
|
| 360 |
- Update to 2.21.2
|
| 361 |
|
| 362 |
* Tue Nov 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
|
| 363 |
- Update to 2.21.1
|
| 364 |
|
| 365 |
* Sun Nov 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-4
|
| 366 |
- Fix a crash when the number of workspaces is 1
|
| 367 |
|
| 368 |
* Thu Oct 18 2007 Colin Walters <walters@redhat.com> - 2.20.0-3
|
| 369 |
- Add patch to fix workspace behavior when presenting normal windows
|
| 370 |
|
| 371 |
* Thu Sep 27 2007 Ray Strode <rstrode@redhat.com> - 2.20.0-2
|
| 372 |
- Drop dep on redhat-artwork, add one on nodoka
|
| 373 |
|
| 374 |
* Sun Sep 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
|
| 375 |
- Update to 2.20.0
|
| 376 |
|
| 377 |
* Tue Sep 11 2007 Ray Strode <rstrode@redhat.com> - 2.19.55-4
|
| 378 |
- fix crash on logout (and on the subsequent login, bug 243761)
|
| 379 |
|
| 380 |
* Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 2.19.55-3
|
| 381 |
- Rebuild for build id
|
| 382 |
|
| 383 |
* Sun Aug 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.55-2
|
| 384 |
- Switch default theme to Nodoka
|
| 385 |
|
| 386 |
* Tue Aug 7 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.55-1
|
| 387 |
- Update to 2.19.55
|
| 388 |
|
| 389 |
* Tue Aug 7 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.34-3
|
| 390 |
- Update license field
|
| 391 |
|
| 392 |
* Wed Jul 25 2007 Jesse Keating <jkeating@redhat.com> - 2.19.34-2
|
| 393 |
- Rebuild for RH #249435
|
| 394 |
|
| 395 |
* Mon Jul 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.34-1
|
| 396 |
- Update to 2.19.34
|
| 397 |
|
| 398 |
* Fri Jul 6 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.21-3
|
| 399 |
- Require control-center-filesystem
|
| 400 |
|
| 401 |
* Thu Jul 5 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.21-2
|
| 402 |
- Fix keybindings
|
| 403 |
|
| 404 |
* Mon Jun 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.21-1
|
| 405 |
- Update to 2.19.21
|
| 406 |
|
| 407 |
* Sun Jun 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.13-2
|
| 408 |
- Clean up directory ownership
|
| 409 |
|
| 410 |
* Fri Jun 15 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.13-1
|
| 411 |
- Update to 2.19.13
|
| 412 |
|
| 413 |
* Mon Jun 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.8-2
|
| 414 |
- Don't ship .so.0 in the -devel package (#243689)
|
| 415 |
|
| 416 |
* Mon Jun 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.8-1
|
| 417 |
- Update to 2.19.8
|
| 418 |
|
| 419 |
* Sat May 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.5-1
|
| 420 |
- Update to 2.19.5
|
| 421 |
|
| 422 |
* Tue Apr 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-2
|
| 423 |
- Split off a devel package (#203547)
|
| 424 |
- Some spec file cleanups (#21573)
|
| 425 |
|
| 426 |
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-1
|
| 427 |
- Update to 2.18.0
|
| 428 |
|
| 429 |
* Wed Feb 28 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.8-1
|
| 430 |
- Update to 2.17.8
|
| 431 |
|
| 432 |
* Thu Feb 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.5-2
|
| 433 |
- Fix a spec file typo
|
| 434 |
- Don't ship static libraries
|
| 435 |
|
| 436 |
* Wed Jan 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.5-1
|
| 437 |
- Update to 2.17.5
|
| 438 |
|
| 439 |
* Mon Nov 6 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2-1
|
| 440 |
- Update to 2.17.2
|
| 441 |
|
| 442 |
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.1-1
|
| 443 |
- Update to 2.17.1
|
| 444 |
|
| 445 |
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-7
|
| 446 |
- Fix scripts according to packaging guidelines
|
| 447 |
|
| 448 |
* Tue Oct 17 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-6
|
| 449 |
- Add missing Requires (#203813)
|
| 450 |
|
| 451 |
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.16.0-5
|
| 452 |
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
| 453 |
|
| 454 |
* Mon Sep 25 2006 Soren Sandmann <sandmann@redhat.com> - 2.16.0-4.fc6
|
| 455 |
- Build
|
| 456 |
|
| 457 |
* Fri Sep 21 2006 Soren Sandmann <sandmann@redhat.com>
|
| 458 |
- Remove GL dependencies.
|
| 459 |
- Remove static-cm patch
|
| 460 |
- add patch to fix more CurrentTime race conditions (bug 206263)
|
| 461 |
|
| 462 |
* Thu Sep 14 2006 Ray Strode <rstrode@redhat.com> - 2.16.0-3.fc6
|
| 463 |
- remove stale ctrl-alt-delete patch
|
| 464 |
|
| 465 |
* Sat Sep 9 2006 Soren Sandmann <sandmann@redhat.com> - 2.16.0-2.fc6
|
| 466 |
- Add patch from Elijah that may fix bug 204519
|
| 467 |
|
| 468 |
* Mon Sep 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1.fc6
|
| 469 |
- Update to 2.16.0
|
| 470 |
|
| 471 |
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.34-1.fc6
|
| 472 |
- Update to 2.15.34
|
| 473 |
- Require pkgconfig, since we installing a .pc file
|
| 474 |
|
| 475 |
* Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.21-1.fc6
|
| 476 |
- Update to 2.15.21
|
| 477 |
- Uninstall gconf schemas in %%preun
|
| 478 |
|
| 479 |
* Mon Aug 7 2006 Soren Sandmann <sandmann@redhat.com> - 2.15.13-2
|
| 480 |
- Remove leftover snapshot string.
|
| 481 |
|
| 482 |
* Mon Aug 7 2006 Soren Sandmann <sandmann@redhat.com> - 2.15.13-1
|
| 483 |
- Update to 2.15.13. Disable compositing manager.
|
| 484 |
|
| 485 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.15.5-6.1
|
| 486 |
- rebuild
|
| 487 |
|
| 488 |
* Tue Jun 13 2006 Michael J. Knox <michael[AT]knox.net.nz> - 2.15.5-6
|
| 489 |
- remove BR on automake14, use current automake instead
|
| 490 |
|
| 491 |
* Tue Jun 6 2006 Soren Sandmann <sandmann@redhat.com> 2.15.5-5
|
| 492 |
- Update to new tarball with different intltool magic in it.
|
| 493 |
|
| 494 |
* Tue Jun 6 2006 Soren Sandmann <sandmann@redhat.com> 2.15.5-4
|
| 495 |
- Update intltool BuildRequires to 0.35
|
| 496 |
|
| 497 |
* Fri Jun 2 2006 Soren Sandmann <sandmann@redhat.com> 2.15.5-2
|
| 498 |
- Update intltool BuildRequires to 0.34.90
|
| 499 |
|
| 500 |
* Thu Jun 1 2006 Soren Sandmann <sandmann@redhat.com> 2.15.5-1
|
| 501 |
- Update metacity to a cvs snapshot, and libcm 0.0.22. (The standalone
|
| 502 |
libcm package is being put through the package review process).
|
| 503 |
|
| 504 |
* Tue May 30 2006 Kristian Høgsberg <krh@redhat.com> 2.15.3-4
|
| 505 |
- Bump for rawhide build.
|
| 506 |
|
| 507 |
* Mon May 29 2006 Kristian Høgsberg <krh@redhat.com> - 2.15.3-3
|
| 508 |
- Bump libGL build requires so libcm picks up the right tfp tokens.
|
| 509 |
|
| 510 |
* Thu May 18 2006 Soren Sandmann <sandmann@redhat.com> 2.15.3-2
|
| 511 |
- Update libcm to 0.0.21
|
| 512 |
|
| 513 |
* Wed May 17 2006 Matthias Clasen <mclasen@redhat.com> 2.15.3-1
|
| 514 |
- Update to 2.15.3
|
| 515 |
|
| 516 |
* Fri May 12 2006 Adam Jackson <ajackson@redhat.com> 2.15.2-2
|
| 517 |
- Update protocol dep to 7.0-13 for final EXT_tfp enums, and rebuild.
|
| 518 |
|
| 519 |
* Thu May 11 2006 Soren Sandmann <sandmann@redhat.com> 2.15.2-1
|
| 520 |
- Update to metacity 2.15.2
|
| 521 |
|
| 522 |
* Tue Apr 18 2006 Kristian Høgsberg <krh@redhat.com> 2.15.0-6
|
| 523 |
- Bump for fc5-bling build.
|
| 524 |
|
| 525 |
* Thu Apr 13 2006 Soren Sandmann <sandmann@redhat.com> 2.15.0-5
|
| 526 |
- Update to libcm 0.0.19
|
| 527 |
|
| 528 |
* Wed Apr 12 2006 Kristian Høgsberg <krh@redhat.com> 2.15.0-4
|
| 529 |
- Bump for fc5-bling rebuild.
|
| 530 |
|
| 531 |
* Thu Apr 6 2006 Soren Sandmann <sandmann@redhat.com> - 2.16.0-3
|
| 532 |
- Bump libcm to 0.0.18.
|
| 533 |
|
| 534 |
* Mon Apr 3 2006 Soren Sandmann <sandmann@redhat.com> - 2.15.0-2
|
| 535 |
- Fix leftover libcm-snapshot-date, buildrequire libXcomposite-devel >= 0.3
|
| 536 |
|
| 537 |
* Fri Mar 31 2006 Soren Sandmann <sandmann@redhat.com> - 2.15.0
|
| 538 |
- Update to 2.15.0
|
| 539 |
|
| 540 |
* Mon Mar 13 2006 Ray Strode <rstrode@redhat.com> - 2.14.0-1
|
| 541 |
- update to 2.14.0
|
| 542 |
|
| 543 |
* Mon Mar 6 2006 Ray Strode <rstrode@redhat.com> - 2.13.144-1
|
| 544 |
- update to 2.13.144
|
| 545 |
- add bling patch from HEAD
|
| 546 |
|
| 547 |
* Sun Feb 19 2006 Ray Strode <rstrode@redhat.com> - 2.13.89.0.2006.02.17-2
|
| 548 |
- disable compositor on s390 s390x and ppc64
|
| 549 |
|
| 550 |
* Fri Feb 17 2006 Ray Strode <rstrode@redhat.com> - 2.13.89.0.2006.02.17-1
|
| 551 |
- Update to latest cvs snapshot to give meaningful failure error
|
| 552 |
messages
|
| 553 |
- Don't remove build root in install, because it triggers a
|
| 554 |
rebuild of metacity
|
| 555 |
|
| 556 |
* Thu Feb 16 2006 Ray Strode <rstrode@redhat.com> - 2.13.89.0.2006.02.16-1
|
| 557 |
- Update to cvs snapshot to add the ability to
|
| 558 |
runtime enable compositor
|
| 559 |
- change %%makeinstall to make install DESTDIR=..
|
| 560 |
|
| 561 |
* Mon Feb 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.89-1
|
| 562 |
- Update to 2.13.89
|
| 563 |
|
| 564 |
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.55-1.2
|
| 565 |
- bump again for double-long bug on ppc(64)
|
| 566 |
|
| 567 |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.55-1.1
|
| 568 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
| 569 |
|
| 570 |
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> 2.13.55-1
|
| 571 |
- Update to 2.13.55
|
| 572 |
|
| 573 |
* Thu Jan 26 2006 Matthias Clasen <mclasen@redhat.com> 2.13.34-1
|
| 574 |
- Update to 2.13.34
|
| 575 |
|
| 576 |
* Mon Jan 16 2006 Ray Strode <rstrode@redhat.com> 2.13.21-1
|
| 577 |
- Update to 2.13.21
|
| 578 |
|
| 579 |
* Fri Jan 13 2006 Matthias Clasen <mclasen@redhat.com> 2.13.13-1
|
| 580 |
- Update to 2.13.13
|
| 581 |
|
| 582 |
* Tue Jan 03 2006 Matthias Clasen <mclasen@redhat.com> 2.13.8-1
|
| 583 |
- Update to 2.13.8
|
| 584 |
|
| 585 |
* Thu Dec 15 2005 Matthias Clasen <mclasen@redhat.com> 2.13.5-1
|
| 586 |
- Update to 2.13.5
|
| 587 |
|
| 588 |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
| 589 |
- rebuilt
|
| 590 |
|
| 591 |
* Thu Dec 1 2005 Matthias Clasen <mclasen@redhat.com> 2.13.3-1
|
| 592 |
- Update to 2.13.3
|
| 593 |
|
| 594 |
* Mon Nov 21 2005 Ray Strode <rstrode@redhat.com> 2.13.2-1
|
| 595 |
- Update to 2.13.2
|
| 596 |
|
| 597 |
* Fri Nov 18 2005 Bill Nottingham <notting@redhat.com>
|
| 598 |
- remove references to obsolete X11R6 paths
|
| 599 |
|
| 600 |
* Thu Oct 6 2005 Matthias Clasen <mclasen@redhat.com> 2.12.1-1
|
| 601 |
- Update to 2.12.1
|
| 602 |
|
| 603 |
* Thu Sep 8 2005 Matthias Clasen <mclasen@redhat.com> 2.12.0-1
|
| 604 |
- Update to 2.12.0
|
| 605 |
|
| 606 |
* Thu Sep 1 2005 Ray Strode <rstrode@redhat.com> 2.11.2-3
|
| 607 |
- truncate long window titles to 512 characters (bug 164071)
|
| 608 |
|
| 609 |
* Tue Aug 16 2005 Warren Togami <wtogami@redhat.com> 2.11.2-2
|
| 610 |
- rebuild for new cairo
|
| 611 |
|
| 612 |
* Tue Aug 9 2005 Ray Strode <rstrode@redhat.com> 2.11.2-1
|
| 613 |
- Update to 2.11.2 (fixes bug 163745)
|
| 614 |
|
| 615 |
* Fri Aug 5 2005 Matthias Clasen <mclasen@redhat.com> 2.11.1-1
|
| 616 |
- New upstream version
|
| 617 |
|
| 618 |
* Mon Jul 18 2005 Matthias Clasen <mclasen@redhat.com> 2.11.0-3
|
| 619 |
- fix xcursor detection
|
| 620 |
|
| 621 |
* Wed Jul 13 2005 Matthias Clasen <mclasen@redhat.com> 2.11.0-1
|
| 622 |
- newer upstream version
|
| 623 |
|
| 624 |
* Mon May 30 2005 Warren Togami <wtogami@redhat.com> 2.10.0-2
|
| 625 |
- raise demands attention (#157271 newren)
|
| 626 |
|
| 627 |
* Sun Apr 3 2005 Ray Strode <rstrode@redhat.com> 2.10.0-1
|
| 628 |
- Update to 2.10.0
|
| 629 |
|
| 630 |
* Thu Mar 17 2005 Matthias Clasen <mclasen@redhat.com> 2.9.21-2
|
| 631 |
- Switch to Clearlooks as default theme
|
| 632 |
|
| 633 |
* Mon Feb 28 2005 Matthias Clasen <mclasen@redhat.com> 2.9.21-1
|
| 634 |
- Update to 2.9.21
|
| 635 |
|
| 636 |
* Wed Feb 9 2005 Matthias Clasen <mclasen@redhat.com> 2.9.13-1
|
| 637 |
- Update to 2.9.13
|
| 638 |
|
| 639 |
* Fri Jan 28 2005 Matthias Clasen <mclasen@redhat.com> 2.9.8-1
|
| 640 |
- Update to 2.9.8
|
| 641 |
|
| 642 |
* Sat Oct 16 2004 Havoc Pennington <hp@redhat.com> 2.8.6-2
|
| 643 |
- remove all the rerunning of autotools, intltool, etc. cruft; seemed to be breaking build
|
| 644 |
|
| 645 |
* Fri Oct 15 2004 Havoc Pennington <hp@redhat.com> 2.8.6-1
|
| 646 |
- upgrade to 2.8.6, fixes a lot of focus bugs primarily.
|
| 647 |
|
| 648 |
* Fri Oct 15 2004 Soren Sandmann <sandmann@redhat.com> - 2.8.5-3
|
| 649 |
- Kludge around right alt problem (#132379)
|
| 650 |
|
| 651 |
* Mon Oct 11 2004 Alexander Larsson <alexl@redhat.com> - 2.8.5-2
|
| 652 |
- Require startup-notification 0.7 (without this we'll crash)
|
| 653 |
|
| 654 |
* Thu Sep 23 2004 Alexander Larsson <alexl@redhat.com> - 2.8.5-1
|
| 655 |
- update to 2.8.5
|
| 656 |
|
| 657 |
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 2.8.4-1
|
| 658 |
- update to 2.8.4
|
| 659 |
|
| 660 |
* Tue Aug 24 2004 Warren Togami <wtogami@redhat.com> 2.8.3-1
|
| 661 |
- update to 2.8.3
|
| 662 |
|
| 663 |
* Thu Aug 5 2004 Mark McLoughlin <markmc@redhat.com> 2.8.2-1
|
| 664 |
- Update to 2.8.2
|
| 665 |
- Remove systemfont patch - upstream now
|
| 666 |
|
| 667 |
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
| 668 |
- rebuilt
|
| 669 |
|
| 670 |
* Thu May 6 2004 Havoc Pennington <hp@redhat.com> 2.8.1-2
|
| 671 |
- fix mangled Summary
|
| 672 |
|
| 673 |
* Thu May 6 2004 Havoc Pennington <hp@redhat.com> 2.8.1-1
|
| 674 |
- 2.8.1
|
| 675 |
|
| 676 |
* Thu Apr 1 2004 Alex Larsson <alexl@redhat.com> 2.8.0-1
|
| 677 |
- update to 2.8.0
|
| 678 |
|
| 679 |
* Wed Mar 10 2004 Mark McLoughlin <markmc@redhat.com> 2.7.1-1
|
| 680 |
- Update to 2.7.1
|
| 681 |
|
| 682 |
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
| 683 |
- rebuilt
|
| 684 |
|
| 685 |
* Wed Feb 25 2004 Alexander Larsson <alexl@redhat.com> 2.7.0-1
|
| 686 |
- update to 2.7.0
|
| 687 |
- removed reduced resouces patch (its now upstream)
|
| 688 |
|
| 689 |
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
| 690 |
- rebuilt
|
| 691 |
|
| 692 |
* Mon Oct 27 2003 Havoc Pennington <hp@redhat.com> 2.6.3-1
|
| 693 |
- 2.6.3
|
| 694 |
|
| 695 |
* Wed Oct 1 2003 Havoc Pennington <hp@redhat.com> 2.6.2-1
|
| 696 |
- 2.6.2
|
| 697 |
|
| 698 |
* Thu Sep 4 2003 Havoc Pennington <hp@redhat.com> 2.5.3-3
|
| 699 |
- put reduced resources patch back in
|
| 700 |
|
| 701 |
* Fri Aug 22 2003 Elliot Lee <sopwith@redhat.com> 2.5.3-2
|
| 702 |
- Work around libXrandr need for extra $LIBS
|
| 703 |
|
| 704 |
* Fri Aug 15 2003 Alexander Larsson <alexl@redhat.com> 2.5.3-1
|
| 705 |
- update for gnome 2.3
|
| 706 |
|
| 707 |
* Mon Jul 28 2003 Havoc Pennington <hp@redhat.com> 2.4.55-7
|
| 708 |
- rebuild
|
| 709 |
|
| 710 |
* Mon Jul 28 2003 Havoc Pennington <hp@redhat.com> 2.4.55-6
|
| 711 |
- backport the "reduced_resources" patch with wireframe
|
| 712 |
|
| 713 |
* Mon Jul 07 2003 Christopher Blizzard <blizzard@redhat.com> 2.4.55-4
|
| 714 |
- add patch to fix mouse down problems in mozilla
|
| 715 |
|
| 716 |
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
| 717 |
- rebuilt
|
| 718 |
|
| 719 |
* Thu May 29 2003 Havoc Pennington <hp@redhat.com> 2.4.55-2
|
| 720 |
- rebuild
|
| 721 |
|
| 722 |
* Thu May 29 2003 Havoc Pennington <hp@redhat.com> 2.4.55-1
|
| 723 |
- 2.4.55
|
| 724 |
|
| 725 |
* Wed May 14 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
| 726 |
- add proper ldconfig calls for shared libs
|
| 727 |
|
| 728 |
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
|
| 729 |
- rebuilt
|
| 730 |
|
| 731 |
* Fri Feb 21 2003 Havoc Pennington <hp@redhat.com> 2.4.34-2
|
| 732 |
- fix a crash in multihead situations, #84412
|
| 733 |
|
| 734 |
* Wed Feb 5 2003 Havoc Pennington <hp@redhat.com> 2.4.34-1
|
| 735 |
- 2.4.34
|
| 736 |
- try disabling smp_mflags and see if it fixes build
|
| 737 |
|
| 738 |
* Wed Jan 22 2003 Havoc Pennington <hp@redhat.com>
|
| 739 |
- 2.4.21.90 with a bunch o' fixes
|
| 740 |
|
| 741 |
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
| 742 |
- rebuilt
|
| 743 |
|
| 744 |
* Thu Jan 16 2003 Havoc Pennington <hp@redhat.com>
|
| 745 |
- bind Ctrl+Alt+Del to logout, #72973
|
| 746 |
|
| 747 |
* Wed Jan 15 2003 Havoc Pennington <hp@redhat.com>
|
| 748 |
- 2.4.13.90 cvs snap with event queue lag fix
|
| 749 |
|
| 750 |
* Fri Jan 10 2003 Havoc Pennington <hp@redhat.com>
|
| 751 |
- 2.4.13
|
| 752 |
|
| 753 |
* Thu Dec 12 2002 Havoc Pennington <hp@redhat.com>
|
| 754 |
- 2.4.8
|
| 755 |
|
| 756 |
* Mon Dec 2 2002 Havoc Pennington <hp@redhat.com>
|
| 757 |
- 2.4.5.90
|
| 758 |
- add little script after configure that checks what config.h
|
| 759 |
contains, to be sure we detected all the right features.
|
| 760 |
|
| 761 |
* Tue Oct 29 2002 Havoc Pennington <hp@redhat.com>
|
| 762 |
- 2.4.3
|
| 763 |
- remove patches that have gone upstream
|
| 764 |
|
| 765 |
* Tue Aug 27 2002 Havoc Pennington <hp@redhat.com>
|
| 766 |
- fix shaded window decorations in Bluecurve theme
|
| 767 |
|
| 768 |
* Sat Aug 24 2002 Havoc Pennington <hp@redhat.com>
|
| 769 |
- fix the mplayer-disappears-on-de-fullscreen bug
|
| 770 |
|
| 771 |
* Sat Aug 24 2002 Havoc Pennington <hp@redhat.com>
|
| 772 |
- add some fixes from CVS for #71163 #72379 #72478 #72513
|
| 773 |
|
| 774 |
* Thu Aug 22 2002 Havoc Pennington <hp@redhat.com>
|
| 775 |
- patch .schemas.in instead of .schemas so we get right default theme/fonts
|
| 776 |
|
| 777 |
* Tue Aug 20 2002 Havoc Pennington <hp@redhat.com>
|
| 778 |
- grow size of top resize, and display proper cursor on enter notify
|
| 779 |
- require latest intltool to try and fix metacity.schemas by
|
| 780 |
regenerating it in non-UTF-8 locale
|
| 781 |
|
| 782 |
* Thu Aug 15 2002 Havoc Pennington <hp@redhat.com>
|
| 783 |
- default to Sans Bold font, fixes #70920 and matches graphic design spec
|
| 784 |
|
| 785 |
* Thu Aug 15 2002 Havoc Pennington <hp@redhat.com>
|
| 786 |
- 2.4.0.91 with raise/lower keybindings for msf, fixes to fullscreen
|
| 787 |
- more apps that probably intend to be, fix for changing number of
|
| 788 |
workspaces, fix for moving windows in multihead
|
| 789 |
|
| 790 |
* Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
|
| 791 |
- update build requires
|
| 792 |
|
| 793 |
* Mon Aug 12 2002 Havoc Pennington <hp@redhat.com>
|
| 794 |
- upgrade to cvs snap 2.4.0.90 with pile of bugfixes from
|
| 795 |
this weekend
|
| 796 |
- change default theme to bluecurve and require new redhat-artwork
|
| 797 |
|
| 798 |
* Tue Aug 6 2002 Havoc Pennington <hp@redhat.com>
|
| 799 |
- 2.4.0
|
| 800 |
- themes are moved, require appropriate redhat-artwork
|
| 801 |
|
| 802 |
* Thu Aug 1 2002 Havoc Pennington <hp@redhat.com>
|
| 803 |
- munge the desktop file to be in toplevel menus and
|
| 804 |
not show in KDE
|
| 805 |
|
| 806 |
* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
|
| 807 |
- don't use system font by default as metacity's
|
| 808 |
font is now in the system font dialog
|
| 809 |
|
| 810 |
* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
|
| 811 |
- 2.3.987.92 cvs snap
|
| 812 |
|
| 813 |
* Fri Jul 12 2002 Havoc Pennington <hp@redhat.com>
|
| 814 |
- 2.3.987.91 cvs snap
|
| 815 |
|
| 816 |
* Mon Jun 24 2002 Havoc Pennington <hp@redhat.com>
|
| 817 |
- 2.3.987.90 cvs snap
|
| 818 |
|
| 819 |
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
| 820 |
- automated rebuild
|
| 821 |
|
| 822 |
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
|
| 823 |
- rebuild for new libraries
|
| 824 |
|
| 825 |
* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
|
| 826 |
- rebuild in different environment
|
| 827 |
|
| 828 |
* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
|
| 829 |
- 2.3.987
|
| 830 |
- default to redhat theme
|
| 831 |
|
| 832 |
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
|
| 833 |
- rebuild in different environment
|
| 834 |
|
| 835 |
* Tue Jun 4 2002 Havoc Pennington <hp@redhat.com>
|
| 836 |
- 2.3.610.90 cvs snap
|
| 837 |
|
| 838 |
* Sun May 26 2002 Tim Powers <timp@redhat.com>
|
| 839 |
- automated rebuild
|
| 840 |
|
| 841 |
* Mon May 20 2002 Havoc Pennington <hp@redhat.com>
|
| 842 |
- rebuild in different environment
|
| 843 |
|
| 844 |
* Fri May 17 2002 Havoc Pennington <hp@redhat.com>
|
| 845 |
- 2.3.377
|
| 846 |
|
| 847 |
* Thu May 2 2002 Havoc Pennington <hp@redhat.com>
|
| 848 |
- 2.3.233
|
| 849 |
|
| 850 |
* Thu Apr 25 2002 Havoc Pennington <hp@redhat.com>
|
| 851 |
- rebuild in different environment
|
| 852 |
- add gconf schemas boilerplate
|
| 853 |
|
| 854 |
* Mon Apr 15 2002 Havoc Pennington <hp@pobox.com>
|
| 855 |
- 2.3.89
|
| 856 |
|
| 857 |
* Tue Oct 30 2001 Havoc Pennington <hp@redhat.com>
|
| 858 |
- 2.3.34
|
| 859 |
|
| 860 |
* Fri Oct 13 2001 Havoc Pennington <hp@redhat.com>
|
| 861 |
- 2.3.21
|
| 862 |
|
| 863 |
* Mon Sep 17 2001 Havoc Pennington <hp@redhat.com>
|
| 864 |
- 2.3.8
|
| 865 |
- 2.3.13
|
| 866 |
|
| 867 |
* Wed Sep 5 2001 Havoc Pennington <hp@redhat.com>
|
| 868 |
- Initial build.
|
| 869 |
|
| 870 |
|