summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2009-03-02 20:14:12 +0000
committerChristian Persch <chpe@src.gnome.org>2009-03-02 20:14:12 +0000
commitdf30bd81becd7ce6c499ab889443eed7b7806863 (patch)
tree17c91ae8e8ee26e6cdf8e231abae1b71ae71efed
parent03aeb31b699fc253ccd9cd883328306eee8f2f1d (diff)
downloadvte-df30bd81becd7ce6c499ab889443eed7b7806863.tar.gz
Prepare 0.19.5
svn path=/trunk/; revision=2377
-rw-r--r--ChangeLog5
-rw-r--r--NEWS18
-rw-r--r--configure.in4
3 files changed, 25 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 148be030..1446c791 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2009-03-02 Christian Persch <chpe@gnome.org>
+ * NEWS:
+ * configure.in: Updated for version 0.19.5.
+
+2009-03-02 Christian Persch <chpe@gnome.org>
+
* src/vteaccess.c: (vte_terminal_accessible_set_size),
(vte_terminal_accessible_ref_accessible_at_point):
* src/vteapp.c: (button_pressed): Correct use of padding returned
diff --git a/NEWS b/NEWS
index 705b4afc..1c7b7e8a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+0.19.5
+=======
+- Support using a real bold font instead of pseudo-bolding
+- Respond to fontconfig configuration changes
+- Bugs fixed in this release:
+ Bug 54926 – Should try bold version of font before pseudo-bolding
+ Bug 570208 – vte fails to build outside source tree
+ Bug 548272 – Fix output of CSI 13,14, 18-21
+ Bug 565688 – [gnome-pty-helper] using openpty in a bad way
+ Bug 566795 – VTE fails to build in trunk
+ Bug 524170 – Support initc terminfo capability and change-cursor-color
+ Bug 566730 – vte_terminal_set_color_cursor() calls invalidate_all but
+ it doesn't have to
+ Bug 565679 – alloca is discouraged
+ Bug 565675 – typo in configure.in cause ncurses checking fail
+ Bug 565663 – compile failure because use static function in another .h
+ file
+
0.19.4
======
- Support for correct rendering of combining characters
diff --git a/configure.in b/configure.in
index aad74774..2dc04f70 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
m4_define([vte_version_major],[0])
m4_define([vte_version_minor],[19])
-m4_define([vte_version_micro],[4])
+m4_define([vte_version_micro],[5])
m4_define([vte_version],[vte_version_major.vte_version_minor.vte_version_micro])
AC_PREREQ(2.56)
@@ -20,7 +20,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=3
+LTVERSION_REVISION=4
# 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=13