diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-10-26 20:15:21 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-10-26 20:15:21 -0400 |
commit | 16db4039b0ea75454c6d51c1a685f3c9d16ffb11 (patch) | |
tree | 591d2405d3c080ff5532a5047ab78733d9be8194 | |
parent | a91d1adf8cbc3bf9755d1c211f490366ac47782c (diff) |
Released 0.23.10.23.1
-rw-r--r-- | NEWS | 25 | ||||
-rw-r--r-- | configure.in | 10 |
2 files changed, 30 insertions, 5 deletions
@@ -1,3 +1,28 @@ +0.23.1 +======= +- Various crash and bug fixes +- Rework mouse selection to be more robust. In particular, PRIMARY selection + now only changes when mouse button is released, not upon every motion when + selecting. +- Interpret and document negative number of scrollback lines as infinite +- We now chain unhandled motion-notify events up such that the parent widget + can give them a shot. +- Bugs fixed in this release: + Bug 597604 - assertion failed: (_vte_ring_contains (ring, position)) + Bug 598124 - The selection does not only change when the mousebutton is released + Bug 598090 - LMB Mouse up event not registered when opining context popup menu + Bug 587463 - "select all"+copy from gnome-terminal includes lines no longer in scrollback + Bug 585370 - Incomplete disabling of python + Bug 597242 - libvte color and cursor glitches + Bug 591648 - Don't clear the screen when switching to the alternate screen + Bug 595445 - Motion notify events are not propagated to parent widget + Bug 569184 - vte generates unnecessary ioctl(I_FIND) kernel warnings + Bug 599444 - Scrollback index type mess + Bug 598814 - text.getText(0, -1) triggers assertion in vteaccess.c + Bug 596739 - Python bindings leak memory + Bug 597165 - void return in vte.c + Bug 587894 - the environment passing with python does no longer work + 0.22.2 ======= - Fix crash introduced in previous release diff --git a/configure.in b/configure.in index 9c29ff9..3b6aa30 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ m4_define([vte_version_major],[0]) -m4_define([vte_version_minor],[22]) -m4_define([vte_version_micro],[2]) +m4_define([vte_version_minor],[23]) +m4_define([vte_version_micro],[1]) m4_define([vte_version],[vte_version_major.vte_version_minor.vte_version_micro]) AC_PREREQ([2.59]) @@ -22,13 +22,13 @@ AM_MAINTAINER_MODE([enable]) # Libtool shared library versioning stuffs. # REVISION gets incremented whenever the source code changes without adding # an API or ABI change. -LTVERSION_REVISION=2 +LTVERSION_REVISION=0 # CURRENT must be incremented when an API or ABI change (addition or removal) # is made, and REVISION must be reset to 0 when this happens. -LTVERSION_CURRENT=18 +LTVERSION_CURRENT=19 # AGE must be incremented when an API or ABI addition is made, and REVISION # must be reset to 0 when this happens. -LTVERSION_AGE=9 +LTVERSION_AGE=10 LIBVTE_LTVERSION=${LTVERSION_CURRENT}:${LTVERSION_REVISION}:${LTVERSION_AGE} AC_SUBST([LIBVTE_LTVERSION]) |