summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-12-02 00:36:12 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-12-02 00:36:12 +0000
commit39f87a7d78ea8b3cfda9c3a1c83f3e0306a8f590 (patch)
tree81a4af98fa4fef49b187dc9deb403861ea87acd8
parentcf78263e0df29e916603b3128c5bf9e11dbeef21 (diff)
Released 0.19.1.vte_0_19_1
2008-12-01 Behdad Esfahbod <behdad@gnome.org> * NEWS: * configure.in: Released 0.19.1. svn path=/trunk/; revision=2281
-rw-r--r--ChangeLog6
-rw-r--r--NEWS59
-rw-r--r--configure.in6
3 files changed, 65 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index c8b7ee9..6cb2db2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-12-01 Behdad Esfahbod <behdad@gnome.org>
+ * NEWS:
+ * configure.in:
+ Released 0.19.1.
+
+2008-12-01 Behdad Esfahbod <behdad@gnome.org>
+
* doc/reference/Makefile.am:
* doc/reference/check-doc-syntax.sh:
* src/Makefile.am:
diff --git a/NEWS b/NEWS
index bd88b9e..c2cfb54 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,61 @@
0.19.0
======
-
- * New PangoCairo backend; all other backends were removed
- * Bugs fixed: [http://bugzilla.gnome.org/buglist.cgi?product=vte&bug_status=RESOLVED&resolution=FIXED&chfieldfrom=2008-09-22&chfieldto=2008-12-02&chfield=bug_status]
+- New, PangoCairo, rendering backend. This is functionally equivalent to the
+ previous default backend which was Xft. And just a tad bit faster.
+- All other backends are removed.
+- Configurable cursor shape (block, underline, I-beam).
+- Preliminary object properties added to VteTerminal.
+- Vte now depends on glib, pango, gtk+, and nothing else.
+- API that will be removed in vte 1.0 has been marked deprecated in this
+ release.
+- gnome-pty-helper does no longer depend on and link to glib
+- General code maintenance and cleanup.
+- Misc bug fixes.
+- Bugs fixed in this release:
+ Bug 562806 – crash in Terminal: Typing "cd " just after ...
+ Bug 562511 – scrollbar doesn't sit at the bottom
+ Bug 540951 – The gnome-pty-helper is spawn when its not needed
+ Bug 465036 – gnome-pty-helper locks /var/run/utmp
+ Bug 127870 – terminal garbled and needs 'reset' after cat'ing file
+ Bug 317236 – vte resynchrones too late on invalid UTF-8
+ Bug 107031 – device-control-string error
+ Bug 521420 – vte closes connection to child before all output is read
+ Patch from Thomas Leonard
+ Bug 514632 – Problem with cursor in emacs in gnome-terminal
+ Bug 459553 – gnome-terminal cannot shows circled digits with the
+ correct width on ja_JP.PCK
+ Patch from Takao Fujiwara
+ Bug 562385 – gnome-pty-helper goes to 100% cpu usage
+ Bug 562332 – cleanup font infos on exit?
+ Bug 562338 – don't need to connect to bunch of xft settings
+ Bug 488960 – gnome-terminal on Solaris 10 does not clean up utmpx on
+ exit (intermittent)
+ Bug 561366 – remove antialias setting for 1.0
+ Bug 562187 – Add make rules for calling gperf
+ Bug 416518 – Do something about uniwidths
+ Bug 500191 – Remove vteseq-table.h?
+ Bug 514457 – Use g_strv_length()
+ Bug 542561 – Doesn't build when disabling gnome-pty-helper
+ Bug 560766 – Deprecate and remove vte_terminal_get_using_xft()
+ Bug 536894 – Confusing use of "free" as variable-name in ring
+ functions
+ Bug 561713 – crash on font cache cleanup
+ Bug 560819 – Remove obsolete backends
+ Bug 560818 – pangocairo backend doesn't share font cache across
+ widgets
+ Bug 560977 – Cleaning up GTK Includes in vte
+ Bug 561185 – pangocairo backend sets antialias incorrectly
+ Bug 560817 – pagocairo backend doesn't have correct opacity support
+ Bug 560991 – Unsetting background doesn't work
+ Bug 395599 – Add pangocairo backend
+ Bug 557375 – >=vte-0.16.14 breaks highlighting on activity
+ Bug 556398 – maybe deprecate vte_terminal_get_char_ascent/descent
+ Bug 339819 – LibVTE terminals in GLADE
+ Bug 399364 – Implement properties
+ Bug 556328 – Document set-scroll-adjustment parameters
+ Bug 549835 – Feature Request: Configurable cursor appearance
+ Bug 509204 – child-exited signal does not provide exit code
+ Bug 539130 – building g-t fails due to GtkType etc. deprecation
0.17.4
======
diff --git a/configure.in b/configure.in
index c6714d6..cfde607 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],[0])
+m4_define([vte_version_micro],[1])
m4_define([vte_version],[vte_version_major.vte_version_minor.vte_version_micro])
AC_PREREQ(2.56)
@@ -15,13 +15,13 @@ AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2])
# Libtool shared library versioning stuffs.
# REVISION gets incremented whenever the source code changes without adding
# an API or ABI change.
-LTVERSION_REVISION=4
+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=13
# AGE must be incremented when an API or ABI addition is made, and REVISION
# must be reset to 0 when this happens.
-LTVERSION_AGE=3
+LTVERSION_AGE=4
LIBVTE_LTVERSION=${LTVERSION_CURRENT}:${LTVERSION_REVISION}:${LTVERSION_AGE}
AC_SUBST([LIBVTE_LTVERSION])