diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-04-27 01:00:22 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-04-27 01:00:22 +0000 |
commit | e8a9a5efed263b55dd3a1b6b08f4488d602af268 (patch) | |
tree | 81309ac78e1a31fc3f0217485f5c4508bf193685 | |
parent | f29228310f41aaa42a554a9504bdee753e31a07d (diff) |
Released vte-0.12.1.vte_0_12_1
2006-04-26 Behdad Esfahbod <behdad@gnome.org>
Released vte-0.12.1.
* NEWS: Updated.
* configure.in: Bumped version to 0.12.1.
* src/Makefile.am: Bumped libtool version to 9:0:5.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
4 files changed, 26 insertions, 3 deletions
@@ -1,3 +1,12 @@ +2006-04-26 Behdad Esfahbod <behdad@gnome.org> + + Released vte-0.12.1. + + * NEWS: Updated. + + * configure.in: Bumped version to 0.12.1. + * src/Makefile.am: Bumped libtool version to 9:0:5. + 2006-04-21 Behdad Esfahbod <behdad@gnome.org> Bug 328850 – Crash when pasting selection @@ -1,3 +1,17 @@ +0.12.1 + 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 144456 – UK pound currency symbol rendered incorrectly + Bug 337552 – Insufficient version requirement for gtk+ + 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 be6b7e8..870b75c 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.12.1], [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 771282a..39bbeed 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=5 libvte_la_LDFLAGS = @LDFLAGS@ -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) libvte_la_LIBADD = @LIBS@ @VTE_LIBS@ @X_LIBS@ |