summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Oshmyan <chortos@inbox.lv>2015-12-01 19:33:46 +0200
committerOleg Oshmyan <chortos@inbox.lv>2015-12-01 19:33:46 +0200
commit0de70b37524b9e43a4bffb13d62de3f6e563a92b (patch)
tree388886330cfd9a277b692a3a9d65dcb4e5be4d99
parent04b87ca2e6770b1b11e8e5503b43065ac9043390 (diff)
downloadlibass-0de70b37524b9e43a4bffb13d62de3f6e563a92b.tar.bz2
libass-0de70b37524b9e43a4bffb13d62de3f6e563a92b.tar.xz
Release 0.13.10.13.1
-rw-r--r--Changelog21
-rw-r--r--README.md2
-rw-r--r--configure.ac2
-rw-r--r--libass/ass.h2
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&nbsp;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 <stdarg.h>
#include "ass_types.h"
-#define LIBASS_VERSION 0x01300001
+#define LIBASS_VERSION 0x01301000
#ifdef __cplusplus
extern "C" {