From 5127da50d14655401c4086e39d8b2d7786c5038f Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Sanz Date: Mon, 26 Jul 2021 09:53:45 -0700 Subject: [PATCH] Push version 0.90 -> 0.91 --- OpenBSD/Makefile | 2 +- docs/CHANGES.TXT | 5 +++++ linux/configure.ac | 2 +- mac/configure.ac | 2 +- package_creators/PKGBUILD | 2 +- src/lib_ccx/lib_ccx.h | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/OpenBSD/Makefile b/OpenBSD/Makefile index fc1d6c172..7fd452b59 100644 --- a/OpenBSD/Makefile +++ b/OpenBSD/Makefile @@ -4,7 +4,7 @@ MAINTAINER = Marc Espie CATEGORIES = multimedia COMMENT = closed caption subtitles extractor HOMEPAGE = https://ccextractor.org -V = 0.90 +V = 0.91 DISTFILES = ccextractor.${V:S/.//}-src.zip MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=ccextractor/} DISTNAME = ccextractor-$V diff --git a/docs/CHANGES.TXT b/docs/CHANGES.TXT index 4853e5ce4..072c2be12 100644 --- a/docs/CHANGES.TXT +++ b/docs/CHANGES.TXT @@ -1,3 +1,8 @@ +0.91 (2021-07-26) +----------------- +- More Rust in the 708 decoder (Add Pen Presets and timing functions) +- Updated GUI + 0.90 (2021-07-14) ----------------- - New installer (WiX based) diff --git a/linux/configure.ac b/linux/configure.ac index cbcf52ef4..64fa1243f 100644 --- a/linux/configure.ac +++ b/linux/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([CCExtractor], [0.90], [carlos@ccextractor.org]) +AC_INIT([CCExtractor], [0.91], [carlos@ccextractor.org]) AC_CONFIG_AUX_DIR([build-conf]) AC_CONFIG_SRCDIR([../src/ccextractor.c]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/mac/configure.ac b/mac/configure.ac index 11a2c139a..705e9c932 100644 --- a/mac/configure.ac +++ b/mac/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([CCExtractor], [0.90], [carlos@ccextractor.org]) +AC_INIT([CCExtractor], [0.91], [carlos@ccextractor.org]) AC_CONFIG_AUX_DIR([build-conf]) AC_CONFIG_SRCDIR([../src/ccextractor.c]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/package_creators/PKGBUILD b/package_creators/PKGBUILD index 9d36d5069..75f1c5a21 100644 --- a/package_creators/PKGBUILD +++ b/package_creators/PKGBUILD @@ -1,5 +1,5 @@ pkgname=ccextractor -pkgver=0.90 +pkgver=0.91 pkgrel=1 pkgdesc="A closed captions and teletext subtitles extractor for video streams." arch=('i686' 'x86_64') diff --git a/src/lib_ccx/lib_ccx.h b/src/lib_ccx/lib_ccx.h index 573a5d96c..7547c803a 100644 --- a/src/lib_ccx/lib_ccx.h +++ b/src/lib_ccx/lib_ccx.h @@ -1,7 +1,7 @@ #ifndef CCX_CCEXTRACTOR_H #define CCX_CCEXTRACTOR_H -#define VERSION "0.90" +#define VERSION "0.91" // Load common includes and constants for library usage #include "ccx_common_platform.h"