From 0de70b37524b9e43a4bffb13d62de3f6e563a92b Mon Sep 17 00:00:00 2001 From: Oleg Oshmyan Date: Tue, 1 Dec 2015 19:33:46 +0200 Subject: Release 0.13.1 --- Changelog | 21 +++++++++++++++++++++ README.md | 2 +- configure.ac | 2 +- libass/ass.h | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/Changelog b/Changelog index 71e6328..cdef2ad 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,24 @@ +libass (0.13.1) + * Much faster duplicate event check in ass_process_chunk. This can + bring a large speedup for embedded subtitles with lots of events. + To make this possible, it is now forbidden to combine calls to + ass_process_chunk with any other method of manipulating the event + list, namely, manual manipulation and calls to ass_process_data, + ass_read_memory and ass_read_file. + * Interpret negative timestamp components as actual negative numbers. + This change increases compatibility with VSFilter. + * Font matching changes for VSFilter compatibility + * Look up fonts that contain PostScript outlines by their PostScript + name instead of their full names. Family names continue to be used + for all fonts. + * Keep spaces in font names + * Drop support for Fontconfig < 2.10.92 to ensure correct font matching + * Bug fixes + * Fix building the assembler code for the x32 ABI (GH #200) + * Fix static linking against libass through pkg-config when libass + uses libiconv + * Fix some small memory leaks, potential crashes and bad data uses + libass (0.13.0) * Add native font selection backends for OSX (CoreText) and Windows (DirectWrite). You can now run libass without fontconfig on these diff --git a/README.md b/README.md index d74b980..a30b3e7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alph Get it ====== -See [GitHub releases](https://github.com/libass/libass/releases) for the latest release 0.13.0 (released 2015-10-03). This release enables fontconfig-free operation on Windows and OS X, as well as performance improvements to gaussian blur. See the [changelog](https://github.com/libass/libass/blob/master/Changelog) for a detailed list of changes. +See [GitHub releases](https://github.com/libass/libass/releases) for the latest release 0.13.1 (released 2015-12-01). This release brings performance and font matching improvements. See the [changelog](https://github.com/libass/libass/blob/master/Changelog) for a detailed list of changes. Source code is available from our [GitHub repository](https://github.com/libass/libass). diff --git a/configure.ac b/configure.ac index cb4e71c..20e9850 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(libass, 0.13.0) +AC_INIT(libass, 0.13.1) AM_INIT_AUTOMAKE AC_CONFIG_MACRO_DIR([m4]) # Disable Fortran checks diff --git a/libass/ass.h b/libass/ass.h index cbcc9f0..d3bf606 100644 --- a/libass/ass.h +++ b/libass/ass.h @@ -24,7 +24,7 @@ #include #include "ass_types.h" -#define LIBASS_VERSION 0x01300001 +#define LIBASS_VERSION 0x01301000 #ifdef __cplusplus extern "C" { -- cgit v1.2.3