forked from pool/gnome-desktop
This commit is contained in:
parent
c62d7ce8f2
commit
eef279453f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1d9a2244a1f6521ec584d3d79c9a757373717e0f93c6617a97bbc98e4034f31
|
||||
size 1443150
|
3
gnome-desktop-2.23.3.tar.bz2
Normal file
3
gnome-desktop-2.23.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2af2fa7c1ae9a702b4122eb850efda7f3cc451d14a3591ba8daac4a9362186c
|
||||
size 1446276
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 16 20:20:29 CEST 2008 - maw@suse.de
|
||||
|
||||
- Update to version 2.23.3:
|
||||
+ libgnome-desktop:
|
||||
* Do not force the top-left corner of the image to fit in
|
||||
the screen, so that zoomed image appears to be zoomed from
|
||||
the center of the screen
|
||||
* Add gnome_bg_load_from_preferences(), so applications don't
|
||||
have to rely on libbackground
|
||||
* GnomeBG: Fix some logic errors wrt to caching of slideshows
|
||||
that may cause nautilus crashes
|
||||
* GnomeBG: Support multi-resolution backgrounds
|
||||
* GnomeBG: Falls back to the default image if the user's
|
||||
background doesn't exist
|
||||
* GnomeBG: Prevent loops caused by setting URI
|
||||
* GnomeBG: Fix leak
|
||||
* GnomeBG: Get rid of URIs and only use paths
|
||||
* GnomeBG: Make sure tiles are at least 24 pixels wide
|
||||
* GnomeBG: Some tweaks to the tile scaling heuristic
|
||||
* GnomeBG: Small fixes
|
||||
* GnomeBG: Add getters for the various properties
|
||||
* GnomeBG: Monitor the image file
|
||||
+ gnome-about:
|
||||
* Don't skip the last description from gnome-version.xml (Matt Keenan)
|
||||
* Convert the strftime() output to UTF-8 (Takao Fujiwara)
|
||||
+ Updated translations
|
||||
- Rename the libgnome-desktop shared library subpackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 29 20:38:11 CEST 2008 - federico@novell.com
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package gnome-desktop (Version 2.22.1)
|
||||
# spec file for package gnome-desktop (Version 2.23.3)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -16,8 +16,8 @@ BuildRequires: fdupes gnome-common gnome-doc-utils gnome-doc-utils-devel gtk-do
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GPL v2 or later; LGPL v2.1 or later
|
||||
Group: System/GUI/GNOME
|
||||
Obsoletes: gnome-core
|
||||
Version: 2.22.1
|
||||
Release: 23
|
||||
Version: 2.23.3
|
||||
Release: 1
|
||||
Summary: The GNOME Desktop API Library
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Url: http://www.gnome.org
|
||||
@ -30,7 +30,7 @@ Patch3: gnome-desktop-recently-used-apps.patch
|
||||
# PATCH-FEATURE-UPSTREAM gnome-desktop-randr-1.2.diff -- Add support for RandR 1.2 to the libraries. federico@novell.com
|
||||
Patch4: gnome-desktop-randr-1.2.diff
|
||||
Requires: %{name}-lang = %{version}
|
||||
Requires: libgnome-desktop-2-2 = %{version}
|
||||
Requires: libgnome-desktop-2-7 = %{version}
|
||||
|
||||
%description
|
||||
This package contains the libgnome-desktop library that contains APIs
|
||||
@ -52,13 +52,13 @@ Authors:
|
||||
Havoc Pennington <hp@redhat.com>
|
||||
Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
%package -n libgnome-desktop-2-2
|
||||
%package -n libgnome-desktop-2-7
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GPL v2 or later; LGPL v2.1 or later
|
||||
Summary: The GNOME Desktop API Library
|
||||
Group: System/GUI/GNOME
|
||||
Requires: %{name} >= %{version}
|
||||
|
||||
%description -n libgnome-desktop-2-2
|
||||
%description -n libgnome-desktop-2-7
|
||||
This package contains the libgnome-desktop library that contains APIs
|
||||
that really belong in libgnome/libgnomeui but have not seen enough
|
||||
testing or development to be considered stable. Use them at your own
|
||||
@ -149,9 +149,9 @@ make %{?jobs:-j%jobs}
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post -n libgnome-desktop-2-2 -p /sbin/ldconfig
|
||||
%post -n libgnome-desktop-2-7 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgnome-desktop-2-2 -p /sbin/ldconfig
|
||||
%postun -n libgnome-desktop-2-7 -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr (-, root, root)
|
||||
@ -164,7 +164,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/pixmaps/*.xpm
|
||||
%doc %{_mandir}/man?/*.*
|
||||
|
||||
%files -n libgnome-desktop-2-2
|
||||
%files -n libgnome-desktop-2-7
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
@ -182,6 +182,32 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/gtk-doc/html/gnome-desktop
|
||||
|
||||
%changelog
|
||||
* Mon Jun 16 2008 maw@suse.de
|
||||
- Update to version 2.23.3:
|
||||
+ libgnome-desktop:
|
||||
* Do not force the top-left corner of the image to fit in
|
||||
the screen, so that zoomed image appears to be zoomed from
|
||||
the center of the screen
|
||||
* Add gnome_bg_load_from_preferences(), so applications don't
|
||||
have to rely on libbackground
|
||||
* GnomeBG: Fix some logic errors wrt to caching of slideshows
|
||||
that may cause nautilus crashes
|
||||
* GnomeBG: Support multi-resolution backgrounds
|
||||
* GnomeBG: Falls back to the default image if the user's
|
||||
background doesn't exist
|
||||
* GnomeBG: Prevent loops caused by setting URI
|
||||
* GnomeBG: Fix leak
|
||||
* GnomeBG: Get rid of URIs and only use paths
|
||||
* GnomeBG: Make sure tiles are at least 24 pixels wide
|
||||
* GnomeBG: Some tweaks to the tile scaling heuristic
|
||||
* GnomeBG: Small fixes
|
||||
* GnomeBG: Add getters for the various properties
|
||||
* GnomeBG: Monitor the image file
|
||||
+ gnome-about:
|
||||
* Don't skip the last description from gnome-version.xml (Matt Keenan)
|
||||
* Convert the strftime() output to UTF-8 (Takao Fujiwara)
|
||||
+ Updated translations
|
||||
- Rename the libgnome-desktop shared library subpackage.
|
||||
* Thu May 29 2008 federico@novell.com
|
||||
- Updated gnome-desktop-randr-1.2.diff with the latest fixes from upstream.
|
||||
* Sun May 11 2008 coolo@suse.de
|
||||
|
Loading…
Reference in New Issue
Block a user