Skip to content

Commit 477307e

Browse files
authored
chore: Bump version to 0.96.5
2 parents dc94616 + 4a4911b commit 477307e

File tree

13 files changed

+21
-13
lines changed

13 files changed

+21
-13
lines changed

OpenBSD/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAINTAINER = Marc Espie <[email protected]>
44
CATEGORIES = multimedia
55
COMMENT = closed caption subtitles extractor
66
HOMEPAGE = https://ccextractor.org
7-
V = 0.96.4
7+
V = 0.96.5
88
DISTFILES = ccextractor.${V:S/.//}-src.zip
99
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=ccextractor/}
1010
DISTNAME = ccextractor-$V

docs/CHANGES.TXT

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.96.5 (2026-01-05)
2+
-------------------
3+
- New: Add support for raw CDP (Caption Distribution Packet) files (#1406)
4+
- New: Add --scc-accurate-timing option for bandwidth-aware SCC output (#1120)
5+
- Fix: MXF files containing CEA-708 captions not being detected/extracted (#1647)
6+
- Docs: Add Windows WSL build instructions
7+
- Fix: Security fixes (out-of-bounds read/write) in a few places in the legacy C code.
8+
19
0.96.4 (2026-01-01)
210
-------------------
311
- New: Persistent CEA-708 decoder context - maintains state across multiple calls for proper subtitle continuity

linux/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.71])
5-
AC_INIT([CCExtractor], [0.96.4], [[email protected]])
5+
AC_INIT([CCExtractor], [0.96.5], [[email protected]])
66
AC_CONFIG_AUX_DIR([build-conf])
77
AC_CONFIG_SRCDIR([../src/ccextractor.c])
88
AM_INIT_AUTOMAKE([foreign subdir-objects])

mac/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.71])
5-
AC_INIT([CCExtractor],[0.96.4],[[email protected]])
5+
AC_INIT([CCExtractor],[0.96.5],[[email protected]])
66
AC_CONFIG_AUX_DIR([build-conf])
77
AC_CONFIG_SRCDIR([../src/ccextractor.c])
88
AM_INIT_AUTOMAKE([foreign subdir-objects])

package_creators/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pkgname=ccextractor
2-
pkgver=0.96.4
2+
pkgver=0.96.5
33
pkgrel=1
44
pkgdesc="A closed captions and teletext subtitles extractor for video streams."
55
arch=('i686' 'x86_64')

package_creators/ccextractor.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: ccextractor
2-
Version: 0.96.4
2+
Version: 0.96.5
33
Release: 1
44
Summary: A closed captions and teletext subtitles extractor for video streams.
55
Group: Applications/Internet

package_creators/debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
TYPE="debian" # can be one of 'slackware', 'debian', 'rpm'
33
PROGRAM_NAME="ccextractor"
4-
VERSION="0.96.4"
4+
VERSION="0.96.5"
55
RELEASE="1"
66
LICENSE="GPL-2.0"
77
MAINTAINER="[email protected]"

packaging/chocolatey/ccextractor.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>ccextractor</id>
5-
<version>0.96.4</version>
5+
<version>0.96.5</version>
66
<title>CCExtractor</title>
77
<authors>CCExtractor Development Team</authors>
88
<owners>CCExtractor</owners>

packaging/chocolatey/tools/chocolateyInstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
77
$packageArgs = @{
88
packageName = $packageName
99
fileType = 'MSI'
10-
url64bit = 'https://github.com/CCExtractor/ccextractor/releases/download/v0.96.4/CCExtractor.0.96.4.msi'
10+
url64bit = 'https://github.com/CCExtractor/ccextractor/releases/download/v0.96.5/CCExtractor.0.96.5.msi'
1111
checksum64 = 'FFCAB0D766180AFC2832277397CDEC885D15270DECE33A9A51947B790F1F095B'
1212
checksumType64 = 'sha256'
1313
silentArgs = '/quiet /norestart'

packaging/winget/CCExtractor.CCExtractor.installer.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json
22
PackageIdentifier: CCExtractor.CCExtractor
3-
PackageVersion: 0.96.4
3+
PackageVersion: 0.96.5
44
Platform:
55
- Windows.Desktop
66
MinimumOSVersion: 10.0.0.0
@@ -15,7 +15,7 @@ UpgradeBehavior: install
1515
Installers:
1616
- Architecture: x64
1717
InstallerType: msi
18-
InstallerUrl: https://github.com/CCExtractor/ccextractor/releases/download/v0.96.4/CCExtractor.0.96.4.msi
18+
InstallerUrl: https://github.com/CCExtractor/ccextractor/releases/download/v0.96.5/CCExtractor.0.96.5.msi
1919
InstallerSha256: FFCAB0D766180AFC2832277397CDEC885D15270DECE33A9A51947B790F1F095B
2020
ManifestType: installer
2121
ManifestVersion: 1.9.0

0 commit comments

Comments
 (0)