diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-04-09 17:50:38 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-04-09 17:50:38 +0000 |
commit | e5acf7b41bea4c6b3c86c01e2b86696ae92b33cb (patch) | |
tree | a7df825a190cf76cd0771dd6a3f00bdee745152a | |
parent | 19894afc3a1b5cefe4d8c3c8395b352ead50c502 (diff) |
Released vte-0.16.1.vte_1_16_1
2007-03-12 Behdad Esfahbod <behdad@gnome.org>
Released vte-0.16.1.
* NEWS: Updated.
* configure.in: Bumped version to 0.16.1.
* src/Makefile.am: Bumped libtool version to 11:5:2.
svn path=/trunk/; revision=1871
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | NEWS | 32 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
4 files changed, 44 insertions, 2 deletions
@@ -1,3 +1,13 @@ +2007-03-12 Behdad Esfahbod <behdad@gnome.org> + + Released vte-0.16.1. + + * NEWS: Updated. + + * configure.in: Bumped version to 0.16.1. + + * src/Makefile.am: Bumped libtool version to 11:5:2. + 2007-04-06 Chris Wilson <chris@chris-wilson.co.uk> Bug 426870 – vte often passes NUL to functions requiring valid unichar @@ -1,3 +1,35 @@ +0.16.1 +====== +- Lots of bug fixes by Chris Wilson +- New feature: mouse scroll-wheel now feeds three arrow-up/down keys to the + terminal if in the "alternate" mode. The alternate mode is used by apps + like vim, less, emacs, screen, etc. This makes the scroll-wheel usable + in a state that it was of no use before. +- Bugs fixed in this release: + Bug 426870 – vte often passes NUL to functions requiring valid unichar + Bug 419644 – Links do not get highlighted anymore + Bug 404757 – URL matching doesn't work with PCRE + Bug 426541 – crash on IRM escape code + Bug 424184 – Make scroll wheel send Page Up/Down when it makes sense + Original patch by Shaun McCance and refined by Baris Cicek. + Bug 425767 – vte_terminal_set_color_highlight should test for + NULL before _vte_debug_print + Bug 422385 – vte appears at the top of the root window even when + packed at the bottom of it + Patch by Dodji Seketeli. + Bug 420935 – glyph can be cropped with not fitting in a cell + Bug 420067 – Does not handle expose events whilst processing + unseen incoming data + Bug 415381 – Improve performance of vte_terminal_insert_char() + Bug 418073 – Opacity ignored for vtexft + Bug 418910 – Asymmetric scrolling with mouse wheel + Bug 416634 – Rendering glitch as autowrapped chars are outside + invalidated bbox + Bug 416635 – Rendering glitch: double draw of line below exposed region + Bug 418588 – Invalid read when drawing preedit cursor + Bug 417652 – Scrolling bug exposed by nvi + Bug 417301 – Terminal widgets don't respond to DPI changes + 0.16.0 ====== - Fix some minor bugs. More regressions to be fixed later. diff --git a/configure.in b/configure.in index 80183d3..ae477f5 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ AC_PREREQ(2.56) -AC_INIT(vte, [0.16.0], +AC_INIT(vte, [0.16.1], [http://bugzilla.gnome.org/enter_bug.cgi?product=vte]) AC_CONFIG_SRCDIR([src/vte.c]) AM_INIT_AUTOMAKE(1.6) diff --git a/src/Makefile.am b/src/Makefile.am index 71017ff..59b967c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -118,7 +118,7 @@ endif # Libtool shared library versioning stuffs. # REVISION gets incremented whenever the source code changes without adding # an API or ABI change. -VERSION_REVISION=4 +VERSION_REVISION=5 # 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. VERSION_CURRENT=11 |