summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Oshmyan <chortos@inbox.lv>2017-10-31 14:07:26 +0200
committerOleg Oshmyan <chortos@inbox.lv>2017-10-31 14:55:50 +0200
commit73284b676b12b47e17af2ef1b430527299e10c17 (patch)
treec8b992a99304ddeaca210af09bee393dd7edaf75
parent8216c097f019845751d39dffdbb2b2b2a3bb0bc3 (diff)
downloadlibass-0.14.0.tar.bz2
libass-0.14.0.tar.xz
Release 0.14.00.14.0
-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 7b693a8..22b9b9f 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,13 @@
+libass (0.14.0)
+ * Brand new, faster and better outline stroker (replaces FreeType stroker)
+ * Remove option to use the FreeType rasterizer
+ * Fix spots of missing border around self-intersecting shapes
+ * Switch from Yasm to NASM for building hand-written assembler code
+ * Support Core Text font provider on Mac OS X 10.6 and 10.7
+ * Clear font cache in ass_set_fonts(). This fixes potentially incorrect
+ font choices and an occasional crash if this function is called midway
+ through rendering a file.
+
libass (0.13.7)
* Fix invalid memory accesses with BorderStyle=4
* Fix change detection bug on frame resizes
diff --git a/README.md b/README.md
index 3381b62..fd499b3 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.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.
+See [GitHub releases](https://github.com/libass/libass/releases) for the latest release 0.14.0 (released 2017-10-31). This release mainly improves visual quality but also fixes a rare crash. 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 f2ab57b..4c03edf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.13.7)
+AC_INIT(libass, 0.14.0)
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
# Disable Fortran checks
diff --git a/libass/Makefile.am b/libass/Makefile.am
index e31e54c..c7c17f6 100644
--- a/libass/Makefile.am
+++ b/libass/Makefile.am
@@ -4,7 +4,7 @@ AM_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-sign-compare -Wno-unused-parameter \
-D_GNU_SOURCE
LIBASS_LT_CURRENT = 9
-LIBASS_LT_REVISION = 1
+LIBASS_LT_REVISION = 2
LIBASS_LT_AGE = 0
nasm_verbose = $(nasm_verbose_$(V))
diff --git a/libass/ass.h b/libass/ass.h
index f48645c..cad25ae 100644
--- a/libass/ass.h
+++ b/libass/ass.h
@@ -24,7 +24,7 @@
#include <stdarg.h>
#include "ass_types.h"
-#define LIBASS_VERSION 0x01307000
+#define LIBASS_VERSION 0x01400000
#ifdef __cplusplus
extern "C" {