diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2008-08-05 10:30:38 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2008-08-05 10:30:38 +0000 |
commit | a6b2d703da2bbcfdc52dcdbf4494a9dc737cb47e (patch) | |
tree | c245af76cc5e3c065bdac53bf339316a69e77e9e | |
parent | 795f95181b797396950abe1e9f466313d9edd389 (diff) |
Released vte-0.17.1.vte_0_17_1
2008-08-05 Behdad Esfahbod <behdad@gnome.org>
Released vte-0.17.1.
* NEWS: Updated.
* configure.in: Bumped version to 0.17.1.
Bumped libtool version to 12:0:3.
svn path=/trunk/; revision=2080
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 27 | ||||
-rw-r--r-- | configure.in | 10 |
3 files changed, 41 insertions, 5 deletions
@@ -1,5 +1,14 @@ 2008-08-05 Behdad Esfahbod <behdad@gnome.org> + Released vte-0.17.1. + + * NEWS: Updated. + + * configure.in: Bumped version to 0.17.1. + Bumped libtool version to 12:0:3. + +2008-08-05 Behdad Esfahbod <behdad@gnome.org> + Bug 546366 – hard to select last tab char on a line * src/vte.c (vte_terminal_extend_selection): @@ -1,3 +1,30 @@ +0.17.1 +====== +- New API to: + * Make the cursor blinking follow the gtk setting by default, with a + possible override. + * Set named cursors on matches. + * Do GRegex matching, to be used alternatively to the old vteregex matching. + * Add set-scroll-adjustments signal, needed to allow adding a VteTerminal + into a GtkScrolledWindow. + * Add version check macro. +- Misc bug fixes. +- Bugs fixed in this release: + Bug 546366 – hard to select last tab char on a line + Bug 545924 – tab characters not handled correctly after ncurses clear + Patch from Patryk Zawadzki + Bug 542795 – VTE_CJK_WIDTH don't work + Bug 399744 – Hide more font-aa implementation details + Bug 510903 – use gtk-cursor-blink setting + Bug 539130 – building g-t fails due to GtkType etc. deprecation + Bug 540182 – crash in geany with vte trunk + Bug 535552 – vte_terminal_set_allow_bold doesn't queue redraw + Bug 535469 – support named cursors on matches + Bug 418918 – Switch to GRegex + Bug 535467 – implement set-scroll-adjustments signal + Bug 535468 – need version check macros + Bug 515972 – Bold black is black in vte's default palette + 0.16.14 ======= - Bugs fixed in this release: diff --git a/configure.in b/configure.in index 3f05db9..f8011f4 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ m4_define([vte_version_major],[0]) -m4_define([vte_version_minor],[16]) -m4_define([vte_version_micro],[15]) +m4_define([vte_version_minor],[17]) +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=18 +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=11 +LTVERSION_CURRENT=12 # AGE must be incremented when an API or ABI addition is made, and REVISION # must be reset to 0 when this happens. -LTVERSION_AGE=2 +LTVERSION_AGE=3 LIBVTE_LTVERSION=${LTVERSION_CURRENT}:${LTVERSION_REVISION}:${LTVERSION_AGE} AC_SUBST([LIBVTE_LTVERSION]) |