Accepting request 103174 from home:vuntz:branches:GNOME:Factory
Update to 3.3.5 OBS-URL: https://build.opensuse.org/request/show/103174 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=99
This commit is contained in:
parent
84fbaf4c7c
commit
e64fcd50c2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f11189862ec3c5d3b94a67f4b89ec0a654c9f83f56c91cff485aa013577a0aa
|
||||
size 1244756
|
3
gnome-shell-3.3.5.tar.xz
Normal file
3
gnome-shell-3.3.5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:955414130061746eba09f77a16a25d3af59ed087a912b801d0674ec6f4ea6b3d
|
||||
size 1251976
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 8 06:48:29 UTC 2012 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 3.3.5:
|
||||
+ Extension system: [bgo#668429]
|
||||
http://blog.mecheye.net/2012/02/more-extension-api-breaks/
|
||||
- Add a 'gnome-shell-extension-prefs' application for displaying
|
||||
extension preferences as provided by the extension in a
|
||||
prefs.js file.
|
||||
- Allow launching gnome-shell-extension-prefs from
|
||||
extensions.gnome.org through the browser plugin.
|
||||
- Add ExtensionUtils.getCurrentExtension() for an extension to
|
||||
get a handle to an extension object, to get local imports or
|
||||
paths.
|
||||
- Add an onshellrestart callback to the browser plugin
|
||||
[bgo#668517]
|
||||
+ Screenshots:
|
||||
- Move the screenshot "flash" to the shell [bgo#668618]
|
||||
- Move saving screenshots to a thread [bgo#652952]
|
||||
- Correctly screenshot rounded decorations [bgo#662486]
|
||||
+ Screen recorder:
|
||||
- Change the default pipeline to favor speed over quality
|
||||
[bgo#669066]
|
||||
- Drop frames to keep from running the user out of memory
|
||||
[bgo#669066]
|
||||
+ Work around a slow implementation of glReadPixels() in the
|
||||
Intel drivers, improving performance for screenshots and the
|
||||
screen recorder [bgo#669065]
|
||||
+ Use Keywords field in desktop files when search for
|
||||
applications [bgo#609702]
|
||||
+ Strip debian- when matching desktop file names [bgo#665647]
|
||||
+ Fix up various problems from CSS background size-addition
|
||||
[bgo#668430, bgo#633462]
|
||||
+ UI tweaks and behavior fixes [bgo#643867, bgo#666197,
|
||||
bgo#664622]
|
||||
+ Some improvements to exported accessibility information
|
||||
[bgo#667376]
|
||||
+ Don't show contacts without IM information as offline
|
||||
[bgo#662685]
|
||||
+ Don't change status from hidden to extended_away when going
|
||||
idle [bgo#642408]
|
||||
+ Cleanups [bgo#662152, bgo#669239]
|
||||
+ Misc bug fixes [bgo#633462, bgo#643867, bgo#662213, bgo#662386,
|
||||
bgo#662747, bgo#665000, bgo#665017, bgo#665322, bgo#667371,
|
||||
bgo#667860, bgo#668020, bgo#668517, bgo#668541, bgo#669236]
|
||||
+ Updated translations.
|
||||
- Remove xz BuildRequires now that it comes for free in the build
|
||||
system.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 21 09:25:33 UTC 2012 - vuntz@opensuse.org
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
Name: gnome-shell
|
||||
Version: 3.3.4
|
||||
Version: 3.3.5
|
||||
Release: 0
|
||||
Summary: GNOME Shell
|
||||
License: GPL-2.0+
|
||||
@ -28,8 +28,6 @@ BuildRequires: translation-update-upstream
|
||||
BuildRequires: update-desktop-files
|
||||
# needed for directory ownership
|
||||
BuildRequires: dbus-1
|
||||
# Only needed because we don't (and won't) support building xz tarballs by default... See bnc#697467
|
||||
BuildRequires: xz
|
||||
BuildRequires: pkgconfig(clutter-1.0) >= 1.7.5
|
||||
BuildRequires: pkgconfig(folks) >= 0.5.2
|
||||
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
|
||||
@ -48,7 +46,7 @@ BuildRequires: pkgconfig(libcanberra)
|
||||
BuildRequires: pkgconfig(libcroco-0.6)
|
||||
BuildRequires: pkgconfig(libedataserver-1.2) >= 1.2.0
|
||||
BuildRequires: pkgconfig(libgnome-menu-3.0)
|
||||
BuildRequires: pkgconfig(libmutter) >= 3.3.3
|
||||
BuildRequires: pkgconfig(libmutter) >= 3.3.5
|
||||
BuildRequires: pkgconfig(libnm-glib)
|
||||
BuildRequires: pkgconfig(libnm-util)
|
||||
BuildRequires: pkgconfig(libpulse-mainloop-glib)
|
||||
@ -139,6 +137,7 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
||||
install -d %{buildroot}%{_datadir}/gnome-shell/extensions
|
||||
%find_lang %{name} %{?no_lang_C}
|
||||
%suse_update_desktop_file %{name}
|
||||
%suse_update_desktop_file gnome-shell-extension-prefs
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
@ -155,6 +154,7 @@ rm -rf %{buildroot}
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING README NEWS
|
||||
%{_bindir}/gnome-shell
|
||||
%{_bindir}/gnome-shell-extension-prefs
|
||||
%{_bindir}/gnome-shell-extension-tool
|
||||
%{_libexecdir}/gnome-shell/
|
||||
%if "%{_libdir}" != "%{_libexecdir}"
|
||||
@ -164,6 +164,7 @@ rm -rf %{buildroot}
|
||||
%dir %{_datadir}/GConf/gsettings
|
||||
%{_datadir}/GConf/gsettings/gnome-shell-overrides.convert
|
||||
%{_datadir}/applications/gnome-shell.desktop
|
||||
%{_datadir}/applications/gnome-shell-extension-prefs.desktop
|
||||
%{_datadir}/dbus-1/services/org.gnome.Shell.CalendarServer.service
|
||||
%{_datadir}/dbus-1/services/org.gnome.Shell.HotplugSniffer.service
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.shell.gschema.xml
|
||||
|
Loading…
Reference in New Issue
Block a user