commit c5879367b50dfa7ee4fcee679c38627c24485b4b (HEAD -> vte-0-78, tag: 0.77.92)
Author: Christian Persch <chpe@src.gnome.org>
Date:   Sat Aug 31 23:14:20 2024 +0200

    lib: Remove custom terminfo
    
    This hasn't matured yet and may be the cause of some issues, so revert
    this for stable for now.
    
    This reverts commit e4c9a985f9c3c9cd7b68baf871aa85c770e342e1.
    This reverts commit fb6e734a81513e559c9bc689f5c2f82ebdcc82ab.
    This reverts commit 2dfc0f7f6a40a3ef3285a315c6bd7a446816c0ea.

 meson.build                 |    5 -
 src/meson.build             |    2 -
 src/spawn.cc                |    9 -
 src/terminfo/Makefile       |   25 -
 src/terminfo/meson.build    |   30 -
 src/terminfo/run_tic.py     |   48 -
 src/terminfo/terminfo.src   | 2928 -------------------------------------------
 src/terminfo/xterm-256color |  Bin 4245 -> 0 bytes
 8 files changed, 3047 deletions(-)

commit 78485e1ca61abc5b86bd36b44d1bffb0a95f4fd8
Author: Christian Persch <chpe@src.gnome.org>
Date:   Sat Aug 24 19:57:42 2024 +0200

    minifont: Fix syntax warning with python 3.12
    
    Use a raw string for the regex.
    
    Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2814
    (cherry picked from commit 50fefcc724f88038d7da4172ba932557bc31b9b5)

 src/minifont-coverage.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c0d00bf39e764084adf7654d2021676e5cc7f5ed
Author: Christian Persch <chpe@src.gnome.org>
Date:   Fri Aug 23 23:32:12 2024 +0200

    app: Add scroll options
    
    (cherry picked from commit 7fbf500f8610410cc6ffc8820af64c90095f261c)

 src/app/app.cc | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit cc94a7e01b1363c609dfce5a565a7a405839ee12
Author: Christian Persch <chpe@src.gnome.org>
Date:   Tue Aug 20 17:57:39 2024 +0200

    widget: Fix legacy OSC 7 notification
    
    Commit f44e1c207d49cf33a3efe57f5cc68948c18675c8 accidentally made OSC 7
    emit the legacy OSC 6 notification.
    
    Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2806
    (cherry picked from commit 9e70343560b1916a83d5a4d7323a3b8b48d82f12)

 src/vteseq.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 59b2744b2a723ed97050fbc5238f82eeb65a7fea
Author: Christian Persch <chpe@src.gnome.org>
Date:   Thu Aug 15 13:46:45 2024 +0200

    widget: gtk3: a11y: Remove use of language extension
    
    (cherry picked from commit ba0b31095922af6a7f123c7cff238a54bef5054d)

 src/vteaccess.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 91fd667cce2a6a58100a16015aaf9ab73d6ea9db
Author: Christian Persch <chpe@src.gnome.org>
Date:   Wed Aug 14 19:31:05 2024 +0200

    widget: gtk3: a11y: Fix NULL title
    
    Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2811
    (cherry picked from commit 78e1ac8ec17132da9dfc5c9c59609876da756624)

 src/vteaccess.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 188b39df51efbad45c16860de4a1c0fe6680c4bb
Author: Christian Persch <chpe@src.gnome.org>
Date:   Mon Aug 12 18:52:21 2024 +0200

    lib: Include stdint.h where needed
    
    Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2807

 src/vte/vteregex.h | 1 +
 1 file changed, 1 insertion(+)

commit 11c47e385195ca773e779fba144ebd3a7204e372
Author: Christian Persch <chpe@src.gnome.org>
Date:   Mon Aug 12 18:52:21 2024 +0200

    vte.sh: Preserve exit status

 src/vte.sh.in | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

commit e9266fc2a9416e3514dd14ea879104548ad95c9e
Author: Christian Persch <chpe@src.gnome.org>
Date:   Mon Aug 12 18:52:21 2024 +0200

    widget: termprop: Allow NULL value in vte_terminal_get_termprop_value
    
    This allows this function to work as a
    "vte_terminal_get_termprop_has_value()" API.

 src/vtegtk.cc | 75 ++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 49 insertions(+), 26 deletions(-)

commit 5d79d175ca8a7c07aa05f9905928a8ce80544fb8
Author: Christian Persch <chpe@src.gnome.org>
Date:   Mon Aug 12 18:52:21 2024 +0200

    widget: termprops: Change vte.shell.postexec termprop to UINT
    
    ... allowing it to carry the exit status.
    
    Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2805

 src/vte.sh.in        | 11 ++++++-----
 src/vte/vteglobals.h |  4 ++--
 src/vtegtk.cc        |  4 ++--
 3 files changed, 10 insertions(+), 9 deletions(-)

commit f16094cfca78c374032e9575e3a2d85e0e50baf5
Author: Christian Persch <chpe@src.gnome.org>
Date:   Thu Aug 8 17:43:17 2024 +0200

    vte.sh: Fix function name
    
    Fixes a regression from commit bbafeae5166a237df3eb832086bbf4914684cca7.
    
    Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2803
    (cherry picked from commit da681614af6c50f51478ae8ecb623befa39c0ba7)

 src/vte.sh.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit db9b3665d2d4e2ccbe19e9f2458028582cf5874c
Author: Christian Persch <chpe@src.gnome.org>
Date:   Tue Aug 6 23:36:34 2024 +0200

    minifont: Use FAST filter for fill pattern
    
    Unfortunately doesn't make too much of a different to NEAREST, but every
    bit helps.
    
    https://gitlab.gnome.org/GNOME/vte/-/issues/2799
    (cherry picked from commit dddf82c7c3fc9e684d6923a5aac1775f8ab324e1)

 src/minifont.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f0e4dc41398acef086ef6ff09cd83349f2a1a0da
Author: Christian Persch <chpe@src.gnome.org>
Date:   Tue Aug 6 23:36:34 2024 +0200

    minifont: Simplify drawing bitmap pattern
    
    No need to push/pop a group. Slightly improves performance when
    filling the whole screen with one of the fill pattern.
    
    https://gitlab.gnome.org/GNOME/vte/-/issues/2799
    (cherry picked from commit 9e505743cadbb9f7be2485f9fde489ab5a5a7938)

 src/minifont.cc | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit fb3bc20e72275ee8004f6400a8d4404bd6489a1e
Author: Christian Persch <chpe@src.gnome.org>
Date:   Tue Aug 6 10:17:48 2024 +0200

    build: Post release version bump

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 844ced5857d8426747fc4a3bc50d48970b6a32b8 (tag: 0.77.91)