summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update zh_CN translation0.46.1YunQiang Su2016-10-181-61/+51
|
* Updated Norwegian bokmål translation from Kjartan Maraas.Kjartan Maraas2016-10-161-63/+14
|
* Update Occitan translationCédric Valmary2016-10-101-56/+15
|
* Updated Italian translationGianvito Cavasoli2016-10-061-53/+18
|
* build: Require vala 0.24Christian Persch2016-09-271-1/+1
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=772064 (cherry picked from commit dc70d3aa143be15fce219d5294ea45bbe35e6c0e)
* Updated Croatian translationgogo2016-09-241-43/+40
|
* Updated Basque languageInaki Larranaga Murgoitio2016-09-231-67/+56
|
* doap: CleanupChristian Persch2016-09-233-22/+2
| | | | | | | Remove inactive maintainers (Behdad, Chris). Remove obsolete MAINTAINERS file. (cherry picked from commit f6347b0ec91806d97c935eed8bc70fccc984788d)
* widget: Fix backward searchChristian Persch2016-09-181-3/+2
| | | | | | | | Search was getting two lines of text at once, breaking backward search. Problem was introduced in commit d046ae112f5ca93378c2146c1ea239bc63778364. https://bugzilla.gnome.org/show_bug.cgi?id=769400 (cherry picked from commit d4d201f80ca1f401e39daab4c8e6bd0836e02696)
* app: Fix button icon nameChristian Persch2016-09-181-1/+1
| | | | (cherry picked from commit 6699fb33fad4db2acc2bf1f18512b698b8159f81)
* app: Fix search button sensitivityChristian Persch2016-09-181-6/+7
| | | | (cherry picked from commit a2e7874286b885d8bb678f0ffad496cddc441788)
* app: Add MULTILINE flag for regexChristian Persch2016-09-182-13/+5
| | | | (cherry picked from commit 2b93575d98ccc5dbc932cf0c49be36fa33e61622)
* Post release version bumpChristian Persch2016-09-181-1/+1
|
* Update British English translation0.46.0David King2016-09-181-52/+43
|
* Updated Russian translationStas Solovey2016-09-161-70/+64
|
* [l10n] update Persian translationsArash Mousavi2016-09-131-49/+47
|
* Updated Danish translationAsk Hjorth Larsen2016-09-131-61/+54
|
* Post release version bumpChristian Persch2016-09-121-2/+2
|
* Version 0.45.920.45.92Christian Persch2016-09-121-1/+1
|
* Updated Greek translationTom Tryfonidis2016-09-111-64/+56
|
* widget: Fix OSC 112 (reset cursor color)Egmont Koblinger2016-09-112-2/+2
| | | | | | This was accidentally broken in commit 86f206b3ec01033c07a76cf949276058489b53ee. https://bugzilla.gnome.org/show_bug.cgi?id=771256
* Updated Galician translationsFran Dieguez2016-09-091-67/+57
|
* Update Latvian translationRūdolfs Mazurs2016-09-081-67/+53
|
* Updated Swedish translationAnders Jonsson2016-09-061-65/+54
|
* regex: Warn if MULTILINE flag it not usedChristian Persch2016-09-043-2/+24
| | | | | | Due to the way that vte implements the regex search, using PCRE2_MULTILINE when creating the regex is required. Warn if passing a regex that doesn't have it.
* regex: Always add MULTILINE flag when translating from GRegexChristian Persch2016-09-042-2/+2
| | | | | | | Instead of warning if the MULTILINE flag is not set in the GRegex, just add it, since we're translating the regex to PCRE2 anyway. https://bugzilla.gnome.org/show_bug.cgi?id=770718
* docs: Fix missing descriptionsChristian Persch2016-09-041-3/+1
| | | | | | | Need to specify the source code file extensions manually in order for gtk-doc to pick up our .cc files. https://bugzilla.gnome.org/show_bug.cgi?id=770114
* Updated Kazakh translationBaurzhan Muftakhidinov2016-09-041-61/+53
|
* Updated Korean translationChangwoo Ryu2016-09-031-63/+53
|
* Updated French translationClaude Paroz2016-08-301-67/+15
|
* Updated Serbian translationМирослав Николић2016-08-282-135/+117
|
* widget: Fix memory leak in _vte_file_stream_init()Eric R. Schulz2016-08-271-1/+0
| | | | | | | | g_object_new() calls _vte_boa_init(), so calling the init twice leaks memory. The bug was introduced in commit ab8b3a3465625e08e4aa5657d13d54b6818a231a. https://bugzilla.gnome.org/show_bug.cgi?id=770038
* docs: Fix minor typoEgmont Koblinger2016-08-261-1/+1
|
* Updated Slovenian translationMatej Urbančič2016-08-251-67/+57
|
* Updated Hungarian translationBalázs Úr2016-08-191-79/+16
|
* Updated Indonesian translationAndika Triwidada2016-08-181-63/+53
|
* widget: Fix refcount leak in child_watch_doneEric R. Schulz2016-08-171-1/+0
| | | | | | | | | | | | | | | VteTerminalPrivate::child_watch_done() was missing the g_object_unref() corresponding to its g_object_ref() at the start. Since this function is only called from the callback of g_child_watch_add_full(), and that callback already uses g_object_ref()/ g_object_unref() around the call to VteTerminalPrivate::child_watch_done to keep the VteTerminalPrivate in a death grip, just remove the extra g_object_ref(). The bug was introduced in commit 50aee40af7d16c2bec82f4f8bcdd259b6913c541. https://bugzilla.gnome.org/show_bug.cgi?id=770036
* Updated Polish translationPiotr Drąg2016-08-161-62/+24
|
* Post release version bumpChristian Persch2016-08-151-1/+1
|
* Version 0.45.900.45.90Christian Persch2016-08-152-1/+7
|
* widget: gtk: Pass NULL for geometry widgetChristian Persch2016-08-151-0/+4
| | | | | | | | Since gtk 3.20 the geometry hints are not applied if the geometry widget passed is not NULL. This makes geometry a bit better, but still not right. Need to bring over the fixed to gnome-terminal from bug 760944.
* Updated Lithuanian translationAurimas Černius2016-08-141-67/+57
|
* Updated Czech translationMarek Černocký2016-08-131-64/+54
|
* Updated Hebrew translationYosef Or Boczko2016-08-091-58/+49
|
* regex: Require PCRE2Christian Persch2016-08-049-246/+64
| | | | Drop --without-pcre2 and just require PCRE2 to be present.
* regex: Translate GRegex to PCRE2Christian Persch2016-08-045-405/+149
| | | | | | Instead of duplicating all internal functions to deal with either a PCRE2 regex or a GRegex, just translate the GRegex to PCRE2 in the API entry points.
* Add Language headers to po filesPiotr Drąg2016-07-2552-8/+52
| | | | Future versions of gettext will fail if this header is missing.
* Updated Friulian translationFabio Tomat2016-07-251-6/+15
|
* widget: Fix a memory leak in set_colorsEgmont Koblinger2016-07-241-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=768994
* emulation: Swallow iterm2 OSC 1337Christian Persch2016-07-043-0/+15
| | | | | | | | | | | Accept OSC 1337 but make it a no-op. When sshing to an osx host the iterm2 integration may be active, causing the remote shell to emit iterm2 OSC 1337 sequences that clutter the vte terminal since we don't ignore unknown sequences (bug 403130). https://bugzilla.gnome.org/show_bug.cgi?id=403130