guibuilder_pel7x64builder0
6 years ago
6 changed files with 6162 additions and 0 deletions
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
From 2f7053f5fa9154437b9397cd204a38e2686107bc Mon Sep 17 00:00:00 2001 |
||||
From: Christian Persch <chpe@src.gnome.org> |
||||
Date: Tue, 29 May 2018 10:47:22 +0200 |
||||
Subject: [PATCH] client: legacy: Fix invalid free |
||||
|
||||
Use g_free() for memory allocated with g_new(). |
||||
|
||||
https://gitlab.gnome.org/GNOME/gnome-terminal/issues/1 |
||||
--- |
||||
src/terminal-options.c | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git a/src/terminal-options.c b/src/terminal-options.c |
||||
index d1e8a4a4ca48..83ead8909a52 100644 |
||||
--- a/src/terminal-options.c |
||||
+++ b/src/terminal-options.c |
||||
@@ -1277,7 +1277,7 @@ terminal_options_free (TerminalOptions *options) |
||||
|
||||
g_clear_object (&options->profiles_list); |
||||
|
||||
- g_slice_free (TerminalOptions, options); |
||||
+ g_free (options); |
||||
} |
||||
|
||||
static GOptionContext * |
||||
-- |
||||
2.14.3 |
||||
|
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
From 8167287339ae9b0fd5e813eb1bb21967bdf1baad Mon Sep 17 00:00:00 2001 |
||||
From: Ray Strode <rstrode@redhat.com> |
||||
Date: Fri, 8 Jun 2018 16:14:53 +0200 |
||||
Subject: [PATCH] Revert "server: Error out on unsupported locale" |
||||
|
||||
This reverts commit 27051edaea86908d8852e7bc66d88215b51fc179. |
||||
--- |
||||
src/server.c | 5 ----- |
||||
1 file changed, 5 deletions(-) |
||||
|
||||
diff --git a/src/server.c b/src/server.c |
||||
index 829cf4656c56..b0bdac99d6f9 100644 |
||||
--- a/src/server.c |
||||
+++ b/src/server.c |
||||
@@ -120,11 +120,6 @@ init_server (int argc, |
||||
} |
||||
|
||||
terminal_i18n_init (TRUE); |
||||
- const char *charset; |
||||
- if (!g_get_charset (&charset)) { |
||||
- g_printerr ("Non UTF-8 locale (%s) is not supported!\n", charset); |
||||
- return _EXIT_FAILURE_NO_UTF8; |
||||
- } |
||||
|
||||
/* Sanitise environment */ |
||||
g_unsetenv ("DBUS_STARTER_BUS_TYPE"); |
||||
-- |
||||
2.14.4 |
||||
|
@ -0,0 +1,35 @@
@@ -0,0 +1,35 @@
|
||||
From 86753edc8b08281107ac2109cfba22fc7e3fee20 Mon Sep 17 00:00:00 2001 |
||||
From: Debarshi Ray <debarshir@gnome.org> |
||||
Date: Mon, 23 Feb 2015 18:54:36 +0100 |
||||
Subject: [PATCH] build: Don't treat warnings as errors |
||||
|
||||
--- |
||||
configure.ac | 12 ++++++------ |
||||
1 file changed, 6 insertions(+), 6 deletions(-) |
||||
|
||||
diff --git a/configure.ac b/configure.ac |
||||
index e8b10de8a143..aa84883c10a3 100644 |
||||
--- a/configure.ac |
||||
+++ b/configure.ac |
||||
@@ -249,12 +249,12 @@ CC_CHECK_FLAGS_APPEND([WARN_CFLAGS],[CFLAGS],[ \ |
||||
-Wall \ |
||||
-Wcast-align \ |
||||
-Wendif-labels \ |
||||
- "-Werror=format=2 -Werror=format-nonliteral -Werror=format-security" \ |
||||
- -Werror=implicit-function-declaration \ |
||||
- -Werror=init-self \ |
||||
- -Werror=missing-include-dirs \ |
||||
- -Werror=missing-prototypes \ |
||||
- -Werror=pointer-arith \ |
||||
+ "-Wformat=2 -Wformat-nonliteral -Wformat-security" \ |
||||
+ -Wimplicit-function-declaration \ |
||||
+ -Winit-self \ |
||||
+ -Wmissing-include-dirs \ |
||||
+ -Wmissing-prototypes \ |
||||
+ -Wpointer-arith \ |
||||
-Wextra \ |
||||
-Wfloat-equal \ |
||||
-Wimplicit \ |
||||
-- |
||||
2.14.4 |
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,192 @@
@@ -0,0 +1,192 @@
|
||||
From 463c27c39549a3fbcc6a59e56822e47d0a4303e0 Mon Sep 17 00:00:00 2001 |
||||
From: Debarshi Ray <debarshir@gnome.org> |
||||
Date: Fri, 13 May 2016 19:43:29 +0200 |
||||
Subject: [PATCH 1/2] schemas: screen: Add a setting to configure the scroll |
||||
speed |
||||
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1103380 |
||||
--- |
||||
src/org.gnome.Terminal.gschema.xml | 11 +++++++++++ |
||||
src/terminal-schemas.h | 2 ++ |
||||
src/terminal-screen.c | 9 +++++++++ |
||||
3 files changed, 22 insertions(+) |
||||
|
||||
diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml |
||||
index 04be15324d3d..c5ae00a82064 100644 |
||||
--- a/src/org.gnome.Terminal.gschema.xml |
||||
+++ b/src/org.gnome.Terminal.gschema.xml |
||||
@@ -427,6 +427,17 @@ |
||||
<summary>Adjust the amount of transparency</summary> |
||||
<description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description> |
||||
</key> |
||||
+ <key name="scroll-speed-auto" type="b"> |
||||
+ <default>true</default> |
||||
+ <summary>Whether to use a dynamic scrolling speed</summary> |
||||
+ <description>If true, the speed will be a function of the number of visible rows. Otherwise, the buffer will scroll by a fixed number of lines regardless of the number of visible rows.</description> |
||||
+ </key> |
||||
+ <key name="scroll-speed" type="u"> |
||||
+ <default>1</default> |
||||
+ <range min="1" max="10"/> |
||||
+ <summary>Adjust the scrolling speed</summary> |
||||
+ <description>The number of lines by which the buffer is moved when scrolling with a mouse wheel on top of the terminal.</description> |
||||
+ </key> |
||||
</schema> |
||||
|
||||
<!-- Keybinding settings --> |
||||
diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h |
||||
index 240213fead43..7e9fc96cad9f 100644 |
||||
--- a/src/terminal-schemas.h |
||||
+++ b/src/terminal-schemas.h |
||||
@@ -77,6 +77,8 @@ G_BEGIN_DECLS |
||||
|
||||
#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background" |
||||
#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent" |
||||
+#define TERMINAL_PROFILE_SCROLL_SPEED_KEY "scroll-speed" |
||||
+#define TERMINAL_PROFILE_SCROLL_SPEED_AUTO_KEY "scroll-speed-auto" |
||||
|
||||
#define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close" |
||||
#define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar" |
||||
diff --git a/src/terminal-screen.c b/src/terminal-screen.c |
||||
index faf906c763e7..18cb3318308d 100644 |
||||
--- a/src/terminal-screen.c |
||||
+++ b/src/terminal-screen.c |
||||
@@ -1016,6 +1016,15 @@ terminal_screen_profile_changed_cb (GSettings *profile, |
||||
if (!prop_name || prop_name == I_(TERMINAL_PROFILE_SCROLL_ON_OUTPUT_KEY)) |
||||
vte_terminal_set_scroll_on_output (vte_terminal, |
||||
g_settings_get_boolean (profile, TERMINAL_PROFILE_SCROLL_ON_OUTPUT_KEY)); |
||||
+ if (!prop_name || |
||||
+ prop_name == I_(TERMINAL_PROFILE_SCROLL_SPEED_KEY) || |
||||
+ prop_name == I_(TERMINAL_PROFILE_SCROLL_SPEED_AUTO_KEY)) |
||||
+ { |
||||
+ guint scroll_speed = g_settings_get_boolean (profile, TERMINAL_PROFILE_SCROLL_SPEED_AUTO_KEY) ? |
||||
+ 0 : g_settings_get_uint (profile, TERMINAL_PROFILE_SCROLL_SPEED_KEY); |
||||
+ vte_terminal_set_scroll_speed (vte_terminal, scroll_speed); |
||||
+ } |
||||
+ |
||||
if (!prop_name || |
||||
prop_name == I_(TERMINAL_PROFILE_SCROLLBACK_LINES_KEY) || |
||||
prop_name == I_(TERMINAL_PROFILE_SCROLLBACK_UNLIMITED_KEY)) |
||||
-- |
||||
2.14.4 |
||||
|
||||
|
||||
From bc6e7ef2477ace9e81e48c001bd3e65bec618282 Mon Sep 17 00:00:00 2001 |
||||
From: Debarshi Ray <debarshir@gnome.org> |
||||
Date: Fri, 8 Jun 2018 17:08:01 +0200 |
||||
Subject: [PATCH 2/2] profile: Expose the scroll speed setting in the UI |
||||
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1103380 |
||||
--- |
||||
src/preferences.ui | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||||
src/profile-editor.c | 17 +++++++++++++++ |
||||
2 files changed, 77 insertions(+) |
||||
|
||||
diff --git a/src/preferences.ui b/src/preferences.ui |
||||
index 0dddd9bf32ba..6932f845e33a 100644 |
||||
--- a/src/preferences.ui |
||||
+++ b/src/preferences.ui |
||||
@@ -82,6 +82,12 @@ |
||||
<property name="step_increment">1</property> |
||||
<property name="page_increment">10</property> |
||||
</object> |
||||
+ <object class="GtkAdjustment" id="scroll-speed-adjustment"> |
||||
+ <property name="lower">1</property> |
||||
+ <property name="upper">10</property> |
||||
+ <property name="step_increment">1</property> |
||||
+ <property name="page_increment">5</property> |
||||
+ </object> |
||||
<object class="GtkListStore" id="cjk-ambiguous-width-model"> |
||||
<columns> |
||||
<!-- column-name gchararray --> |
||||
@@ -1841,6 +1847,60 @@ |
||||
<property name="left_attach">1</property> |
||||
</packing> |
||||
</child> |
||||
+ <child> |
||||
+ <object class="GtkCheckButton" id="scrollspeed-static-checkbutton"> |
||||
+ <property name="label" translatable="yes">_Fix scroll speed to:</property> |
||||
+ <property name="visible">True</property> |
||||
+ <property name="can_focus">True</property> |
||||
+ <property name="receives_default">False</property> |
||||
+ <property name="use_underline">True</property> |
||||
+ </object> |
||||
+ <packing> |
||||
+ <property name="top_attach">4</property> |
||||
+ <property name="left_attach">0</property> |
||||
+ </packing> |
||||
+ </child> |
||||
+ <child> |
||||
+ <object class="GtkHBox" id="scrollspeed-box"> |
||||
+ <property name="visible">True</property> |
||||
+ <property name="can_focus">False</property> |
||||
+ <property name="spacing">6</property> |
||||
+ <property name="hexpand">True</property> |
||||
+ <child> |
||||
+ <object class="GtkSpinButton" id="scroll-speed-spinbutton"> |
||||
+ <property name="visible">True</property> |
||||
+ <property name="can_focus">True</property> |
||||
+ <property name="adjustment">scroll-speed-adjustment</property> |
||||
+ <property name="climb_rate">1</property> |
||||
+ <property name="numeric">True</property> |
||||
+ </object> |
||||
+ <packing> |
||||
+ <property name="expand">False</property> |
||||
+ <property name="fill">True</property> |
||||
+ <property name="position">0</property> |
||||
+ </packing> |
||||
+ </child> |
||||
+ <child> |
||||
+ <object class="GtkLabel" id="scroll-speed-spinbutton-label"> |
||||
+ <property name="visible">True</property> |
||||
+ <property name="can_focus">False</property> |
||||
+ <property name="xalign">0</property> |
||||
+ <property name="label" translatable="yes">lines</property> |
||||
+ <property name="justify">center</property> |
||||
+ <property name="mnemonic_widget">scroll-speed-spinbutton</property> |
||||
+ </object> |
||||
+ <packing> |
||||
+ <property name="expand">False</property> |
||||
+ <property name="fill">False</property> |
||||
+ <property name="position">1</property> |
||||
+ </packing> |
||||
+ </child> |
||||
+ </object> |
||||
+ <packing> |
||||
+ <property name="top_attach">4</property> |
||||
+ <property name="left_attach">1</property> |
||||
+ </packing> |
||||
+ </child> |
||||
</object> |
||||
<packing> |
||||
<property name="position">2</property> |
||||
diff --git a/src/profile-editor.c b/src/profile-editor.c |
||||
index 0b8f2b6951a7..889372adb35b 100644 |
||||
--- a/src/profile-editor.c |
||||
+++ b/src/profile-editor.c |
||||
@@ -1355,6 +1355,23 @@ profile_prefs_load (const char *uuid, GSettings *profile) |
||||
gtk_builder_get_object (builder, "background-transparent-adjustment"), |
||||
"value", |
||||
G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); |
||||
+ |
||||
+ profile_prefs_settings_bind (profile, TERMINAL_PROFILE_SCROLL_SPEED_AUTO_KEY, |
||||
+ gtk_builder_get_object (builder, |
||||
+ "scrollspeed-static-checkbutton"), |
||||
+ "active", |
||||
+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET | |
||||
+ G_SETTINGS_BIND_INVERT_BOOLEAN); |
||||
+ profile_prefs_settings_bind (profile, TERMINAL_PROFILE_SCROLL_SPEED_AUTO_KEY, |
||||
+ gtk_builder_get_object (builder, |
||||
+ "scrollspeed-box"), |
||||
+ "sensitive", |
||||
+ G_SETTINGS_BIND_GET | |
||||
+ G_SETTINGS_BIND_INVERT_BOOLEAN | |
||||
+ G_SETTINGS_BIND_NO_SENSITIVITY); |
||||
+ profile_prefs_settings_bind (profile, TERMINAL_PROFILE_SCROLL_SPEED_KEY, |
||||
+ gtk_builder_get_object (builder, "scroll-speed-adjustment"), |
||||
+ "value", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); |
||||
} |
||||
|
||||
/* Called once per Preferences window, to destroy stuff that doesn't depend on the profile being edited */ |
||||
-- |
||||
2.14.4 |
||||
|
@ -0,0 +1,382 @@
@@ -0,0 +1,382 @@
|
||||
%define gettext_package gnome-terminal |
||||
|
||||
%define glib2_version 2.50.0 |
||||
%define gtk3_version 3.22.27 |
||||
%define vte_version 0.52.2 |
||||
%define desktop_file_utils_version 0.2.90 |
||||
|
||||
Name: gnome-terminal |
||||
Version: 3.28.2 |
||||
Release: 2%{?dist} |
||||
Summary: Terminal emulator for GNOME |
||||
|
||||
License: GPLv3+ and GFDL |
||||
URL: http://www.gnome.org/ |
||||
Source0: http://download.gnome.org/sources/gnome-terminal/3.28/gnome-terminal-%{version}.tar.xz |
||||
|
||||
Patch0: 0001-client-legacy-Fix-invalid-free.patch |
||||
|
||||
Patch100: %{name}-notify-open-title-transparency.patch |
||||
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1323217 |
||||
Patch101: %{name}-Revert-server-Error-out-on-unsupported-locale.patch |
||||
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1103380 |
||||
Patch102: %{name}-scroll-speed.patch |
||||
|
||||
Patch103: %{name}-don-t-treat-warnings-as-errors.patch |
||||
|
||||
BuildRequires: glib2-devel >= %{glib2_version} |
||||
BuildRequires: GConf2-devel |
||||
BuildRequires: gtk3-devel >= %{gtk3_version} |
||||
BuildRequires: gsettings-desktop-schemas-devel |
||||
BuildRequires: vte291-devel >= %{vte_version} |
||||
BuildRequires: desktop-file-utils >= %{desktop_file_utils_version} |
||||
BuildRequires: gettext |
||||
BuildRequires: intltool |
||||
BuildRequires: gnome-common |
||||
BuildRequires: autoconf automake libtool |
||||
BuildRequires: itstool |
||||
BuildRequires: dconf-devel |
||||
BuildRequires: libuuid-devel |
||||
BuildRequires: nautilus-devel |
||||
BuildRequires: gnome-shell |
||||
BuildRequires: pcre2-devel |
||||
BuildRequires: systemd |
||||
BuildRequires: vala-devel |
||||
|
||||
Requires: dbus-x11 |
||||
Requires: glib2%{?_isa} >= %{glib2_version} |
||||
Requires: gsettings-desktop-schemas |
||||
Requires: gtk3%{?_isa} >= %{gtk3_version} |
||||
Requires: vte291%{?_isa} >= %{vte_version} |
||||
|
||||
%description |
||||
gnome-terminal is a terminal emulator for GNOME. It features the ability to use |
||||
multiple terminals in a single window (tabs) and profiles support. |
||||
|
||||
%package nautilus |
||||
Summary: GNOME Terminal extension for Nautilus |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
|
||||
Provides: nautilus-open-terminal = %{version}-%{release} |
||||
Obsoletes: nautilus-open-terminal < 0.20-8 |
||||
|
||||
%description nautilus |
||||
This package provides a Nautilus extension that adds the 'Open in Terminal' |
||||
option to the right-click context menu in Nautilus. |
||||
|
||||
%prep |
||||
%setup -q |
||||
%patch0 -p1 -b .client-free |
||||
%patch100 -p1 -b .notify-open-title-transparency |
||||
%patch101 -p1 -b .unsupported-locale |
||||
%patch102 -p1 -b .scroll-speed |
||||
%patch103 -p1 -b .warnings |
||||
|
||||
%build |
||||
autoreconf -f -i |
||||
%configure --disable-static --with-gtk=3.0 --with-nautilus-extension |
||||
|
||||
make %{?_smp_mflags} |
||||
|
||||
%install |
||||
%make_install |
||||
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/nautilus/extensions-3.0/*.la |
||||
|
||||
%find_lang %{gettext_package} --with-gnome |
||||
|
||||
%check |
||||
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/org.gnome.Terminal.desktop |
||||
|
||||
%postun |
||||
if [ $1 -eq 0 ] ; then |
||||
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || : |
||||
fi |
||||
|
||||
%posttrans |
||||
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || : |
||||
|
||||
%files -f %{gettext_package}.lang |
||||
%license COPYING |
||||
%doc AUTHORS NEWS |
||||
|
||||
%{_bindir}/gnome-terminal |
||||
%{_datadir}/metainfo/org.gnome.Terminal.appdata.xml |
||||
%{_datadir}/applications/org.gnome.Terminal.desktop |
||||
%{_libexecdir}/gnome-terminal-migration |
||||
%{_libexecdir}/gnome-terminal-server |
||||
%{_datadir}/dbus-1/services/org.gnome.Terminal.service |
||||
%{_datadir}/glib-2.0/schemas/org.gnome.Terminal.gschema.xml |
||||
%{_datadir}/gnome-shell |
||||
%{_userunitdir}/gnome-terminal-server.service |
||||
|
||||
%files nautilus |
||||
%{_libdir}/nautilus/extensions-3.0/libterminal-nautilus.so |
||||
%{_datadir}/metainfo/org.gnome.Terminal.Nautilus.metainfo.xml |
||||
|
||||
%changelog |
||||
* Fri Jun 08 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.28.2-2 |
||||
- Backport fix for client-side memory error (GNOME/gnome-terminal#1) |
||||
- Bump BuildRequires versions |
||||
- Drop the dark theme override |
||||
- Rebase and restore the scroll speed patches |
||||
- Rebase and restore the patch to allow old ISO 8895 charsets |
||||
- Restore the GConf migration tool |
||||
- Resolves: #1568632 |
||||
|
||||
* Wed Jun 06 2018 Richard Hughes <rhughes@redhat.com> - 3.28.2-1 |
||||
- Update to 3.28.2 |
||||
- Resolves: #1568632 |
||||
|
||||
* Thu May 25 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.22.1-2 |
||||
- Update Japanese translations for RHEL |
||||
- Resolves: #1379605 |
||||
|
||||
* Tue Feb 28 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.22.1-1 |
||||
- Update to 3.22.1 |
||||
- Drop upstreamed patches |
||||
- Rebase downstream patches |
||||
- Resolves: #1386964 |
||||
|
||||
* Fri Jul 22 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-13 |
||||
- Fix the Obsoletes to replace nautilus-open-terminal |
||||
- Resolves: #1341615 |
||||
|
||||
* Thu Jun 30 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-12 |
||||
- Restore the rest of the title handling options and make it all work |
||||
- Resolves: #1296110 |
||||
|
||||
* Fri Jun 10 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-11 |
||||
- Revert the "New Terminal" entry in the application menu |
||||
- Resolves: #1300826 |
||||
|
||||
* Wed Jun 01 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-10 |
||||
- Add Provides/Obsoletes to replace nautilus-open-terminal |
||||
- Resolves: #1341615 |
||||
|
||||
* Tue May 17 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-9 |
||||
- Restore separate menuitems for opening tabs and windows |
||||
- Resolves: #1300826 |
||||
|
||||
* Fri May 13 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-8 |
||||
- Add a property to configure the scroll speed |
||||
- Resolves: #1103380 |
||||
|
||||
* Mon Apr 11 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-7 |
||||
- Restore the --title option |
||||
- Resolves: #1296110 |
||||
|
||||
* Fri Apr 8 2016 Matthias Clasen <mclasen@redhat.com> - 3.14.3-6 |
||||
- Remove accels from some translations |
||||
Resolves: #1251885 |
||||
|
||||
* Tue Apr 5 2016 Ray Strode <rstrode@redhat.com> - 3.14.3-5 |
||||
- Allow old ISO 8895 charsets for backward compatibility |
||||
Resolves: #1323217 |
||||
|
||||
* Tue Apr 5 2016 Matthias Clasen <mclasen@redhat.com> - 3.14.3-4 |
||||
- Update translations |
||||
- Resolves: #1272392 |
||||
|
||||
* Mon Oct 5 2015 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-3 |
||||
- Pass tab switching keys to the terminal for tabless windows |
||||
- Resolves: #1268255 |
||||
|
||||
* Mon Sep 21 2015 Matthias Clasen <mclasen@redhat.com> - 3.14.3-2 |
||||
- Drop the dark theme override |
||||
- Resolves: #1264054 |
||||
|
||||
* Wed Apr 8 2015 Debarshi Ray <rishi@fedoraproject.org> - 3.14.3-1 |
||||
- Update to 3.14.3 |
||||
- Drop the appdata-tools BR from RHEL |
||||
- Add BRs on vala-devel, vala-tools and yelp-tools to generate the build |
||||
scripts |
||||
- Resolves: #1174726, #1180775 |
||||
|
||||
* Mon Mar 23 2015 Richard Hughes <rhughes@redhat.com> - 3.14.2-1 |
||||
- Update to 3.14.2 |
||||
- Resolves: #1174726 |
||||
|
||||
* Mon Mar 3 2014 Matthias Clasen <mclasen@redhat.com> - 3.8.4-8 |
||||
- Rebuild |
||||
- Resolves: #1070811 |
||||
|
||||
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.8.4-7 |
||||
- Mass rebuild 2014-01-24 |
||||
|
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.8.4-6 |
||||
- Mass rebuild 2013-12-27 |
||||
|
||||
* Tue Dec 10 2013 Zeeshan Ali <zeenix@redhat.com> - 3.8.4-5 |
||||
- Fix #1030352. |
||||
|
||||
* Tue Dec 10 2013 Zeeshan Ali <zeenix@redhat.com> - 3.8.4-4 |
||||
- Fix #1034618. |
||||
|
||||
* Mon Dec 9 2013 Zeeshan Ali <zeenix@redhat.com> - 3.8.4-3 |
||||
- Fix #952664. |
||||
|
||||
* Tue Nov 19 2013 Zeeshan Ali <zeenix@redhat.com> - 3.8.4-2 |
||||
- Fix #1030434. |
||||
|
||||
* Mon Jul 8 2013 Matthias Clasen <mclasen@redhat.com> - 3.8.4-1 |
||||
- Update to 3.8.4 |
||||
- Fixes a crash on session resume (#981440) |
||||
|
||||
* Mon Jun 10 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.3-1 |
||||
- Update to 3.8.3 |
||||
- Use desktop-file-validate instead of desktop-file-install |
||||
|
||||
* Mon May 13 2013 Richard Hughes <rhughes@redhat.com> - 3.8.2-1 |
||||
- Update to 3.8.2 |
||||
|
||||
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.1-1 |
||||
- Update to 3.8.1 |
||||
|
||||
* Tue Apr 02 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0.1-1 |
||||
- Update to 3.8.0.1 |
||||
|
||||
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0-1 |
||||
- Update to 3.8.0 |
||||
|
||||
* Tue Mar 19 2013 Richard Hughes <rhughes@redhat.com> - 3.7.92-1 |
||||
- Update to 3.7.92 |
||||
|
||||
* Thu Mar 7 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1 |
||||
- Update to 3.7.91 |
||||
|
||||
* Tue Feb 26 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.2-3 |
||||
- Bring back titlebars on maximized terminals |
||||
|
||||
* Fri Jan 25 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.2-2 |
||||
- Backport a fix for a crash in terminal_screen_container_style_updated |
||||
|
||||
* Fri Jan 25 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.2-1 |
||||
- Update to 3.7.2 |
||||
|
||||
* Wed Jan 16 2013 Richard Hughes <hughsient@gmail.com> - 3.7.1-1 |
||||
- Update to 3.7.1 |
||||
|
||||
* Wed Jan 09 2013 Richard Hughes <hughsient@gmail.com> - 3.7.0-1 |
||||
- Update to 3.7.0 |
||||
|
||||
* Tue Oct 16 2012 Kalev Lember <kalevlember@gmail.com> - 3.6.1-1 |
||||
- Update to 3.6.1 |
||||
|
||||
* Tue Sep 25 2012 Matthias Clasen <mclasen@redhat.com> - 3.6.0-1 |
||||
- Update to 3.6.0 |
||||
|
||||
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 3.5.90-1 |
||||
- Update to 3.5.90 |
||||
|
||||
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.1.1-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1.1-1 |
||||
- Update to 3.4.1.1 |
||||
|
||||
* Tue Mar 27 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.0.1-1 |
||||
- Update to 3.4.0.1 |
||||
- Avoid listing files twice in %%files |
||||
|
||||
* Tue Feb 7 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.0-1 |
||||
- Update to 3.3.0 |
||||
|
||||
* Thu Jan 12 2012 Matthias Clasen <mclasen@redhat.com> - 3.2.1-2 |
||||
- Update license field (#639132) |
||||
|
||||
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2 |
||||
- Rebuilt for glibc bug#747377 |
||||
|
||||
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1-1 |
||||
- Update to 3.2.1 |
||||
|
||||
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1 |
||||
- Update to 3.2.0 |
||||
|
||||
* Mon Apr 25 2011 Matthias Clasen <mclasen@redhat.com> 3.0.1-1 |
||||
- Update to 3.0.1 |
||||
|
||||
* Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> 3.0.0-1 |
||||
- Update to 3.0.0 |
||||
|
||||
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 2.33.90-1 |
||||
- Update to 2.33.90 |
||||
|
||||
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 2.33.5-3 |
||||
- Rebuild against newer gtk |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.33.5-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.5-1 |
||||
- Update to 2.33.5 |
||||
|
||||
* Wed Jan 12 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.4-2 |
||||
- Make the find dialog work again |
||||
|
||||
* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.4-1 |
||||
- Update to 2.33.4 |
||||
|
||||
* Fri Jan 7 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.3-1 |
||||
- Update to 2.33.3 |
||||
|
||||
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.33.2-2 |
||||
- Rebuild against new gtk |
||||
|
||||
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.33.2-1 |
||||
- Update to 2.33.2 |
||||
- Back to gtk3 |
||||
|
||||
* Fri Oct 8 2010 Owen Taylor <otaylor@redhat.com> - 2.33.0-3 |
||||
- Revert back to a gtk2 build - the gtk3 build has major sizing issues |
||||
(rhbz #641337) |
||||
|
||||
* Thu Oct 7 2010 Matthias Clasen <mclasen@redhat.com> - 2.33.0-2 |
||||
- Build against gtk3 |
||||
|
||||
* Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 2.33.0-1 |
||||
- Update to 2.33.0 |
||||
|
||||
* Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.0-1 |
||||
- Update to 2.32.0 |
||||
|
||||
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.91-1 |
||||
- Update to 2.31.91 |
||||
|
||||
* Thu Aug 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.90-1 |
||||
- Update to 2.31.90 |
||||
|
||||
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.3-1 |
||||
- Update to 2.31.3 |
||||
|
||||
* Tue May 4 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-2 |
||||
- Add more translations for search UI |
||||
|
||||
* Tue May 4 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1 |
||||
- Update to 2.31.2 |
||||
- Add translations for search UI |
||||
|
||||
* Tue May 4 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.1-1 |
||||
- Update to 2.31.1 |
||||
|
||||
* Mon Apr 26 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.1-1 |
||||
- Update to 2.30.1 |
||||
|
||||
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1 |
||||
- Update to 2.30.0 |
||||
|
||||
* Thu Mar 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.92-1 |
||||
- Update to 2.29.92 |
||||
|
||||
* Sun Feb 14 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.6-3 |
||||
- Add missing libs |
||||
|
||||
* Thu Jan 14 2010 Behdad Esfahbod <behdad@redhat.com> - 2.29.6-2 |
||||
- Second try |
||||
- Drop stale patch |
||||
|
||||
* Thu Jan 14 2010 Behdad Esfahbod <behdad@redhat.com> - 2.29.6-1 |
||||
- Update to 2.29.6 |
Loading…
Reference in new issue