summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changelog11
-rw-r--r--configure.ac2
-rw-r--r--libass/ass.h2
3 files changed, 13 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index f27680d..ec68d5f 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,14 @@
+libass (0.12.1)
+ * Make ASS drawings with an extremely high number of control points work
+ This change increases compatibility with VSFilter.
+ * Bugfixes
+ * Fix a crash when using newer harfbuzz versions (GH #155)
+ * Load embedded memory fonts correctly
+ * Large shadow offsets rendered incorrectly (GH #142)
+ * Fix incorrect closing of last drawing contour
+ * Fix issues with undefined behavior in shifts
+ * Lots of of malloc() error checking
+
libass (0.12.0)
* Implement fast quad-tree rasterizer in C and SSE2/AVX2 assembly
* Make \be animatable
diff --git a/configure.ac b/configure.ac
index abcb474..102e143 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.12.0)
+AC_INIT(libass, 0.12.1)
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
# Disable C++/Fortran checks
diff --git a/libass/ass.h b/libass/ass.h
index 6b14e99..4673032 100644
--- a/libass/ass.h
+++ b/libass/ass.h
@@ -23,7 +23,7 @@
#include <stdarg.h>
#include "ass_types.h"
-#define LIBASS_VERSION 0x01200000
+#define LIBASS_VERSION 0x01201000
/*
* A linked list of images produced by an ass renderer.