]> granicus.if.org Git - libass/commitdiff
Release 0.13.7 0.13.7
authorGrigori Goronzy <greg@chown.ath.cx>
Sat, 3 Jun 2017 17:07:46 +0000 (19:07 +0200)
committerGrigori Goronzy <greg@chown.ath.cx>
Sat, 3 Jun 2017 17:07:46 +0000 (19:07 +0200)
Changelog
README.md
configure.ac
libass/Makefile.am
libass/ass.h

index 7c5bba66b7bcd0a52c0c2da3bb8412a299386d49..7b693a866340af5d96118eeb7d1643ba5316d797 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,4 @@
-libass (unreleased)
+libass (0.13.7)
  * Fix invalid memory accesses with BorderStyle=4
  * Fix change detection bug on frame resizes
  * Fix cache bugs with border size
@@ -9,6 +9,8 @@ libass (unreleased)
  * Treat negative PlayResX/PlayResY like VSFilter
  * Fixes to parsing of embedded fonts
  * Remove arbitrary bitmap limit (fixes issues with subtitle rendering at 4K)
+ * Allow using shadow offset to adjust size of background with BorderStyle=4
+ * Fix TrueType/OpenType font collection handling with the DirectWrite backend
 
 libass (0.13.6)
  * Bump ABI version to account for the new Justify field in ASS_Style
index b742cf848f93c51606572e64eee3b685e127b535..3381b6296eaf167e4c71f2cc9f6f782faaac8fe5 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.6 (released 2017-01-03). This is mainly a security and bug fix release. This release breaks ABI compatibility with prior releases. 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.7 (released 2017-06-03). This is mainly a security and bug fix release. 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 615dce11005f445f37037bb33e2c17cb78adbef8..c4808de0b034f9fbb6c710e43491239f4280e590 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.13.6)
+AC_INIT(libass, 0.13.7)
 AM_INIT_AUTOMAKE
 AC_CONFIG_MACRO_DIR([m4])
 # Disable Fortran checks
index 9fd25408d0526771dc085f99e10563aefe8efa26..a073f264692d39d3590cc2ca6952586fbf0dc21c 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 = 9
-LIBASS_LT_REVISION = 0
+LIBASS_LT_REVISION = 1
 LIBASS_LT_AGE = 0
 
 yasm_verbose = $(yasm_verbose_$(V))
index c62752e9cf6bda46dc7aab541564557136160ddd..f48645c8c66cd24461d7d095c54fb07f2a6137f9 100644 (file)
@@ -24,7 +24,7 @@
 #include <stdarg.h>
 #include "ass_types.h"
 
-#define LIBASS_VERSION 0x01306000
+#define LIBASS_VERSION 0x01307000
 
 #ifdef __cplusplus
 extern "C" {