]> granicus.if.org Git - libass/commitdiff
Release 0.12.3 0.12.3
authorwm4 <wm4@nowhere>
Tue, 30 Jun 2015 10:27:59 +0000 (12:27 +0200)
committerwm4 <wm4@nowhere>
Tue, 30 Jun 2015 10:27:59 +0000 (12:27 +0200)
Changelog
README.md
configure.ac
libass/Makefile.am
libass/ass.h

index cac2e6a1710821d8ed8d40d3d4fd6c156e21673b..24580deeeeff39a8d8b7684ca659a5550c51d338 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,13 @@
+libass (0.12.3)
+ * VSFilter blur compatibility changes
+ * VSFilter color/alpha parsing compatibility changes
+ * Bugfixes
+   * Fix some potential memory leaks and crashes
+   * Fix large timestamps (larger than about 600 hours)
+   * Fix a potential crash with the new rasterizer and complex fonts
+   * Do not apply user-configured line position to non-dialog events
+   * Strictly clip non-dialog events to the video rectangle
+
 libass (0.12.2)
  * Add extern "C" guards to the public headers for C++ compatibility
  * Improvements to style override API and implementation
index 739a8984c93474881707e56697218c37a631b5d9..53025c1130cc7a522e0af548009c3a594d7ab9bc 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.12.2 (released 2015-05-07). This release contains bugfixes and compatibility fixes. 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.12.3 (released 2015-06-30). This release contains bugfixes and compatibility fixes. 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 4b024ceacd375245de66f93790f29d81a7108e0c..fce38ef2a4b0d905d036a5420c347336fa1e55b0 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(libass, 0.12.2)
+AC_INIT(libass, 0.12.3)
 AM_INIT_AUTOMAKE
 AC_CONFIG_MACRO_DIR([m4])
 # Disable C++/Fortran checks
index e8699f91bf2548f92f3ca017e9b9ef94f44f909f..6e1342e5c387e8620c6d69cc97555ee34057bffb 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 = 6
-LIBASS_LT_REVISION = 1
+LIBASS_LT_REVISION = 2
 LIBASS_LT_AGE = 1
 
 yasm_verbose = $(yasm_verbose_$(V))
index 029b96c86753473cad39f9ff6d7e4c26593143f4..774f344a39bef93e4c74f8ee6fdd949efc1f3e33 100644 (file)
@@ -23,7 +23,7 @@
 #include <stdarg.h>
 #include "ass_types.h"
 
-#define LIBASS_VERSION 0x01202000
+#define LIBASS_VERSION 0x01203000
 
 #ifdef __cplusplus
 extern "C" {