summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@chown.ath.cx>2016-09-24 21:06:23 +0200
committerGrigori Goronzy <greg@chown.ath.cx>2016-09-24 21:06:23 +0200
commit27b0232b0d9259bc009389a019eb6b47103f484a (patch)
tree304f1033b0484f8d8f25fd2ccdd1babf2171f921
parent9422a80578bc44f662f07edf723f85239a0579f5 (diff)
downloadlibass-0.13.3.tar.bz2
libass-0.13.3.tar.xz
Release 0.13.30.13.3
-rw-r--r--Changelog8
-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, 12 insertions, 4 deletions
diff --git a/Changelog b/Changelog
index 58da5f2..0b9a9a8 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,11 @@
+libass (0.13.3)
+ * Improve compatibility/portablility of build system,
+ should fix e.g. compilation on Solaris.
+ * Fix memory leak in DirectWrite font provider.
+ * Fix the rasterizer when rendering some large outlines.
+ * Remove hack that forced RTL base direction depending on font encoding.
+ * Greatly improve the internal caches with refcounting and gradual clearing.
+
libass (0.13.2)
* Add ass_set_check_readorder() API function to disable use of the ReadOrder
field for duplicate checking in ass_process_chunk().
diff --git a/README.md b/README.md
index b5a12f4..8ef495b 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.2 (released 2016-02-20). This is mainly a 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.13.3 (released 2016-09-24). This is mainly a 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).
diff --git a/configure.ac b/configure.ac
index 5c61f1a..bb079d3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.13.2)
+AC_INIT(libass, 0.13.3)
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
# Disable Fortran checks
diff --git a/libass/Makefile.am b/libass/Makefile.am
index f2ecb74..97bf565 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 = 8
-LIBASS_LT_REVISION = 0
+LIBASS_LT_REVISION = 1
LIBASS_LT_AGE = 3
yasm_verbose = $(yasm_verbose_$(V))
diff --git a/libass/ass.h b/libass/ass.h
index bd8bb1a..69c5c23 100644
--- a/libass/ass.h
+++ b/libass/ass.h
@@ -24,7 +24,7 @@
#include <stdarg.h>
#include "ass_types.h"
-#define LIBASS_VERSION 0x01302000
+#define LIBASS_VERSION 0x01303000
#ifdef __cplusplus
extern "C" {