commit 3b880c85a7bd12a530fe7e4202a99376f94e87b4 Author: Christian Persch Date: Mon Sep 12 21:08:25 2016 +0200 Version 3.21.92 configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 3de58c075100b27cd22a661edfd9203b2f7d73fa Author: GNOME Translation Robot Date: Mon Sep 12 11:16:07 2016 +0000 Updated Scottish Gaelic translation po/gd.po | 373 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 169 insertions(+), 204 deletions(-) commit 8358a7eb7b009ccffd18417bb23fa93a4324eee0 Author: Tom Tryfonidis Date: Mon Sep 12 08:12:48 2016 +0000 Updated Greek translation po/el.po | 311 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 158 insertions(+), 153 deletions(-) commit 79d0149c692cfd0c35e4ec04effcef72661f4226 Author: Ask Hjorth Larsen Date: Mon Sep 12 02:12:24 2016 +0200 Updated Danish translation po/da.po | 280 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 142 insertions(+), 138 deletions(-) commit 7eece8c9bf9aa89e69db6c11b66a60c5e3c21916 Author: Piotr Drąg Date: Fri Sep 9 03:05:49 2016 +0200 Updated Polish translation po/pl.po | 150 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 75 insertions(+), 75 deletions(-) commit 820a374baf605bac6e5d28867afb11edd00862e5 Author: Rūdolfs Mazurs Date: Thu Sep 8 19:16:39 2016 +0300 Update Latvian translation po/lv.po | 349 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 162 insertions(+), 187 deletions(-) commit eaefc1b7c0dd00c8055dfea4b65e05fa16ee5c95 Author: Christian Persch Date: Mon Feb 16 15:40:46 2015 +0100 i18n: *: Fix incorrectly translated string po/en_GB.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit b4e12a7300d25d45d7336a49363339cbaef2981b Author: Yosef Or Boczko Date: Tue Sep 6 13:07:09 2016 +0300 Updated Hebrew translation po/he.po | 293 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 149 insertions(+), 144 deletions(-) commit abc5f5e1c90649d76cd15264cc0e9b6b6c9608bf Author: Trần Ngọc Quân Date: Tue Sep 6 07:38:33 2016 +0700 Updated Vietnamese translation Signed-off-by: Trần Ngọc Quân po/vi.po | 288 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 146 insertions(+), 142 deletions(-) commit fd832d4fb84b8d49adc6dfb46efc852ea1270205 Author: Anders Jonsson Date: Mon Sep 5 20:48:57 2016 +0000 Updated Swedish translation po/sv.po | 359 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 183 insertions(+), 176 deletions(-) commit 82738e5fe8b747a61f2a93c9bf0e68088b8a5fda Author: Fran Dieguez Date: Mon Sep 5 00:00:45 2016 +0200 Updated Galician translations po/gl.po | 295 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 150 insertions(+), 145 deletions(-) commit 6b73ffa498341bed5f17d946d9efc21c3ceb4788 Author: Aurimas Černius Date: Sun Sep 4 17:15:43 2016 +0300 Updated Lithuanian translation po/lt.po | 330 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 150 insertions(+), 180 deletions(-) commit 1f1ef47d2d10e6e4a9e96e10a4c6d1e0e26660fd Author: David King Date: Sun Sep 4 15:35:10 2016 +0200 Update British English translation po/en_GB.po | 95 ++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 50 insertions(+), 45 deletions(-) commit 1f6c999a7888f94bd261da7dc523b53c50d10050 Author: Christian Persch Date: Sun Sep 4 15:17:44 2016 +0200 search: Always set PCRE2_MULTILINE flag It's required by vte. src/terminal-search-popover.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) commit cae04637f696e30f9054482411eb0fabd6064a84 Author: Sjoerd Simons Date: Sun Sep 4 14:30:05 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 content. Also use the actual allocation of the content specifically for the calculation of the CSD size such that both are in sync, but keep using the preferred size otherwise as those values get used for resizing calculations. https://bugzilla.gnome.org/show_bug.cgi?id=769898 src/terminal-window.c | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) commit bd9cb2797d15c8f19f2f24db90ec0d7d8c8ac03c Author: Christian Persch Date: Sun Sep 4 14:10:54 2016 +0200 window: Make inspector available in non-debug builds We disable the stock keybindings for the inspector because we want all keys to go to the terminal instead of performing random actions, and instead install a menu item in the Help menu to show the inspector. Previously this menu item was only present in a debug build. Since gtk now has a settings schema that enables the inspector, use it to show the menu item also in non-debug builds when the key is enabled. Since this is a foreign settings schema that could be considered to be internal to gtk+, be extra careful in instantiating it only if it exists, and the expected key exists with the expected value type. https://bugzilla.gnome.org/show_bug.cgi?id=770245 src/terminal-app.c | 17 +++++++++++++++++ src/terminal-app.h | 2 ++ src/terminal-libgsystem.h | 25 +++++++++++++++++++++++-- src/terminal-util.c | 40 ++++++++++++++++++++++++++++++++++++++++ src/terminal-util.h | 4 ++++ src/terminal-window.c | 36 ++++++++++++++++-------------------- src/terminal.xml | 2 ++ 7 files changed, 104 insertions(+), 22 deletions(-) commit 58d0f87f84c932f2206ee87162a1dc8c2a0b8712 Author: Baurzhan Muftakhidinov Date: Sun Sep 4 05:03:03 2016 +0000 Updated Kazakh translation po/kk.po | 295 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 150 insertions(+), 145 deletions(-) commit d135834d8371b74fe5acb66158a39d144e65ff07 Author: Youngbin Han Date: Sat Sep 3 09:36:08 2016 +0000 Updated Korean translation po/ko.po | 415 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 196 insertions(+), 219 deletions(-) commit 367b8e1e89ecf5066797865bff05c9161e6c682f Author: Matthias Clasen Date: Wed Aug 31 14:34:10 2016 -0400 Revert "Added Portuguese translation" This reverts commit f6cecdd6be607ac1eb3b41c8230f92a327f1aac5. It broke the build. help/Makefile.am | 2 +- help/pt/pt.po | 3707 ------------------------------------------------------ 2 files changed, 1 insertion(+), 3708 deletions(-) commit f6cecdd6be607ac1eb3b41c8230f92a327f1aac5 Author: Tiago Santos Date: Wed Aug 31 14:10:32 2016 -0300 Added Portuguese translation help/Makefile.am | 2 +- help/pt/pt.po | 3707 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 3708 insertions(+), 1 deletion(-) commit fbe099a06f4dedd313990f34e898729362c41999 Author: Мирослав Николић Date: Sun Aug 28 09:50:26 2016 +0200 Updated Serbian translation po/sr.po | 353 +++++++++++++++++++++++++------------------------------- po/sr@latin.po | 355 ++++++++++++++++++++++++++------------------------------- 2 files changed, 317 insertions(+), 391 deletions(-) commit 98e282b40f40a928cc873c30205f0fa287c6128e Author: Matej Urbančič Date: Thu Aug 25 21:15:41 2016 +0200 Updated Slovenian translation po/sl.po | 1059 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 631 insertions(+), 428 deletions(-) commit 6080b8f4085bc283c8edf3dccfec7c6521c4562f Author: Enrico Nicoletto Date: Thu Aug 25 16:17:18 2016 +0000 Updated Brazilian Portuguese translation po/pt_BR.po | 631 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 316 insertions(+), 315 deletions(-) commit 201f6c746ad37463ed819afc32657333b5b0131d Author: Akom Chotiphantawanon Date: Thu Aug 25 22:26:51 2016 +0700 Updated Thai translation po/th.po | 797 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 462 insertions(+), 335 deletions(-) commit e214a7b5b6e2675e812443b87dee153d3345dde0 Author: Piotr Drąg Date: Tue Aug 23 12:07:49 2016 +0200 Updated Polish translation po/pl.po | 90 +++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 47 insertions(+), 43 deletions(-) commit f2d6e6da48ca0f5a7806b6e1218a2e20231aa6e6 Author: Fabio Tomat Date: Mon Aug 22 19:22:42 2016 +0000 Updated Friulian translation po/fur.po | 260 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 131 insertions(+), 129 deletions(-) commit 1d96cdac9a78ab174b9d773ee38532032d1289ef Author: Daniel Mustieles Date: Mon Aug 22 20:45:16 2016 +0200 Updated Spanish translation po/es.po | 249 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 127 insertions(+), 122 deletions(-) commit 3e84eded488086f6cf3f118102983af036efb827 Author: Alexandre Franke Date: Mon Aug 22 08:44:49 2016 +0000 Updated French translation po/fr.po | 322 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 164 insertions(+), 158 deletions(-) commit 69502eb171b682f88fb6d1ac7b94d1c64701c1c6 Author: Mario Blättermann Date: Sun Aug 21 10:32:16 2016 +0000 Updated German translation po/de.po | 302 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 153 insertions(+), 149 deletions(-) commit e022d08d1e266f7b44df5bcb5709a3947aa665ae Author: Egmont Koblinger Date: Sat Aug 20 23:41:28 2016 +0200 screen: Add unittest for very long regex match https://bugzilla.gnome.org/show_bug.cgi?id=770147#c8 src/terminal-regex.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit b8d933f12461e7bd3d36a51b3868390c87cd32ce Author: Balázs Úr Date: Fri Aug 19 21:39:34 2016 +0000 Updated Hungarian translation po/hu.po | 336 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 161 insertions(+), 175 deletions(-) commit ea87a9f635e1392b58a82169970062d5bdcffbc6 Author: Tiago Santos Date: Thu Aug 18 21:21:39 2016 +0000 Updated Portuguese translation po/pt.po | 357 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 162 insertions(+), 195 deletions(-) commit 0bad9d218c9a1712e36814ffc2c6c061c7ea33c2 Author: Andika Triwidada Date: Thu Aug 18 03:17:40 2016 +0000 Updated Indonesian translation po/id.po | 284 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 144 insertions(+), 140 deletions(-) commit 99b62b995421ecda8a3cfa48fd61c0f232595871 Author: Marek Černocký Date: Wed Aug 17 10:31:28 2016 +0200 Updated Czech translation po/cs.po | 280 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 142 insertions(+), 138 deletions(-) commit 441aece5b5f012c04307fe6df652ffaea1eeda0a Author: Christian Persch Date: Wed Aug 17 08:20:19 2016 +0200 Revert "window: Fix CSD size calculations with long titles" This reverts commit 40d9d5b78067caa6a28e83e32b87c0b51d14c091. The commit introduced a regression on non-CSD, see https://bugzilla.gnome.org/show_bug.cgi?id=769898#c5 src/terminal-window.c | 34 ++++++++++++---------------------- 1 file changed, 12 insertions(+), 22 deletions(-) commit 314390f6a9c261c0bcc59f4d64b7941d2808c2b0 Author: Dušan Kazik Date: Tue Aug 16 17:54:56 2016 +0000 Updated Slovak translation po/sk.po | 297 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 151 insertions(+), 146 deletions(-) commit e0afa0406cda3cb6dcaecc22f00010f5eb40deb8 Author: Christian Persch Date: Tue Aug 16 19:17:55 2016 +0200 client: legacy: Add command line option to show the preferences This is useful when you've borked the prefs, for example by changing the command to something that doesn't exist — causing the terminal to immediately exit on launch — and want to fix it. src/terminal-options.c | 1 + src/terminal-options.h | 1 + src/terminal.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 51 insertions(+), 2 deletions(-) commit eb1c2aa26978a3e52d2b6086bfa450c49941bbcb Author: Christian Persch Date: Tue Aug 16 19:17:55 2016 +0200 server: Make prefs dialogue an app window This means it'll keep the server alive while it's open. src/preferences.ui | 3 ++- src/profile-editor.c | 2 ++ src/profile-preferences.ui | 3 ++- src/terminal-app.c | 7 +------ src/terminal-prefs.c | 2 ++ 5 files changed, 9 insertions(+), 8 deletions(-) commit 13d21528a692888e12af0152b517709a9adc1ae5 Author: David King Date: Tue Aug 16 14:03:50 2016 +0200 Update British English translation po/en_GB.po | 2021 ++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 1227 insertions(+), 794 deletions(-) commit ca491ca2b0299e3f3a0d8a942ca5a14ff74563a4 Author: Piotr Drąg Date: Tue Aug 16 09:22:26 2016 +0200 Updated Polish translation po/pl.po | 440 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 218 insertions(+), 222 deletions(-) commit 200f4bf39591b086c9a3c140ced748f95cbc5553 Author: Christian Persch Date: Mon Aug 15 20:23:09 2016 +0200 Post release version bump configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)