summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-01-23 00:54:01 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-01-23 00:54:01 +0000
commit5819378701e0fb85ff2f5482216e10db91a655ca (patch)
treed72216f84954d411f1a19fb96224c85a7158f60d
parentd3cae283a93c3a7df7f611ad6a8f50991943173d (diff)
downloadvte-5819378701e0fb85ff2f5482216e10db91a655ca.tar.gz
Released vte-0.15.2.vte_0_15_2
2007-01-22 Behdad Esfahbod <behdad@gnome.org> Released vte-0.15.2. * NEWS: Updated. * configure.in: Bumped version to 0.15.2. * src/Makefile.am: Bumped libtool version to 10:9:1. svn path=/trunk/; revision=1505
-rw-r--r--ChangeLog10
-rw-r--r--NEWS55
-rw-r--r--configure.in2
-rw-r--r--src/Makefile.am2
4 files changed, 67 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 176b8b00..8061a1a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2007-01-22 Behdad Esfahbod <behdad@gnome.org>
+
+ Released vte-0.15.2.
+
+ * NEWS: Updated.
+
+ * configure.in: Bumped version to 0.15.2.
+
+ * src/Makefile.am: Bumped libtool version to 10:9:1.
+
2007-01-22 Chris Wilson <chris@chris-wilson.co.uk>
Bug 399137 - continuation.
diff --git a/NEWS b/NEWS
index 5324ed17..44380b53 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,59 @@
0.15.1
+======
+This is a very exciting release. Most of the changes are made by Chris Wilson
+who just got access to the vte repository. On his first day he committed more
+than 20 large patches, cleaning various parts of the code base and optimizing
+too! As a result of huge changes in this release, some regressions, specially
+on less common systems/architectures is expected. Please file bugs.
+
+Highlights of improvements in this release:
+- Moving around in vim and mc is a lot faster now, thanks to much
+ smaller areas that will be redrawn with this release.
+- Mouse wheel is usable in mc now, since we don't generate release
+ events for scroll wheel events anymore.
+- Faster. One of the internal timers was completely removed, and
+ lots of unnecessary work is not done anymore. Particularly when
+ the widget is not visible.
+- Switched to using g_spawn_async to fork the child process, so we
+ can now enjoy the error checking implemented in that functions.
+ Failed forks now return an error message.
+- Accessibility improvements.
+- New environment variable VTE_BACKEND, to choose which rendering
+ backend to use. The old VTE_USE_* env vars are deprecated and
+ not functional anymore.
+- Bugs fixed in this release:
+ Bug 399137 - continuation.
+ Bug 132316 – terminal widget's context menu posting isn't exposed as an AtkAction
+ Original patch by <padraig.obriain@sun.com>
+ Bug 156161 – AccessibleText_getTextAtOffset returns wrong values in gnome-terminal
+ Patch by <padraig.obriain@sun.com>
+ Bug 399137 – UTF-8 problem in VteAccess
+ Bug 123591 – vte_terminal_fork_command succeeds even when it does not
+ Bug 345514 – -no-undefined doesn't work with latest libtool
+ Bug 162003 – vte configure.in X checking can fail
+ – though this may cause other regressions!
+ Bug 314669 – Please specialize AC_PATH_XTRA
+ Bug 389538 – crash in Terminal: nothing
+ Bug 161479 – Scroll wheel generates Release events
+ Bug 398602 – Build Failure
+ Bug 397724 – Orca incorrect echo's certain input in gnome-terminal
+ when key echo is set to off (on Ubuntu Feisty).
+ Bug 398244 – Gnome-terminal opens a huge sized window
+ Bug 398243 – Crash
+ Bug 398116 – lags behind when widget not visible
+ Bug 398083 – background not painted correctly when starting up
+ Bug 397414 - port vteapp to GOption
+ Bug 395373 - Allow the user to specify backend priorities.
+ Bug 346554 – Fancy prompt triggers update problem
+ Bug 397439 – Performance enhancement patch series
+ Bug 161342 – Vte slow with mc and vim
+ Bug 387171 – vte fails to install on FreeBSD due to missing header
+ Patch from Roy Marples
+ Bug 396831 – Unable to compile without X
+ Patch from Chris Wilson
+ Bug 394890 – Segfault when running vte or gnome-terminal
+
+0.15.1
Bug 354061 – Excessive use of strlen by _vte_termcap_create
Patch from Ryan Lortie
Bug 387475 – Gtk-Warning spew in gnome-terminal
diff --git a/configure.in b/configure.in
index 63191053..95c41354 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
AC_PREREQ(2.56)
-AC_INIT(vte, [0.15.1],
+AC_INIT(vte, [0.15.2],
[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 0231ed0d..bbc21003 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -107,7 +107,7 @@ endif
# Libtool shared library versioning stuffs.
# REVISION gets incremented whenever the source code changes without adding
# an API or ABI change.
-VERSION_REVISION=8
+VERSION_REVISION=9
# 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=10