]> granicus.if.org Git - libass/commitdiff
Update version and changelog 0.12.0
authorGrigori Goronzy <greg@chown.ath.cx>
Wed, 22 Oct 2014 22:37:33 +0000 (00:37 +0200)
committerGrigori Goronzy <greg@chown.ath.cx>
Wed, 22 Oct 2014 22:37:33 +0000 (00:37 +0200)
Changelog
configure.ac
libass/Makefile.am
libass/ass.h

index bd6e0ba4c4b7d80e2325b3eb99ad838c155690a0..f27680d408ae152e5dff95623bf35cba1e900fa2 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,18 @@
+libass (0.12.0)
+ * Implement fast quad-tree rasterizer in C and SSE2/AVX2 assembly
+ * Make \be animatable
+ * Add BorderStyle=4 (GH #105)
+ * Add selective style override functionality
+   * ass_set_selective_style_override()
+   * ass_set_selective_style_override_enabled()
+ * Support for assembly on DragonFly BSD
+ * Bugfixes
+   * Various parser fixes
+   * Fix premature parser exit on }{ in drawing mode (GH #75)
+   * Reset clipping mode on every rectangle clip
+   * Improved error handling for FriBidi and FreeType (GH #131)
+   * Fix bitmap combining cache
+
 libass (0.11.2)
  * Improve yasm version check
  * Fix \fscx0 crashes
index 3d10ef9c1df74fc67dbb2b9260ab015490c6ad92..0a216ddb7a38a16e0233309de2b62f674ed50e21 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.11.2)
+AC_INIT(libass, 0.12.0)
 AM_INIT_AUTOMAKE
 AC_CONFIG_MACRO_DIR([m4])
 # Disable C++/Fortran checks
index bc5345b8f8ef84f0e0627792fe3878162fd4eb58..599c2816a25c5fce10bf5c5497ca3f4c79694fec 100644 (file)
@@ -2,9 +2,9 @@ AM_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-sign-compare -Wno-unused-parameter \
             -Werror-implicit-function-declaration -Wstrict-prototypes        \
             -Wpointer-arith -Wredundant-decls
 
-LIBASS_LT_CURRENT = 5
+LIBASS_LT_CURRENT = 6
 LIBASS_LT_REVISION = 0
-LIBASS_LT_AGE = 0
+LIBASS_LT_AGE = 1
 
 yasm_verbose = $(yasm_verbose_$(V))
 yasm_verbose_ = $(yasm_verbose_$(AM_DEFAULT_VERBOSITY))
index c8c6452324ab30aa2da23d6c1ad728f5a0d38b58..6b14e995b67e7cf3acdc0e97a8b41df4b7c42503 100644 (file)
@@ -23,7 +23,7 @@
 #include <stdarg.h>
 #include "ass_types.h"
 
-#define LIBASS_VERSION 0x01103001
+#define LIBASS_VERSION 0x01200000
 
 /*
  * A linked list of images produced by an ass renderer.