diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-02-13 05:02:16 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-02-13 05:02:16 +0000 |
commit | 05c6997a2d188fdfba05f074ae473913db8ec50c (patch) | |
tree | ac35e9cfa75bf1c766b885d6e5e9dfd75a0110bc | |
parent | d00f6be542887348cae7c1c92b538f39655fccd4 (diff) |
Released vte-0.15.3.vte_0_15_3
2007-02-12 Behdad Esfahbod <behdad@gnome.org>
Released vte-0.15.3.
* NEWS: Updated.
* configure.in: Bumped version to 0.15.3.
* src/Makefile.am: Bumped libtool version to 11:0:2.
svn path=/trunk/; revision=1677
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | NEWS | 65 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/Makefile.am | 6 |
4 files changed, 79 insertions, 4 deletions
@@ -1,3 +1,13 @@ +2007-02-12 Behdad Esfahbod <behdad@gnome.org> + + Released vte-0.15.3. + + * NEWS: Updated. + + * configure.in: Bumped version to 0.15.3. + + * src/Makefile.am: Bumped libtool version to 11:0:2. + 2007-02-12 Chris Wilson <chris@chris-wilson.co.uk> * src/vte.c: (vte_terminal_extend_selection), @@ -1,3 +1,68 @@ +0.15.3 +====== +This is another release including awesome work of one Chris Wilson. Lots of +bugs with the previous release are fixed in this one and some new ones are +introduced. Doh! + +- Faster control sequence matching, using gperf-generated tables now +- Faster regex matching +- Improved expose handling +- Improved control sequence matching +- Various optimizations +- Various cleanups +- Bugs fixed in this release: + Bug 407091 – vte_terminal_fork_command() env argument changed semantic + in 0.15.2 + Original patch by Michael Vogt. + Bug 323393 – Hyper-sensitive selection + Bug 406763 – Selecting double-wide characters + Bug 363597 – Scrollback in profile dialog doesn't work + Bug 345344 – Pattern matching is inefficient + Bug 324246 – Performance degredation with large numbers of highlighted + addresses/URLs + Bug 86119 – "select all" feature + Original patch by Simone Gotti. + Bug 342059 – ASCII escape sequences don't work as expected + Patch by Mariano Suárez-Alvarez. + Bug 404757 – URL matching doesn't work with PCRE + Bug 403028 – decset mode 12 = blinking cursor + cf Bug 342338 – suffers from memory fragmentation + Bug 106618 – CJK 'fixed width' font and 's p a c e d o u t' issue + cf Bug 83285 – Treacle-slow scrolling in gnome-terminal on + unaccelerated X server + Bug 322241 – Please switch to pkg-config to check for freetype + Bug 322240 – Usage of pkg-config privates header + cf Bug 403275 – crash in Terminal: I was typing reset on th... + Bug 403159 – XftDrawSetClipRectangles() silently fails on ppc->i386 + Bug 382245 – __PyGtk_API multiply defined in python module + Bug 155687 – Scroll region \E[NN;MMr should set cursor to home + Bug 147784 – cursor unvisible under mouse highlight + Bug 368894 – crash in Terminal: I started gnome-terminal... + Bug 402329 – Rendering problem with underlines and cursor + Bug 336105 – gnome-terminal crashes when termcap not found + Bug 401215 – Multi-pass renderering + Bug 157267 – _vte_terminal_fudge_pango_colors() breaks Japanese input + style + Patch by ynakai@redhat.com. + Bug 400834 – Use a global display/process timeout + Bug 401082 – double-draw issue + Bug 318307 – Cursor colour changes to foreground when unfocused + Bug 317449 – The cursor disappears when clicking on windows above + gnome-terminal + Bug 400759 – update problem with vte trunk + Bug 400671 – crash in Terminal: detaching of tabs + Bug 399137 – UTF-8 problem in VteAccess + Bug 400493 – Mouse selection seriously broken + Bug 400438 – _vte_invalidate_all triggered on GDK_VISIBILITY_UNOBSCURED + cf Bug 400072 – Handling of ; in control sequences + cf Bug 399617 – Avoid memory allocations during an expose event. + Bug 147495 – screen flicker when opening new terminal windows + Bug 334755 – Incomplete information from vte_terminal_get_font + Bug 400184 – _vte_pty_open declaration mismatch - breaks on Solaris + Bug 335269 – Change the way vte handles PangoFontDescription behind + vte_terminal_set_font + Bug 123591 – vte_terminal_fork_command succeeds even when it does not + 0.15.2 ====== This is a very exciting release. Most of the changes are made by Chris Wilson diff --git a/configure.in b/configure.in index 833e4f7..644578f 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ AC_PREREQ(2.56) -AC_INIT(vte, [0.15.2], +AC_INIT(vte, [0.15.3], [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 137b4bc..535eb24 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -118,13 +118,13 @@ endif # Libtool shared library versioning stuffs. # REVISION gets incremented whenever the source code changes without adding # an API or ABI change. -VERSION_REVISION=9 +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=10 +VERSION_CURRENT=11 # AGE must be incremented when an API or ABI addition is made, and REVISION # must be reset to 0 when this happens. -VERSION_AGE=1 +VERSION_AGE=2 libvte_la_LDFLAGS = $(LDFLAGS) \ -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) \ -export-symbols-regex "^vte_terminal_.*|^_vte_pty_.*|^vte_reaper_.*|_vte_debug_.*" \ |