]> granicus.if.org Git - libass/commitdiff
Release 0.13.1 0.13.1
authorOleg Oshmyan <chortos@inbox.lv>
Tue, 1 Dec 2015 17:33:46 +0000 (19:33 +0200)
committerOleg Oshmyan <chortos@inbox.lv>
Tue, 1 Dec 2015 17:33:46 +0000 (19:33 +0200)
Changelog
README.md
configure.ac
libass/ass.h

index 71e6328407fb872a7523abe715b01b8129f7cd2c..cdef2add459c0c97ea00afb531b003a781c6db8d 100644 (file)
--- 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
index d74b9806f07f05fe6497922a282a81a0437d424f..a30b3e78ca650241d8072515f71da7d0d0beb0a1 100644 (file)
--- 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).
 
index cb4e71ca582b54f593cea01632ee13550f876d6b..20e98506bdd890c1280be63b64e6284cb17c405c 100644 (file)
@@ -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
index cbcc9f06e676f070964fb502d30cf71f8b3b5386..d3bf60697a2e46b97260b2b383857a7a8d781aad 100644 (file)
@@ -24,7 +24,7 @@
 #include <stdarg.h>
 #include "ass_types.h"
 
-#define LIBASS_VERSION 0x01300001
+#define LIBASS_VERSION 0x01301000
 
 #ifdef __cplusplus
 extern "C" {