Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c04d96a864 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/gtk-4.12.3.tar.xz
|
||||
gtk-4.16.7.tar.xz
|
||||
|
||||
@ -1 +0,0 @@
|
||||
15aa7f4023ac98ca4f4013431a016162cd05a23e SOURCES/gtk-4.12.3.tar.xz
|
||||
52
0001-Filechooser-Fix-a-focus-mishap.patch
Normal file
52
0001-Filechooser-Fix-a-focus-mishap.patch
Normal file
@ -0,0 +1,52 @@
|
||||
From 9ef20fbf3e9f93e28d54e84731b90a1cd40bcc8e Mon Sep 17 00:00:00 2001
|
||||
From: Matthias Clasen <mclasen@redhat.com>
|
||||
Date: Mon, 25 Nov 2024 18:25:00 -0500
|
||||
Subject: [PATCH] Filechooser: Fix a focus mishap
|
||||
|
||||
When the focus is on the server entry in the places view, we
|
||||
don't want to steal key events to start a search.
|
||||
---
|
||||
gtk/gtkfilechooserwidget.c | 11 +++++++++--
|
||||
1 file changed, 9 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
|
||||
index e10bebda21..791e82c578 100644
|
||||
--- a/gtk/gtkfilechooserwidget.c
|
||||
+++ b/gtk/gtkfilechooserwidget.c
|
||||
@@ -93,6 +93,7 @@
|
||||
#include "gtkmultisorter.h"
|
||||
#include "gtkcolumnviewsorter.h"
|
||||
#include "gtkexpression.h"
|
||||
+#include "gtkactionbar.h"
|
||||
|
||||
#ifndef G_OS_WIN32
|
||||
#include "gtkopenuriportal.h"
|
||||
@@ -6833,6 +6834,8 @@ captured_key (GtkEventControllerKey *controller,
|
||||
{
|
||||
GtkFileChooserWidget *impl = data;
|
||||
gboolean handled;
|
||||
+ GtkWidget *focus;
|
||||
+ GtkWidget *ancestor;
|
||||
|
||||
if (impl->operation_mode == OPERATION_MODE_SEARCH ||
|
||||
impl->operation_mode == OPERATION_MODE_ENTER_LOCATION ||
|
||||
@@ -6843,10 +6846,14 @@ captured_key (GtkEventControllerKey *controller,
|
||||
if (keyval == GDK_KEY_slash || keyval == GDK_KEY_asciitilde || keyval == GDK_KEY_period)
|
||||
return GDK_EVENT_PROPAGATE;
|
||||
|
||||
+ focus = gtk_root_get_focus (gtk_widget_get_root (GTK_WIDGET (impl)));
|
||||
+
|
||||
+ ancestor = gtk_widget_get_ancestor (focus, GTK_TYPE_ACTION_BAR);
|
||||
+ if (ancestor && gtk_widget_is_ancestor (ancestor, impl->places_view))
|
||||
+ return GDK_EVENT_PROPAGATE;
|
||||
+
|
||||
if (impl->location_entry)
|
||||
{
|
||||
- GtkWidget *focus = gtk_root_get_focus (gtk_widget_get_root (GTK_WIDGET (impl)));
|
||||
-
|
||||
if (focus && gtk_widget_is_ancestor (focus, impl->location_entry))
|
||||
return GDK_EVENT_PROPAGATE;
|
||||
}
|
||||
--
|
||||
2.48.1
|
||||
|
||||
62
0001-placesview-Use-gtk3-servers-if-available.patch
Normal file
62
0001-placesview-Use-gtk3-servers-if-available.patch
Normal file
@ -0,0 +1,62 @@
|
||||
From 4194bc26356bbab819ad25807cacd92e18821a10 Mon Sep 17 00:00:00 2001
|
||||
From: Matthias Clasen <mclasen@redhat.com>
|
||||
Date: Tue, 18 Mar 2025 22:03:05 -0400
|
||||
Subject: [PATCH] placesview: Use gtk3 servers if available
|
||||
|
||||
If .config/gtk-4.0/servers does not exist, but
|
||||
.config/gtk-3.0/servers does, copy it over and use it.
|
||||
---
|
||||
gtk/gtkplacesview.c | 31 +++++++++++++++++++++++++------
|
||||
1 file changed, 25 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/gtk/gtkplacesview.c b/gtk/gtkplacesview.c
|
||||
index 1a477999e7..c8a1ea60aa 100644
|
||||
--- a/gtk/gtkplacesview.c
|
||||
+++ b/gtk/gtkplacesview.c
|
||||
@@ -207,18 +207,37 @@ server_list_load (GtkPlacesView *view)
|
||||
g_mkdir_with_parents (datadir, 0700);
|
||||
g_bookmark_file_load_from_file (bookmarks, filename, &error);
|
||||
|
||||
- if (error)
|
||||
+ if (g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
|
||||
{
|
||||
- if (!g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
|
||||
+ char *old_datadir;
|
||||
+ char *old_filename;
|
||||
+ char *contents = NULL;
|
||||
+ gsize length;
|
||||
+
|
||||
+ old_datadir = g_build_filename (g_get_user_config_dir (), "gtk-3.0", NULL);
|
||||
+ old_filename = g_build_filename (datadir, "servers", NULL);
|
||||
+ if (g_file_get_contents (old_filename, &contents, &length, NULL) &&
|
||||
+ g_file_set_contents (filename, contents, length, NULL))
|
||||
{
|
||||
- /* only warn if the file exists */
|
||||
- g_warning ("Unable to open server bookmarks: %s", error->message);
|
||||
- g_clear_pointer (&bookmarks, g_bookmark_file_free);
|
||||
+ g_clear_error (&error);
|
||||
+ g_bookmark_file_load_from_file (bookmarks, filename, &error);
|
||||
}
|
||||
|
||||
- g_clear_error (&error);
|
||||
+ g_free (contents);
|
||||
+ g_free (old_filename);
|
||||
+ g_free (old_datadir);
|
||||
}
|
||||
|
||||
+ if (error &&
|
||||
+ !g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
|
||||
+ {
|
||||
+ /* only warn if the file exists */
|
||||
+ g_warning ("Unable to open server bookmarks: %s", error->message);
|
||||
+ g_clear_pointer (&bookmarks, g_bookmark_file_free);
|
||||
+ }
|
||||
+
|
||||
+ g_clear_error (&error);
|
||||
+
|
||||
/* Monitor the file in case it's modified outside this code */
|
||||
if (!view->server_list_monitor)
|
||||
{
|
||||
--
|
||||
2.49.0
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
24
gtk4-no-emoji-context-menu.patch
Normal file
24
gtk4-no-emoji-context-menu.patch
Normal file
@ -0,0 +1,24 @@
|
||||
diff -up gtk-4.16.7/gtk/gtktext.c.no-emoji-context-menu gtk-4.16.7/gtk/gtktext.c
|
||||
--- gtk-4.16.7/gtk/gtktext.c.no-emoji-context-menu 2025-03-10 14:20:33.230216455 -0400
|
||||
+++ gtk-4.16.7/gtk/gtktext.c 2025-03-10 14:20:46.104333590 -0400
|
||||
@@ -6304,7 +6304,7 @@ gtk_text_update_emoji_action (GtkText *s
|
||||
|
||||
gtk_widget_action_set_enabled (GTK_WIDGET (self), "misc.insert-emoji",
|
||||
priv->editable &&
|
||||
- (gtk_text_get_input_hints (self) & GTK_INPUT_HINT_NO_EMOJI) == 0);
|
||||
+ (gtk_text_get_input_hints (self) & GTK_INPUT_HINT_EMOJI) != 0);
|
||||
}
|
||||
|
||||
static GMenuModel *
|
||||
diff -up gtk-4.16.7/gtk/gtktextview.c.no-emoji-context-menu gtk-4.16.7/gtk/gtktextview.c
|
||||
--- gtk-4.16.7/gtk/gtktextview.c.no-emoji-context-menu 2025-03-10 14:19:58.237898072 -0400
|
||||
+++ gtk-4.16.7/gtk/gtktextview.c 2025-03-10 14:20:19.298344903 -0400
|
||||
@@ -9205,7 +9205,7 @@ static void
|
||||
gtk_text_view_update_emoji_action (GtkTextView *text_view)
|
||||
{
|
||||
gtk_widget_action_set_enabled (GTK_WIDGET (text_view), "misc.insert-emoji",
|
||||
- (gtk_text_view_get_input_hints (text_view) & GTK_INPUT_HINT_NO_EMOJI) == 0 &&
|
||||
+ (gtk_text_view_get_input_hints (text_view) & GTK_INPUT_HINT_EMOJI) != 0 &&
|
||||
text_view->priv->editable);
|
||||
}
|
||||
|
||||
11
gtk4-no-objcopy.patch
Normal file
11
gtk4-no-objcopy.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- gtk-4.14.4/meson.build.no-objcopy 2024-06-06 10:17:08.764814627 -0400
|
||||
+++ gtk-4.14.4/meson.build 2024-06-06 10:17:31.276931886 -0400
|
||||
@@ -777,6 +777,8 @@
|
||||
can_use_objcopy_for_resources = false
|
||||
endif
|
||||
|
||||
+can_use_objcopy_for_resources = false
|
||||
+
|
||||
project_build_root = meson.current_build_dir()
|
||||
|
||||
gen_visibility_macros = find_program('build-aux/meson/gen-visibility-macros.py')
|
||||
@ -1,10 +1,20 @@
|
||||
## START: Set by rpmautospec
|
||||
## (rpmautospec version 0.6.5)
|
||||
## RPMAUTOSPEC: autorelease, autochangelog
|
||||
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||
release_number = 4;
|
||||
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||
print(release_number + base_release_number - 1);
|
||||
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||
## END: Set by rpmautospec
|
||||
|
||||
%if 0%{?fedora}
|
||||
%global with_broadway 1
|
||||
%endif
|
||||
|
||||
%global glib2_version 2.66.0
|
||||
%global pango_version 1.47.0
|
||||
%global cairo_version 1.14.0
|
||||
%global glib2_version 2.76.0
|
||||
%global pango_version 1.52.0
|
||||
%global cairo_version 1.18.0
|
||||
%global gdk_pixbuf_version 2.30.0
|
||||
%global wayland_protocols_version 1.31
|
||||
%global wayland_version 1.21.0
|
||||
@ -15,14 +25,28 @@
|
||||
# Filter provides for private modules
|
||||
%global __provides_exclude_from ^%{_libdir}/gtk-4.0
|
||||
|
||||
# FTBFS on i686 with GCC 14 -Werror=int-conversion
|
||||
# https://gitlab.gnome.org/GNOME/gtk/-/issues/6033
|
||||
%if 0%{?fedora} >= 40 || 0%{?rhel} >= 10
|
||||
%ifarch %{ix86}
|
||||
%global build_type_safety_c 1
|
||||
%endif
|
||||
%endif
|
||||
|
||||
Name: gtk4
|
||||
Version: 4.12.3
|
||||
Release: 2%{?dist}
|
||||
Version: 4.16.7
|
||||
Release: %autorelease
|
||||
Summary: GTK graphical user interface library
|
||||
|
||||
License: LGPL-2.0-or-later
|
||||
URL: https://www.gtk.org
|
||||
Source0: https://download.gnome.org/sources/gtk/4.12/gtk-%{version}.tar.xz
|
||||
Source0: https://download.gnome.org/sources/gtk/4.15/gtk-%{version}.tar.xz
|
||||
|
||||
# Using objcopy for resources interferes with hardening
|
||||
Patch0: gtk4-no-objcopy.patch
|
||||
Patch1: gtk4-no-emoji-context-menu.patch
|
||||
Patch2: 0001-Filechooser-Fix-a-focus-mishap.patch
|
||||
Patch3: 0001-placesview-Use-gtk3-servers-if-available.patch
|
||||
|
||||
BuildRequires: cups-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
@ -30,7 +54,10 @@ BuildRequires: docbook-style-xsl
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gettext
|
||||
BuildRequires: gi-docgen
|
||||
BuildRequires: glslc
|
||||
BuildRequires: meson
|
||||
BuildRequires: python3-gobject
|
||||
BuildRequires: pkgconfig(avahi-gobject)
|
||||
BuildRequires: pkgconfig(cairo) >= %{cairo_version}
|
||||
BuildRequires: pkgconfig(cairo-gobject) >= %{cairo_version}
|
||||
@ -43,11 +70,13 @@ BuildRequires: pkgconfig(gobject-introspection-1.0)
|
||||
BuildRequires: pkgconfig(graphene-gobject-1.0)
|
||||
BuildRequires: pkgconfig(gstreamer-player-1.0)
|
||||
BuildRequires: pkgconfig(json-glib-1.0)
|
||||
BuildRequires: pkgconfig(libjpeg)
|
||||
BuildRequires: pkgconfig(libpng)
|
||||
BuildRequires: pkgconfig(libtiff-4)
|
||||
BuildRequires: pkgconfig(pango) >= %{pango_version}
|
||||
BuildRequires: pkgconfig(rest-0.7)
|
||||
BuildRequires: pkgconfig(sysprof-4)
|
||||
BuildRequires: pkgconfig(sysprof-capture-4)
|
||||
BuildRequires: pkgconfig(tracker-sparql-3.0)
|
||||
BuildRequires: pkgconfig(vulkan)
|
||||
BuildRequires: pkgconfig(wayland-client) >= %{wayland_version}
|
||||
BuildRequires: pkgconfig(wayland-cursor) >= %{wayland_version}
|
||||
BuildRequires: pkgconfig(wayland-egl) >= %{wayland_version}
|
||||
@ -61,10 +90,8 @@ BuildRequires: pkgconfig(xinerama)
|
||||
BuildRequires: pkgconfig(xkbcommon)
|
||||
BuildRequires: pkgconfig(xrandr)
|
||||
BuildRequires: pkgconfig(xrender)
|
||||
BuildRequires: pkgconfig(libjpeg)
|
||||
BuildRequires: pkgconfig(iso-codes)
|
||||
BuildRequires: /usr/bin/appstream-util
|
||||
BuildRequires: /usr/bin/rst2man
|
||||
BuildRequires: /usr/bin/xsltproc
|
||||
|
||||
# standard icons
|
||||
Requires: adwaita-icon-theme
|
||||
@ -87,11 +114,6 @@ Requires: gdk-pixbuf2-modules%{?_isa}
|
||||
# make sure we have a reasonable gsettings backend
|
||||
Recommends: dconf%{?_isa}
|
||||
|
||||
# Removed in F34
|
||||
Obsoletes: gtk4-devel-docs < 4.1.2
|
||||
|
||||
Patch00001: preserve-old-glib-pango.diff
|
||||
|
||||
%description
|
||||
GTK is a multi-platform toolkit for creating graphical user
|
||||
interfaces. Offering a complete set of widgets, GTK is suitable for
|
||||
@ -108,6 +130,19 @@ Requires: gtk4%{?_isa} = %{version}-%{release}
|
||||
This package contains the libraries and header files that are needed
|
||||
for writing applications with version 4 of the GTK widget toolkit.
|
||||
|
||||
%package devel-docs
|
||||
Summary: Developer documentation for GTK
|
||||
BuildArch: noarch
|
||||
Requires: gtk4 = %{version}-%{release}
|
||||
# Because web fonts from upstream are not bundled in the gi-docgen package,
|
||||
# packages containing documentation generated with gi-docgen should depend on
|
||||
# this metapackage to ensure the proper system fonts are present.
|
||||
Recommends: gi-docgen-fonts
|
||||
|
||||
%description devel-docs
|
||||
This package contains developer documentation for version 4 of the GTK
|
||||
widget toolkit.
|
||||
|
||||
%package devel-tools
|
||||
Summary: Developer tools for GTK
|
||||
Requires: gtk4%{?_isa} = %{version}-%{release}
|
||||
@ -121,15 +156,18 @@ This package contains helpful applications for developers using GTK.
|
||||
%build
|
||||
export CFLAGS='-fno-strict-aliasing -DG_DISABLE_CAST_CHECKS -DG_DISABLE_ASSERT %optflags'
|
||||
%meson \
|
||||
-Db_pie=true \
|
||||
%if 0%{?with_broadway}
|
||||
-Dbroadway-backend=true \
|
||||
%endif
|
||||
-Dsysprof=enabled \
|
||||
-Dtracker=enabled \
|
||||
-Dcolord=enabled \
|
||||
-Dgtk_doc=false \
|
||||
-Ddocumentation=true \
|
||||
-Dman-pages=true \
|
||||
-Dinstall-tests=false
|
||||
-Dbuild-testsuite=false \
|
||||
-Dbuild-tests=false \
|
||||
-Dbuild-examples=false
|
||||
|
||||
%meson_build
|
||||
|
||||
@ -146,7 +184,8 @@ mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gtk-4.0
|
||||
mkdir -p $RPM_BUILD_ROOT%{_libdir}/gtk-4.0/modules
|
||||
|
||||
%check
|
||||
desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
appstream-util validate-relax --nonet $RPM_BUILD_ROOT%{_metainfodir}/*.xml
|
||||
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop
|
||||
|
||||
%files -f gtk40.lang
|
||||
%license COPYING
|
||||
@ -159,7 +198,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
%{_libdir}/gtk-4.0/%{bin_version}/media/
|
||||
%{_libdir}/gtk-4.0/%{bin_version}/printbackends/
|
||||
%{_libdir}/gtk-4.0/modules
|
||||
%{_libdir}/girepository-1.0
|
||||
%{_libdir}/girepository-1.0/
|
||||
%{_mandir}/man1/gtk4-launch.1*
|
||||
%{_mandir}/man1/gtk4-update-icon-cache.1*
|
||||
%{_datadir}/glib-2.0/schemas/org.gtk.gtk4.Settings.ColorChooser.gschema.xml
|
||||
@ -179,15 +218,24 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
%{_libdir}/pkgconfig/*
|
||||
%{_bindir}/gtk4-builder-tool
|
||||
%{_bindir}/gtk4-encode-symbolic-svg
|
||||
%{_bindir}/gtk4-path-tool
|
||||
%{_bindir}/gtk4-query-settings
|
||||
%{_datadir}/gettext/
|
||||
%{_datadir}/gir-1.0
|
||||
%{_datadir}/gir-1.0/
|
||||
%{_datadir}/gtk-4.0/gtk4builder.rng
|
||||
%{_datadir}/gtk-4.0/valgrind/
|
||||
%{_mandir}/man1/gtk4-builder-tool.1*
|
||||
%{_mandir}/man1/gtk4-encode-symbolic-svg.1*
|
||||
%{_mandir}/man1/gtk4-path-tool.1*
|
||||
%{_mandir}/man1/gtk4-query-settings.1*
|
||||
|
||||
%files devel-docs
|
||||
%{_datadir}/doc/gdk4/
|
||||
%{_datadir}/doc/gdk4-wayland/
|
||||
%{_datadir}/doc/gdk4-x11/
|
||||
%{_datadir}/doc/gsk4/
|
||||
%{_datadir}/doc/gtk4/
|
||||
|
||||
%files devel-tools
|
||||
%{_bindir}/gtk4-demo
|
||||
%{_bindir}/gtk4-demo-application
|
||||
@ -195,6 +243,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
%{_bindir}/gtk4-node-editor
|
||||
%{_bindir}/gtk4-print-editor
|
||||
%{_bindir}/gtk4-rendernode-tool
|
||||
%{_bindir}/gtk4-image-tool
|
||||
%{_bindir}/gtk4-widget-factory
|
||||
%{_datadir}/applications/org.gtk.gtk4.NodeEditor.desktop
|
||||
%{_datadir}/applications/org.gtk.Demo4.desktop
|
||||
@ -207,33 +256,253 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/org.gtk.PrintEditor4*.svg
|
||||
%{_datadir}/icons/hicolor/*/apps/org.gtk.WidgetFactory4*.svg
|
||||
%{_datadir}/glib-2.0/schemas/org.gtk.Demo4.gschema.xml
|
||||
%{_datadir}/metainfo/org.gtk.gtk4.NodeEditor.appdata.xml
|
||||
%{_datadir}/metainfo/org.gtk.Demo4.appdata.xml
|
||||
%{_datadir}/metainfo/org.gtk.IconBrowser4.appdata.xml
|
||||
%{_datadir}/metainfo/org.gtk.PrintEditor4.appdata.xml
|
||||
%{_datadir}/metainfo/org.gtk.WidgetFactory4.appdata.xml
|
||||
%{_metainfodir}/org.gtk.gtk4.NodeEditor.appdata.xml
|
||||
%{_metainfodir}/org.gtk.Demo4.appdata.xml
|
||||
%{_metainfodir}/org.gtk.IconBrowser4.appdata.xml
|
||||
%{_metainfodir}/org.gtk.PrintEditor4.appdata.xml
|
||||
%{_metainfodir}/org.gtk.WidgetFactory4.appdata.xml
|
||||
%{_mandir}/man1/gtk4-demo.1*
|
||||
%{_mandir}/man1/gtk4-demo-application.1*
|
||||
%{_mandir}/man1/gtk4-icon-browser.1*
|
||||
%{_mandir}/man1/gtk4-node-editor.1*
|
||||
%{_mandir}/man1/gtk4-rendernode-tool.1*
|
||||
%{_mandir}/man1/gtk4-image-tool.1*
|
||||
%{_mandir}/man1/gtk4-widget-factory.1*
|
||||
|
||||
%changelog
|
||||
* Thu Dec 07 2023 Carlos Garnacho <cgarnach@redhat.com> - 4.12.3-2
|
||||
- Do not try to implement color glyphs without Pango help
|
||||
Resolves: RHEL-842
|
||||
## START: Generated by rpmautospec
|
||||
* Wed Mar 19 2025 Matthias Clasen <mclasen@redhat.com> - 4.16.7-4
|
||||
- Use a gtk3 servers file if it exists
|
||||
|
||||
* Thu Nov 30 2023 Carlos Garnacho <cgarnach@redhat.com> - 4.12.3-1
|
||||
* Mon Mar 10 2025 Matthias Clasen <mclasen@redhat.com> - 4.16.7-3
|
||||
- Fix a focus problem in the file chooser
|
||||
|
||||
* Mon Mar 10 2025 Matthias Clasen <mclasen@redhat.com> - 4.16.7-2
|
||||
- Hide emoji chooser unless explicitly requested
|
||||
|
||||
* Mon Nov 25 2024 Matthias Clasen <mclasen@redhat.com> - 4.16.7-1
|
||||
- Update to 4.16.7
|
||||
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 4.16.3-2
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
|
||||
* Fri Oct 04 2024 Matthias Clasen <mclasen@redhat.com> - 4.16.3-1
|
||||
- Update to GTK 4.16.3
|
||||
|
||||
* Thu Sep 05 2024 Matthias Clasen <mclasen@redhat.com> - 4.15.3-2
|
||||
- Fix missing popovers
|
||||
|
||||
* Tue Jul 16 2024 Tomas Popela <tpopela@redhat.com> - 4.15.3-1
|
||||
- Update to 4.15.3
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 4.14.4-5
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jun 06 2024 Matthias Clasen <mclasen@redhat.com> - 4.14.4-4
|
||||
- Stop using objcopy for resources
|
||||
|
||||
* Wed Jun 05 2024 Matthias Clasen <mclasen@redhat.com> - 4.14.4-3
|
||||
- Build with -Db_pie
|
||||
|
||||
* Tue Jun 04 2024 Tomas Pelka <tpelka@redhat.com> - 4.14.4-2
|
||||
- Add gating.yaml via API
|
||||
|
||||
* Fri May 03 2024 Matthias Clasen <mclasen@redhat.com> - 4.14.4-1
|
||||
- Update to 4.14.4
|
||||
|
||||
* Mon Feb 12 2024 David King <amigadave@amigadave.com> - 4.13.7-1
|
||||
- Update to 4.13.7
|
||||
|
||||
* Wed Feb 07 2024 Yaakov Selkowitz <yselkowi@redhat.com> - 4.13.6-2
|
||||
- Reduce GCC 14 type safety on i686
|
||||
|
||||
* Fri Jan 26 2024 David King <amigadave@amigadave.com> - 4.13.6-1
|
||||
- Update to 4.13.6
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.13.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.13.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 14 2024 Kalev Lember <klember@redhat.com> - 4.13.5-2
|
||||
- Add explicit vulkan build dep
|
||||
|
||||
* Wed Jan 10 2024 Kalev Lember <klember@redhat.com> - 4.13.5-1
|
||||
- Update to 4.13.5
|
||||
|
||||
* Wed Jan 03 2024 Kalev Lember <klember@redhat.com> - 4.13.4-1
|
||||
- Update to 4.13.4
|
||||
|
||||
* Wed Nov 15 2023 Kalev Lember <klember@redhat.com> - 4.13.3-1
|
||||
- Update to 4.13.3
|
||||
|
||||
* Wed Oct 25 2023 Kalev Lember <klember@redhat.com> - 4.13.2-1
|
||||
- Update to 4.13.2
|
||||
- Package new gtk4-path-tool in -devel subpackage
|
||||
|
||||
* Tue Oct 03 2023 Michael Catanzaro <mcatanzaro@redhat.com> - 4.12.3-2
|
||||
- Remove unused settings.ini from git repo
|
||||
|
||||
* Thu Sep 28 2023 Kalev Lember <klember@redhat.com> - 4.12.3-1
|
||||
- Update to 4.12.3
|
||||
Resolves: RHEL-842
|
||||
|
||||
* Wed Jul 13 2022 Carlos Garnacho <cgarnach@redhat.com> - 4.4.1-2
|
||||
- Ensure Wayland gets the Wayland IM context
|
||||
Resolves: #2087031
|
||||
* Wed Sep 27 2023 Kalev Lember <klember@redhat.com> - 4.12.2-3
|
||||
- Backport MR #6437 to fix crash when printing from loupe (rhbz#2240222)
|
||||
|
||||
* Mon Nov 01 2021 Kalev Lember <klember@redhat.com> - 4.4.1-1
|
||||
- Update to 4.4.1
|
||||
* Thu Sep 21 2023 Kalev Lember <klember@redhat.com> - 4.12.2-2
|
||||
- Fix the build with sysprof 45
|
||||
|
||||
* Wed Sep 20 2023 Kalev Lember <klember@redhat.com> - 4.12.2-1
|
||||
- Update to 4.12.2
|
||||
|
||||
* Thu Sep 07 2023 Kalev Lember <klember@redhat.com> - 4.12.1-3
|
||||
- Validate appstream metadata
|
||||
|
||||
* Thu Sep 07 2023 Kalev Lember <klember@redhat.com> - 4.12.1-2
|
||||
- Add missing trailing slashes to directory entries in files list
|
||||
|
||||
* Fri Aug 25 2023 Kalev Lember <klember@redhat.com> - 4.12.1-1
|
||||
- Update to 4.12.1
|
||||
|
||||
* Thu Aug 17 2023 Kalev Lember <klember@redhat.com> - 4.12.0-6
|
||||
- Backport upstream patch to fix .pc file requires
|
||||
|
||||
* Tue Aug 15 2023 Michael Catanzaro <mcatanzaro@redhat.com> - 4.12.0-5
|
||||
- Drop special hint settings, remove settings.ini
|
||||
|
||||
* Tue Aug 15 2023 Michael Catanzaro <mcatanzaro@redhat.com> - 4.12.0-4
|
||||
- Drop special hint settings, remove settings.ini
|
||||
|
||||
* Tue Aug 15 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 4.12.0-3
|
||||
- Ensure correct fonts are installed for HTML docs
|
||||
|
||||
* Mon Aug 07 2023 Kalev Lember <klember@redhat.com> - 4.12.0-2
|
||||
- Backport a patch to fix undefined symbols in the cups backend
|
||||
|
||||
* Sat Aug 05 2023 Kalev Lember <klember@redhat.com> - 4.12.0-1
|
||||
- Update to 4.12.0
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.11.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Mon Jul 03 2023 Kalev Lember <klember@redhat.com> - 4.11.4-1
|
||||
- Update to 4.11.4
|
||||
|
||||
* Wed Jun 07 2023 Kalev Lember <klember@redhat.com> - 4.11.3-1
|
||||
- Update to 4.11.3
|
||||
|
||||
* Wed May 10 2023 David King <amigadave@amigadave.com> - 4.11.2-1
|
||||
- Update to 4.11.2
|
||||
|
||||
* Mon Apr 10 2023 David King <amigadave@amigadave.com> - 4.11.1-1
|
||||
- Update to 4.11.1
|
||||
|
||||
* Tue Mar 14 2023 David King <amigadave@amigadave.com> - 4.10.1-1
|
||||
- Update version
|
||||
|
||||
* Tue Mar 14 2023 David King <amigadave@amigadave.com> - 4.10.0-5
|
||||
- Update to 4.10.1
|
||||
|
||||
* Mon Mar 13 2023 David King <amigadave@amigadave.com> - 4.10.0-4
|
||||
- Fix combo box allocations
|
||||
|
||||
* Fri Mar 10 2023 Adam Williamson <awilliam@redhat.com> - 4.10.0-3
|
||||
- Rebuild with no changes for F38 Bodhi purposes
|
||||
|
||||
* Thu Mar 09 2023 Ray Strode <rstrode@redhat.com> - 4.10.0-2
|
||||
- Short most recent files first in Recent Files in file chooser
|
||||
|
||||
* Sun Mar 05 2023 David King <amigadave@amigadave.com> - 4.10.0-1
|
||||
- Update to 4.10.0
|
||||
|
||||
* Wed Feb 15 2023 David King <amigadave@amigadave.com> - 4.9.4-1
|
||||
- Update to 4.9.4
|
||||
|
||||
* Thu Feb 09 2023 Michael Catanzaro <mcatanzaro@redhat.com> - 4.9.3-3
|
||||
- Remove librest-0.7 BuildRequires
|
||||
|
||||
* Mon Feb 06 2023 David King <amigadave@amigadave.com> - 4.9.3-1
|
||||
- Update to 4.9.3
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.9.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Dec 30 2022 David King <amigadave@amigadave.com> - 4.9.2-1
|
||||
- Update to 4.9.2
|
||||
|
||||
* Tue Nov 29 2022 Adam Williamson <awilliam@redhat.com> - 4.9.1-2
|
||||
- Bring back focus fix (MR #5189), it wasn't in 4.9.1
|
||||
|
||||
* Mon Nov 21 2022 David King <amigadave@amigadave.com> - 4.9.1-1
|
||||
- Update to 4.9.1
|
||||
|
||||
* Tue Nov 01 2022 Adam Williamson <awilliam@redhat.com> - 4.8.2-2
|
||||
- Attempt to fix a focus issue introduced in 4.8.2 (nautilus gl2574)
|
||||
- Backport MR #5091 to fix a width problem (gtk gl5192)
|
||||
|
||||
* Thu Oct 27 2022 David King <amigadave@amigadave.com> - 4.8.2-1
|
||||
- Update to 4.8.2
|
||||
|
||||
* Mon Sep 26 2022 Kalev Lember <klember@redhat.com> - 4.8.1-2
|
||||
- Rebuild
|
||||
|
||||
* Fri Sep 16 2022 Kalev Lember <klember@redhat.com> - 4.8.1-1
|
||||
- Update to 4.8.1
|
||||
|
||||
* Wed Sep 07 2022 Kalev Lember <klember@redhat.com> - 4.8.0-1
|
||||
- Update to 4.8.0
|
||||
|
||||
* Tue Aug 16 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 4.7.2-2
|
||||
- Enable font hinting (#1943794)
|
||||
|
||||
* Thu Aug 11 2022 Kalev Lember <klember@redhat.com> - 4.7.2-1
|
||||
- Update to 4.7.2
|
||||
|
||||
* Mon Jul 25 2022 Kalev Lember <klember@redhat.com> - 4.7.1-3
|
||||
- Work around broken rpm pkg-config dep extraction
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Fri Jul 15 2022 Kalev Lember <klember@redhat.com> - 4.7.1-1
|
||||
- Update to 4.7.1
|
||||
|
||||
* Mon May 09 2022 David King <amigadave@amigadave.com> - 4.7.0-1
|
||||
- Update to 4.7.0
|
||||
|
||||
* Thu Apr 28 2022 David King <amigadave@amigadave.com> - 4.6.3-1
|
||||
- Update to 4.6.3
|
||||
|
||||
* Tue Apr 26 2022 Adam Williamson <awilliam@redhat.com> - 4.6.2-3
|
||||
- Fix from Benjamin for gtk_widget_measure infinite loop issue (#2071228)
|
||||
|
||||
* Thu Mar 31 2022 Adam Williamson <awilliam@redhat.com> - 4.6.2-2
|
||||
- Backport MR #4605 to fix portal save/load dialogs on X (#2068041)
|
||||
|
||||
* Sat Mar 19 2022 David King <amigadave@amigadave.com> - 4.6.2-1
|
||||
- Update to 4.6.2
|
||||
|
||||
* Wed Mar 02 2022 Adam Williamson <awilliam@redhat.com> - 4.6.1-2
|
||||
- Backport MR#4366 to fix launching control-center panes from overview
|
||||
|
||||
* Mon Feb 14 2022 David King <amigadave@amigadave.com> - 4.6.1-1
|
||||
- Update to 4.6.1
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Dec 31 2021 David King <amigadave@amigadave.com> - 4.6.0-1
|
||||
- Update to 4.6.0
|
||||
|
||||
* Fri Dec 17 2021 David King <amigadave@amigadave.com> - 4.5.1-1
|
||||
- Update to 4.5.1
|
||||
|
||||
* Mon Nov 01 2021 Kalev Lember <klember@redhat.com> - 4.5.0-2
|
||||
- Build -devel-docs as noarch (#2018991)
|
||||
|
||||
* Mon Nov 01 2021 Kalev Lember <klember@redhat.com> - 4.5.0-1
|
||||
- Update to 4.5.0
|
||||
|
||||
* Mon Sep 27 2021 Kalev Lember <klember@redhat.com> - 4.4.0-4
|
||||
- Build with tracker support enabled (#1908874)
|
||||
@ -246,20 +515,23 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
|
||||
* Mon Aug 23 2021 Kalev Lember <klember@redhat.com> - 4.4.0-1
|
||||
- Update to 4.4.0
|
||||
- Switch to using new gi-docgen package instead of the bundled copy
|
||||
- Remove cloudproviders support again, as per upstream suggestion
|
||||
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.2.1-2
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed May 05 2021 Kalev Lember <klember@redhat.com> - 4.2.1-1
|
||||
- Update to 4.2.1
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4.2.0-4
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
* Mon May 03 2021 Marc-André Lureau <marcandre.lureau@redhat.com> - 4.2.0-5
|
||||
- Re-enable documentation.
|
||||
|
||||
* Tue Apr 13 2021 Ray Strode <rstrode@redhat.com> - 4.2.0-3
|
||||
- Rebuild
|
||||
Related: #1940618
|
||||
* Tue Apr 20 2021 Kalev Lember <klember@redhat.com> - 4.2.0-4
|
||||
- Enable cloudproviders support (#1951539)
|
||||
|
||||
* Tue Apr 06 2021 Kalev Lember <klember@redhat.com> - 4.2.0-3
|
||||
- Backport upstream fix for typing apostrophes / single quotes (#1946133)
|
||||
|
||||
* Thu Apr 01 2021 Kalev Lember <klember@redhat.com> - 4.2.0-2
|
||||
- Disable vulkan renderer
|
||||
@ -419,3 +691,5 @@ Related: #1940618
|
||||
|
||||
* Wed Jun 14 2017 Kalev Lember <klember@redhat.com> - 3.91.0-1
|
||||
- Initial Fedora packaging
|
||||
|
||||
## END: Generated by rpmautospec
|
||||
Loading…
Reference in New Issue
Block a user