]> granicus.if.org Git - libass/commitdiff
Release 0.13.2 0.13.2
authorOleg Oshmyan <chortos@inbox.lv>
Sat, 20 Feb 2016 19:33:37 +0000 (21:33 +0200)
committerOleg Oshmyan <chortos@inbox.lv>
Sat, 20 Feb 2016 19:36:25 +0000 (21:36 +0200)
Changelog
README.md
configure.ac
libass/Makefile.am

index ebb68258cf95c31424c33acae9efd0e0f70238f4..58da5f2c60f13e20e53742dd19beb8ac5afa9583 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,7 @@
-libass (0.13.2 - unreleased)
+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().
+ * ass_step_sub(track, now, 0) now finds the start of the subtitle at "now".
  * Bug fixes
    * Fix an issue with the new duplicate checking, which could lead to
      missing subtitles after seeking.
index a30b3e78ca650241d8072515f71da7d0d0beb0a1..38ea7193ab87128b48223c08c308c9ee0ade5067 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.1 (released 2015-12-01). This release brings performance and font matching improvements. 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.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.
 
 Source code is available from our [GitHub repository](https://github.com/libass/libass).
 
index 20e98506bdd890c1280be63b64e6284cb17c405c..be26e8c5529af5952c61e4ce210d97185c3781aa 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.13.1)
+AC_INIT(libass, 0.13.2)
 AM_INIT_AUTOMAKE
 AC_CONFIG_MACRO_DIR([m4])
 # Disable Fortran checks
index 43e825d80be618c5b768b7baf509cfb27d1f7505..f2ecb745fed28e70f78f2833ca77993789896ea1 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 -D_GNU_SOURCE
 
-LIBASS_LT_CURRENT = 7
-LIBASS_LT_REVISION = 1
-LIBASS_LT_AGE = 2
+LIBASS_LT_CURRENT = 8
+LIBASS_LT_REVISION = 0
+LIBASS_LT_AGE = 3
 
 yasm_verbose = $(yasm_verbose_$(V))
 yasm_verbose_ = $(yasm_verbose_$(AM_DEFAULT_VERBOSITY))