summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--NEWS31
-rw-r--r--configure.in2
-rw-r--r--src/Makefile.am4
4 files changed, 44 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 19552934..d267e29d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2006-04-23 Behdad Esfahbod <behdad@gnome.org>
+ Released vte-0.13.0.
+
+ * NEWS: Updated.
+
+ * configure.in: Bumped version to 0.13.0.
+
+ * src/Makefile.am: Bumped libtool version to 9:0:0.
+
+2006-04-23 Behdad Esfahbod <behdad@gnome.org>
+
Bug 339448 – selection doesn't respect hard newlines
* src/vte.c (vte_terminal_get_text_range_maybe_wrapped): Add newline
diff --git a/NEWS b/NEWS
index 12ae1d7a..9646017a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,34 @@
+0.13.0
+ Removed obsolete #ifde GTK_CHECK_VERSION(2,2,0) checks.
+ Bug 339448 – selection doesn't respect hard newlines
+ Bug 148720 – Word selection erroneously captures text from next line
+ Bug 126376 – Uncoinditional definition of _XOPEN_SOURCE breaks build
+ on NetBSD
+ Bug 97719 – Selection: double/triple click doesn't cross line boundaries
+ Bug 160782 – Vte isn't multi-screen safe
+ Bug 330441 – Remove libzvt support
+ Bug 328850 – Crash when pasting selection
+ Bug 160134 – mouse events occurring past column 95 are not passed
+ through to terminal application
+ New public function vte_terminal_feed_child_binary
+ Bug 135230 – Feature request to attach VTE to existing pty
+ New public function vte_terminal_set_pty
+ Bug 337442 – [patch] Reduce .plt section
+ We use a regexp to limit exported symbols now.
+ Bug 142247 – use of uninitialized value
+ Bug 149633 – gnome-terminal messes up boxdrawing chars aligment
+ Bug 144456 – UK pound currency symbol rendered incorrectly
+ Bug 307403 – xticker doublefree
+ Bug 337877 – Patch to use po/LINGUAS
+ Bug 337552 – Insufficient version requirement for gtk+
+ Bug 168251 – add support for 256 colors terminals
+ Bug 120276 – Wishlist: Support Rectangular Selection
+ Bug 336117 – [patch] Use g_slice API
+ Bug 336128 – vim scrolling issues - emulation errors
+ Bug 334385 – Use intltool
+ Bug 104841 – scrolling doesn't work inside "screen" windows
+ Bug 333768 – vteapp debug stuff should be conditional
+
0.12.0 - Released with no code changes.
0.11.21 - Revert change introduced in 0.11.19 that made vte very unresponsive
diff --git a/configure.in b/configure.in
index c1122b8a..780ddcb3 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
AC_PREREQ(2.56)
-AC_INIT(vte, [0.12.0],
+AC_INIT(vte, [0.13.0],
[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 5df5c895..5c4fae59 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -100,10 +100,10 @@ libvte_la_SOURCES = \
VERSION_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.
-VERSION_CURRENT=8
+VERSION_CURRENT=9
# AGE must be incremented when an API or ABI addition is made, and REVISION
# must be reset to 0 when this happens.
-VERSION_AGE=4
+VERSION_AGE=0
libvte_la_LDFLAGS = @LDFLAGS@ \
-version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) \
-export-symbols-regex "^vte_terminal_.*|^_vte_pty_.*|^vte_reaper_.*"