]> granicus.if.org Git - libass/commitdiff
Release 0.12.2 0.12.2
authorwm4 <wm4@nowhere>
Thu, 7 May 2015 19:32:44 +0000 (21:32 +0200)
committerwm4 <wm4@nowhere>
Thu, 7 May 2015 19:32:44 +0000 (21:32 +0200)
Changelog
README.md
configure.ac
libass/Makefile.am
libass/ass.h

index ec68d5f416a3983340636c46d4767fe60a8cb78e..cac2e6a1710821d8ed8d40d3d4fd6c156e21673b 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,13 @@
+libass (0.12.2)
+ * Add extern "C" guards to the public headers for C++ compatibility
+ * Improvements to style override API and implementation
+ * Bugfixes
+   * Fix some rasterizer bugs of unknown severity
+   * Fix a broken memset() of unknown severity
+   * Make timestamp parsing more lenient, which makes libass accept invalid
+     files accepted by most other ASS parsers
+   * Increase compatibility with broken ASS drawings accepted by VSFilter
+
 libass (0.12.1)
  * Make ASS drawings with an extremely high number of control points work
    This change increases compatibility with VSFilter.
index c995fd4ad2f326283b2c3e1fe8d2e6411cc17a88..65a9cfcd7b04ca1f502046745d571cc79b959533 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.12.1 (released 2015-01-07). This release contains bugfixes and compatibility fixes. 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.12.2 (released 2015-05-07). This release contains bugfixes and compatibility fixes. 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 102e1436908872ad652ba132e25b12c3cfda1c6a..4b024ceacd375245de66f93790f29d81a7108e0c 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.12.1)
+AC_INIT(libass, 0.12.2)
 AM_INIT_AUTOMAKE
 AC_CONFIG_MACRO_DIR([m4])
 # Disable C++/Fortran checks
index 203e9cfdc9e5ae30c7e64c83efc50192ebd42531..31dd9aa4ac057c15bab32d27e5ba01956d48f10c 100644 (file)
@@ -3,7 +3,7 @@ AM_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-sign-compare -Wno-unused-parameter \
             -Wpointer-arith -Wredundant-decls -D_GNU_SOURCE
 
 LIBASS_LT_CURRENT = 6
-LIBASS_LT_REVISION = 0
+LIBASS_LT_REVISION = 1
 LIBASS_LT_AGE = 1
 
 yasm_verbose = $(yasm_verbose_$(V))
index 80f9247cee0f28c6e828005174197ea1a7e96fba..029b96c86753473cad39f9ff6d7e4c26593143f4 100644 (file)
@@ -23,7 +23,7 @@
 #include <stdarg.h>
 #include "ass_types.h"
 
-#define LIBASS_VERSION 0x01201001
+#define LIBASS_VERSION 0x01202000
 
 #ifdef __cplusplus
 extern "C" {