gnome-terminal 3.21.90



About Terminal
==============

Use the command line

ChangeLog
=========

commit bc8ce3021867d9a7897edb623723e6e83504a3de
Author: Christian Persch <chpe gnome org>
Date:   Mon Aug 15 20:22:11 2016 +0200

    Version 3.21.90

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 40d9d5b78067caa6a28e83e32b87c0b51d14c091
Author: Sjoerd Simons <sjoerd luon net>
Date:   Mon Aug 15 20:22:11 2016 +0200

    window: Fix CSD size calculations with long titles
    
    To get the size of the window use the actual allocation rather then the
    preferred size as the latter takes into account the natural size of the
    title bar as well as the content which throws of calculation when the
    natural size of the title bar is wider then the contnet.
    
    Signed-off-by: Sjoerd Simons <sjoerd luon net>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=769898

 src/terminal-window.c | 34 ++++++++++++++++++++++------------
 1 file changed, 22 insertions(+), 12 deletions(-)

commit 10e164d8f7f7c95710cee7aba1a031250d64d423
Author: Christian Persch <chpe gnome org>
Date:   Sat Jan 10 15:36:35 2015 +0100

    notebook: Make tabs nondetachable
    
    It seems detaching a tab via DND is crashing in gtk+ again.
    Until that is fixed, disable tab DND detaching.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=769161
    https://bugzilla.gnome.org/show_bug.cgi?id=767588

 src/terminal-notebook.c | 2 ++
 1 file changed, 2 insertions(+)

commit c7281163d0bb6d998a9ee0e72bb15d0278ca12d8
Author: Christian Persch <chpe gnome org>
Date:   Tue Aug 9 21:31:51 2016 +0200

    Revert "notebook: avoid crash on tab DND"
    
    This reverts commit 85b448f7c9e219e82d4d8abafe405d73349c08c1.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=769161#c10

 src/terminal-notebook.c | 5 -----
 1 file changed, 5 deletions(-)

commit 253ffa48faa50123f366f601205ec6d9662b9776
Author: Fabio Tomat <f t public gmail com>
Date:   Sun Aug 7 16:28:40 2016 +0000

    Updated Friulian translation

 po/fur.po | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

commit 59522bb850eb20d569b4f7db366bd2302a5077e0
Author: Debarshi Ray <debarshir gnome org>
Date:   Fri Aug 5 10:36:01 2016 +0200

    appdata: Use *.metainfo.xml as extension for the nautilus add-on
    
    https://bugzilla.gnome.org/show_bug.cgi?id=769538

 Makefile.am                                                           | 4 ++--
 ...ilus.appdata.xml.in => org.gnome.Terminal.Nautilus.metainfo.xml.in | 0
 po/POTFILES.in                                                        | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit ae51120aa3e746ca4afa0eadb76e8132a08e8b73
Author: Debarshi Ray <debarshir gnome org>
Date:   Fri Aug 5 10:04:42 2016 +0200

    appdata: Add kudos for HiDpi, HighContrast and SearchProvider
    
    https://bugzilla.gnome.org/show_bug.cgi?id=769535

 org.gnome.Terminal.appdata.xml.in | 3 +++
 1 file changed, 3 insertions(+)

commit ef7a345fedd40a69836dfb9c226983e95f0d2e1f
Author: Christian Persch <chpe gnome org>
Date:   Thu Aug 4 17:56:27 2016 +0200

    all: Remove GRegex use and require PCRE2
    
    Now that vte requires PCRE2, there's no need anymore for
    the --without-pcre2 configure switch.

 configure.ac                  | 26 ++------------------------
 src/terminal-screen.c         | 35 +----------------------------------
 src/terminal-search-popover.c | 34 ----------------------------------
 src/terminal-search-popover.h |  4 ----
 src/terminal-window.c         | 16 ----------------
 5 files changed, 3 insertions(+), 112 deletions(-)

commit c44c15d14d1f8dc98dadf9d8bf3560b0d83c7041
Author: Daniel Mustieles <daniel mustieles gmail com>
Date:   Tue Aug 2 16:51:40 2016 +0200

    Updated Spanish translation

 po/es.po | 211 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 97 insertions(+), 114 deletions(-)

commit 88bd3251a91e4395bd0dde9d90e670e8d180b5db
Author: Christian Persch <chpe gnome org>
Date:   Mon Aug 1 20:12:42 2016 +0200

    window: Make geometry work better with gtk 3.20
    
    Combined patch by Sorokin Alexei <sor alexei meowr ru>
    and Simon McVittie <smcv debian org>.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=760944

 src/terminal-options.c |   4 --
 src/terminal-window.c  | 167 ++++++++++++++++++++++++++++++++++++++++++-------
 2 files changed, 143 insertions(+), 28 deletions(-)

commit 0dd655c569f8b8141216be8e921cb5d1dcb53b6e
Author: Debarshi Ray <debarshir gnome org>
Date:   Mon Aug 1 19:33:57 2016 +0200

    window: Support animated and touch scrolling
    
    Add back code to conditionally compile TerminalScreenContainer
    to use a GtkScrolledWindow instead of creating our own GtkScrollbar.
    When used, this gives us animated and touch scrolling for free.
    We can mimic the existing behaviour by creating a GtkScrolledWindow
    that never scrolls horizontally, but always vertically. We can
    use the new EXTERNAL policy to hide the vertical scrollbar widget
    depending on the setting.
    
    However, GtkScrolledWindow doesn't work with
    GTK_SIZE_REQUEST_CONSTANT_SIZE children, so this code will only
    exist for development purposes until gtk+ fixes this.
    
    Also install custom CSS to hide GtkScrolledWindow over/underscroll
    animations.
    
    Also reverts commit 41eb2ec73653adc5fd36fa73cebdc8a6169f8516
    
    https://bugzilla.gnome.org/show_bug.cgi?id=733210

 src/terminal-screen-container.c | 60 ++++++++++++++++++++++++++++++++++++++---
 src/terminal.common.css         |  8 ++++++
 src/terminal.gresource.xml      |  2 +-
 3 files changed, 65 insertions(+), 5 deletions(-)

commit 85b448f7c9e219e82d4d8abafe405d73349c08c1
Author: Andreas Henriksson <andreas fatal se>
Date:   Mon Jul 25 19:38:18 2016 +0200

    notebook: avoid crash on tab DND
    
    See "gtk_notebook_detach_tab" API documentation. Using it instead
    of gtk_container_remove avoids an assertion crash in gtk+ when
    dragging and dropping a tab between terminal windows.
    
    See also original bug report at
    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825818
    
    https://bugzilla.gnome.org/show_bug.cgi?id=769161

 src/terminal-notebook.c | 5 +++++
 1 file changed, 5 insertions(+)

commit db62c26a01d3274771fc94cf7813e17498ccc63e
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sat Jul 23 15:52:20 2016 +0200

    Add 'Detach Terminal' action to tab context menu
    
    Add the TabsDetach GtkAction to the NotebookPopup group.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=767871

 src/terminal.xml | 2 ++
 1 file changed, 2 insertions(+)

commit 6447aded26416e49bf5fdce8a8fd13c16c0ebb44
Author: Egmont Koblinger <egmont gmail com>
Date:   Fri Jul 22 16:42:14 2016 +0200

    profile: editor: Properly initialize the first palette color
    
    https://bugzilla.gnome.org/show_bug.cgi?id=768850

 src/profile-editor.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

commit 91d8ab199d3189a2670067a9132cf42cca9b7d63
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Thu Jul 21 04:12:11 2016 +0200

    Add Language headers to po files
    
    Future versions of gettext will fail if this header is missing.

 po/am.po          | 1 +
 po/as.po          | 2 +-
 po/az.po          | 1 +
 po/be latin po    | 1 +
 po/bn.po          | 1 +
 po/bn_IN.po       | 2 +-
 po/br.po          | 1 +
 po/ca valencia po | 2 +-
 po/cy.po          | 1 +
 po/de.po          | 2 +-
 po/dz.po          | 2 +-
 po/en shaw po     | 1 +
 po/en_CA.po       | 1 +
 po/es.po          | 2 +-
 po/gu.po          | 2 +-
 po/hr.po          | 1 +
 po/hy.po          | 1 +
 po/ka.po          | 1 +
 po/km.po          | 2 +-
 po/ko.po          | 2 +-
 po/ku.po          | 1 +
 po/mai.po         | 1 +
 po/mg.po          | 1 +
 po/mk.po          | 1 +
 po/mn.po          | 1 +
 po/ms.po          | 1 +
 po/nds.po         | 1 +
 po/nn.po          | 1 +
 po/ps.po          | 1 +
 po/rw.po          | 1 +
 po/si.po          | 1 +
 po/sl.po          | 2 +-
 po/sq.po          | 1 +
 po/sr latin po    | 2 +-
 po/te.po          | 2 +-
 po/tr.po          | 2 +-
 po/ug.po          | 2 +-
 po/wa.po          | 1 +
 po/xh.po          | 1 +
 po/zh_HK.po       | 2 +-
 40 files changed, 40 insertions(+), 15 deletions(-)

commit ca2bccbf1caa4849358daa8699c1e8de91c0d3f3
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Mon Jul 11 11:44:42 2016 +0200

    Updated Polish translation

 po/pl.po | 214 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 107 insertions(+), 107 deletions(-)

commit f096856684a372273c2fa7502e13ba0687e2517e
Author: Muhammet Kara <muhammetk gmail com>
Date:   Sat Jun 4 21:10:28 2016 +0000

    Updated Turkish translation
    (cherry picked from commit a5874e4dd1b2beafd0838edb5497decedf92ba30)

 po/tr.po | 1264 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 804 insertions(+), 460 deletions(-)

commit cc9a3bd95d7a8edff5d65a97d91b43e8c2d61ce8
Author: Cédric Valmary <cvalmary yahoo fr>
Date:   Mon May 30 20:22:02 2016 +0000

    Updated Occitan translation

 po/oc.po | 166 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 83 insertions(+), 83 deletions(-)

commit 435e39969b2a547eaf8815587e1020f13076623b
Author: Kjartan Maraas <kmaraas gnome org>
Date:   Mon May 23 22:40:44 2016 +0200

    Updated Norwegian bokmål translation.

 po/nb.po | 755 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 446 insertions(+), 309 deletions(-)

commit dbc1a7e3c2f75a81b26095b9b3bcdd0d0f514f36
Author: Cédric Valmary <cvalmary yahoo fr>
Date:   Mon May 9 19:43:34 2016 +0000

    Updated Occitan translation

 po/oc.po | 209 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 71 insertions(+), 138 deletions(-)

commit 33839ed2881a96948655d6993e727ef06465d794


Download
========
https://download.gnome.org/sources/gnome-terminal/3.21/gnome-terminal-3.21.90.tar.xz (1.81M)
  sha256sum: 2bb5a63389b320f65e21cba812cccb2a1e52274e3ed0855eec57bf1bcf5407ab



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]