Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OpenBSD/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER = Marc Espie <[email protected]>
CATEGORIES = multimedia
COMMENT = closed caption subtitles extractor
HOMEPAGE = https://ccextractor.org
V = 0.94
V = 0.95
DISTFILES = ccextractor.${V:S/.//}-src.zip
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=ccextractor/}
DISTNAME = ccextractor-$V
Expand Down
2 changes: 1 addition & 1 deletion docs/CHANGES.TXT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.0 (to be released)
0.95 (2025-09-15)
-----------------
- Fix: HardSubX OCR on Rust
- Removed the Share Module
Expand Down
2 changes: 1 addition & 1 deletion linux/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.71])
AC_INIT([CCExtractor], [0.94], [[email protected]])
AC_INIT([CCExtractor], [0.95], [[email protected]])
AC_CONFIG_AUX_DIR([build-conf])
AC_CONFIG_SRCDIR([../src/ccextractor.c])
AM_INIT_AUTOMAKE([foreign subdir-objects])
Expand Down
2 changes: 1 addition & 1 deletion mac/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.71])
AC_INIT([CCExtractor],[0.94],[[email protected]])
AC_INIT([CCExtractor],[0.95],[[email protected]])
AC_CONFIG_AUX_DIR([build-conf])
AC_CONFIG_SRCDIR([../src/ccextractor.c])
AM_INIT_AUTOMAKE([foreign subdir-objects])
Expand Down
2 changes: 1 addition & 1 deletion package_creators/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pkgname=ccextractor
pkgver=0.94
pkgver=0.95
pkgrel=1
pkgdesc="A closed captions and teletext subtitles extractor for video streams."
arch=('i686' 'x86_64')
Expand Down
2 changes: 1 addition & 1 deletion package_creators/ccextractor.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: ccextractor
Version: 0.94
Version: 0.95
Release: 1
Summary: A closed captions and teletext subtitles extractor for video streams.
Group: Applications/Internet
Expand Down
2 changes: 1 addition & 1 deletion package_creators/debian.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
TYPE="debian" # can be one of 'slackware', 'debian', 'rpm'
PROGRAM_NAME="ccextractor"
VERSION="0.94"
VERSION="0.95"
RELEASE="1"
LICENSE="GPL-2.0"
MAINTAINER="[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/lib_ccx/lib_ccx.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef CCX_CCEXTRACTOR_H
#define CCX_CCEXTRACTOR_H

#define VERSION "0.94"
#define VERSION "0.95"

// Load common includes and constants for library usage
#include "ccx_common_platform.h"
Expand Down
Loading