summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-05-07 21:32:44 +0200
committerwm4 <wm4@nowhere>2015-05-07 21:32:44 +0200
commitb732598bcbefa6949986fc328b2238589eaf63b6 (patch)
treeb3e687f217d0a080c70bb04cbb560fe3bfe5872b
parent0e2a9e0b356e4acee3962e15756918fd314ece3a (diff)
downloadlibass-0.12.2.tar.bz2
libass-0.12.2.tar.xz
Release 0.12.20.12.2
-rw-r--r--Changelog10
-rw-r--r--README.md2
-rw-r--r--configure.ac2
-rw-r--r--libass/Makefile.am2
-rw-r--r--libass/ass.h2
5 files changed, 14 insertions, 4 deletions
diff --git a/Changelog b/Changelog
index ec68d5f..cac2e6a 100644
--- 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.
diff --git a/README.md b/README.md
index c995fd4..65a9cfc 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.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).
diff --git a/configure.ac b/configure.ac
index 102e143..4b024ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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
diff --git a/libass/Makefile.am b/libass/Makefile.am
index 203e9cf..31dd9aa 100644
--- a/libass/Makefile.am
+++ b/libass/Makefile.am
@@ -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))
diff --git a/libass/ass.h b/libass/ass.h
index 80f9247..029b96c 100644
--- a/libass/ass.h
+++ b/libass/ass.h
@@ -23,7 +23,7 @@
#include <stdarg.h>
#include "ass_types.h"
-#define LIBASS_VERSION 0x01201001
+#define LIBASS_VERSION 0x01202000
#ifdef __cplusplus
extern "C" {