Accepting request 657734 from GNOME:Next
New stable release OBS-URL: https://build.opensuse.org/request/show/657734 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gtk3?expand=0&rev=334
This commit is contained in:
parent
68d7bfc142
commit
5d8254b6b2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:68387be307b99aadcdc653561d7a2a7f0113b93561fb18ded7075ec9ced5b02f
|
||||
size 19307612
|
3
gtk+-3.24.2.tar.xz
Normal file
3
gtk+-3.24.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b3b05e427cc928d103561ed2e91b2b2881fe88b1f167b0b1c9990da6aac8892
|
||||
size 21731348
|
33
gtk3-revert-Fix-deprecation-warnings.patch
Normal file
33
gtk3-revert-Fix-deprecation-warnings.patch
Normal file
@ -0,0 +1,33 @@
|
||||
From 2905fc861acda3d134a198e56ef2f6c962ad3061 Mon Sep 17 00:00:00 2001
|
||||
From: Daniel Boles <dboles.src@gmail.com>
|
||||
Date: Wed, 12 Dec 2018 19:03:11 +0000
|
||||
Subject: [PATCH] Revert "Fix deprecation warnings"
|
||||
|
||||
This reverts commit 5aedfe048b0fe07382433f1a78ec5bd26acd82dd.
|
||||
|
||||
It had a typo that broke the build, only replaced half of the uses, and
|
||||
replaced them with other functions that are also deprecated anyway.
|
||||
---
|
||||
docs/tools/shooter.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/docs/tools/shooter.c b/docs/tools/shooter.c
|
||||
index 3d910c6ab8..8cefa8bbf7 100644
|
||||
--- a/docs/tools/shooter.c
|
||||
+++ b/docs/tools/shooter.c
|
||||
@@ -170,10 +170,10 @@ take_window_shot (Window child,
|
||||
y_orig = 0;
|
||||
}
|
||||
|
||||
- if (x_orig + width > gdk_screen_get_width (gdk_screen_get_dfeault ()))
|
||||
+ if (x_orig + width > gdk_screen_width ())
|
||||
width = gdk_screen_width () - x_orig;
|
||||
|
||||
- if (y_orig + height > gdk_screen_get_height (gdk_screen_get_default ()))
|
||||
+ if (y_orig + height > gdk_screen_height ())
|
||||
height = gdk_screen_height () - y_orig;
|
||||
|
||||
tmp = gdk_pixbuf_get_from_window (window,
|
||||
--
|
||||
2.18.1
|
||||
|
32
gtk3.changes
32
gtk3.changes
@ -1,3 +1,35 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 13 05:31:08 UTC 2018 - bjorn.lie@gmail.com
|
||||
|
||||
- Update to version 3.24.2:
|
||||
+ new api: gdk_x11_display_get_parent_relative pattern.
|
||||
+ wayland: Use the settings portal when sandboxed.
|
||||
+ Bugs fixed:
|
||||
- widget-factory: Move app menu contents to primary menu.
|
||||
- Make dashed border-style work correctly.
|
||||
- gtkstack: fix null pointer dereference.
|
||||
- GDK W32: Support switching input modules at runtime.
|
||||
- Tooltip: Fix the used cursor size if 0 in Settings.
|
||||
- quartz: Fix crash when realizing GtkOffscreenWindow.
|
||||
- win32 dnd: Fix setting icon on drag-begin.
|
||||
- Fix race in GtkPlug window creation.
|
||||
- widget-factory: Add Keyboard Shortcuts menu item.
|
||||
- quartz: do not cache the screen in the gdkmonitor.
|
||||
- Trash in side bar sometimes contains a home icon.
|
||||
- wayland: Avoid crashes inside wl_proxy_marshal.
|
||||
- gtkimcontextime.c: Fix Korean input.
|
||||
- entry: Handle no-window events in gtk_entry_event.
|
||||
- Tooltip: Fix the used cursor size if 0 in Setting.
|
||||
- Notebook: Ensure menu_label updates with tab_label.
|
||||
- Adwaita: Improve headerbar theming.
|
||||
- win32: Make scroll behavior similar to Linux.
|
||||
- fix symbolic icon rendering with new librsvg.
|
||||
- emoji selector: force Emoji presentation.
|
||||
- a11y: fix a crash under wayland.
|
||||
+ Updated translations.
|
||||
- Add gtk3-revert-Fix-deprecation-warnings.patch: Revert "Fix
|
||||
deprecation warnings", fixes build.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 12 15:57:06 UTC 2018 - mgorse@suse.com
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
%define _name gtk+
|
||||
%bcond_without broadway
|
||||
Name: gtk3
|
||||
Version: 3.24.1
|
||||
Version: 3.24.2
|
||||
Release: 0
|
||||
Summary: The GTK+ toolkit library (version 3)
|
||||
License: LGPL-2.1-or-later
|
||||
@ -39,6 +39,8 @@ Patch0: gtk3-GTK_PATH64.patch
|
||||
Patch1: gtk3-revert-forced-xftdpi.patch
|
||||
# PATCH-FEATURE-UPSTREAM gtk3-atk-table-cell.patch fate#326548 mgorse@suse.com -- a11y: add support for AtkTableCell.
|
||||
Patch2: gtk3-atk-table-cell.patch
|
||||
# PATCH-FIX-UPSTREAM gtk3-revert-Fix-deprecation-warnings.patch -- Revert "Fix deprecation warnings", fixes build.
|
||||
Patch3: gtk3-revert-Fix-deprecation-warnings.patch
|
||||
|
||||
BuildRequires: cups-devel >= 1.2
|
||||
BuildRequires: docbook-xsl-stylesheets
|
||||
@ -371,6 +373,7 @@ cp -a %{SOURCE1} .
|
||||
%endif
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
|
||||
%build
|
||||
%configure \
|
||||
|
Loading…
Reference in New Issue
Block a user