vte r2080 - trunk



Author: behdad
Date: Tue Aug  5 10:30:38 2008
New Revision: 2080
URL: http://svn.gnome.org/viewvc/vte?rev=2080&view=rev

Log:
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.



Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.in

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Tue Aug  5 10:30:38 2008
@@ -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:

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Tue Aug  5 10:30:38 2008
@@ -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 @@
 # 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])



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]