summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-10-26 21:16:43 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-10-26 21:24:52 -0400
commit16275c6829b1e8755958545547f03d5b152958e7 (patch)
tree219d8bc4a0d5a7ac692574d42c6082a31cbfab24
parent9310dfee0b6e74e891132396a00f2c74f12e1ddb (diff)
Release 0.22.30.22.3
-rw-r--r--NEWS22
-rw-r--r--configure.in4
2 files changed, 24 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 0805916..0384bae 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,25 @@
+0.22.3
+=======
+- 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
+- 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 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..81f478b 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_micro],[3])
m4_define([vte_version],[vte_version_major.vte_version_minor.vte_version_micro])
AC_PREREQ([2.59])
@@ -22,7 +22,7 @@ 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=3
# 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