From f010179a477c663331534cd683dfaf84f2207946 Mon Sep 17 00:00:00 2001 From: Jenkins CI Date: Thu, 7 Sep 2023 12:37:45 +0000 Subject: [PATCH] Preparing v23.09 --- History_CLI.txt | 10 ++++++++++ Project/Chocolatey/rawcooked.nuspec | 2 +- Project/GNU/PKGBUILD | 2 +- Project/GNU/rawcooked.dsc | 6 +++--- Project/GNU/rawcooked.spec | 4 ++-- Project/MSVC2017/CLI/RAWcooked.rc | 8 ++++---- Project/MSVC2019/CLI/RAWcooked.rc | 8 ++++---- Project/Mac/Info.plist | 4 ++-- Project/version.txt | 2 +- Source/CLI/rawcooked.1 | 2 +- Source/Lib/Compressed/RAWcooked/RAWcooked.cpp | 2 +- debian/changelog | 2 +- 12 files changed, 31 insertions(+), 21 deletions(-) diff --git a/History_CLI.txt b/History_CLI.txt index cc154690..49ebb5d4 100644 --- a/History_CLI.txt +++ b/History_CLI.txt @@ -1,3 +1,13 @@ +Version 23.09, 2023-09-07 +------------- +Fail if corrupted image header in the sequence +Fail on any FFmpeg error +Support of 4-ch audio +Show a non misleading message if channel count is not supported +More details about AVI pre-analysis related issues +Accept AVI files without audio +Support of AVI 00db frames + Version 23.03, 2023-03-31 ------------- AVI/v210 diff --git a/Project/Chocolatey/rawcooked.nuspec b/Project/Chocolatey/rawcooked.nuspec index ea8568b8..ebeea681 100644 --- a/Project/Chocolatey/rawcooked.nuspec +++ b/Project/Chocolatey/rawcooked.nuspec @@ -4,7 +4,7 @@ rawcooked RAWcooked - 23.03 + 23.09 https://github.com/MediaArea/RAWcooked/blob/master/Project/Chocolatey MediaArea.net MediaArea.net diff --git a/Project/GNU/PKGBUILD b/Project/GNU/PKGBUILD index 3feec0c9..0169a78f 100644 --- a/Project/GNU/PKGBUILD +++ b/Project/GNU/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: MediaArea.net SARL pkgname=('rawcooked') -pkgver=23.03 +pkgver=23.09 pkgrel=1 pkgdesc="Encodes RAW audio-visual data while permitting reversibility" url="http://mediaarea.net" diff --git a/Project/GNU/rawcooked.dsc b/Project/GNU/rawcooked.dsc index 3a54f667..602359df 100644 --- a/Project/GNU/rawcooked.dsc +++ b/Project/GNU/rawcooked.dsc @@ -2,11 +2,11 @@ Format: 3.0 (quilt) Source: rawcooked Binary: rawcooked, rawcooked-dbg Architecture: any -Version: 23.03-1 +Version: 23.09-1 Maintainer: Jerome Martinez Homepage: https://mediaarea.net Standards-Version: 3.7.3 Build-Depends: debhelper (>=7), pkg-config, automake, autoconf, libtool Files: - 00000000000000000000000000000000 000000 rawcooked_23.03.orig.tar.xz - 00000000000000000000000000000000 000000 rawcooked_23.03-1.debian.tar.xz + 00000000000000000000000000000000 000000 rawcooked_23.09.orig.tar.xz + 00000000000000000000000000000000 000000 rawcooked_23.09-1.debian.tar.xz diff --git a/Project/GNU/rawcooked.spec b/Project/GNU/rawcooked.spec index 48a142c6..e662fa4f 100644 --- a/Project/GNU/rawcooked.spec +++ b/Project/GNU/rawcooked.spec @@ -4,7 +4,7 @@ # norootforbuild -%global rawcooked_version 23.03 +%global rawcooked_version 23.09 Name: rawcooked Version: %rawcooked_version @@ -72,5 +72,5 @@ popd %{_mandir}/man1/rawcooked.* %changelog -* Mon Jan 01 2018 Jerome Martinez - 23.03-0 +* Mon Jan 01 2018 Jerome Martinez - 23.09-0 - See History.txt for more info and real dates diff --git a/Project/MSVC2017/CLI/RAWcooked.rc b/Project/MSVC2017/CLI/RAWcooked.rc index 5dfb7f4c..3838a445 100644 --- a/Project/MSVC2017/CLI/RAWcooked.rc +++ b/Project/MSVC2017/CLI/RAWcooked.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 23,03,0,0 - PRODUCTVERSION 23,03,0,0 + FILEVERSION 23,09,0,0 + PRODUCTVERSION 23,09,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,12 +19,12 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "RAWcooked" - VALUE "FileVersion", "23.03.0.0" + VALUE "FileVersion", "23.09.0.0" VALUE "InternalName", "RAWcooked - CLI" VALUE "LegalCopyright", "MediaArea.net" VALUE "OriginalFilename", "RAWcooked.exe" VALUE "ProductName", "RAWcooked" - VALUE "ProductVersion", "23.03.0.0" + VALUE "ProductVersion", "23.09.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2019/CLI/RAWcooked.rc b/Project/MSVC2019/CLI/RAWcooked.rc index 2dc0c756..8534dd1f 100644 --- a/Project/MSVC2019/CLI/RAWcooked.rc +++ b/Project/MSVC2019/CLI/RAWcooked.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 23,03,0,0 - PRODUCTVERSION 23,03,0,0 + FILEVERSION 23,09,0,0 + PRODUCTVERSION 23,09,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,12 +19,12 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "RAWcooked" - VALUE "FileVersion", "23.03.0.0" + VALUE "FileVersion", "23.09.0.0" VALUE "InternalName", "RAWcooked - CLI" VALUE "LegalCopyright", "MediaArea.net" VALUE "OriginalFilename", "RAWcooked.exe" VALUE "ProductName", "RAWcooked" - VALUE "ProductVersion", "23.03.0.0" + VALUE "ProductVersion", "23.09.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/Mac/Info.plist b/Project/Mac/Info.plist index e534413a..e6f8bf86 100644 --- a/Project/Mac/Info.plist +++ b/Project/Mac/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 23.03 + 23.09 CFBundleVersion - 23.03 + 23.09 DTSDKName macosx10.6 LSApplicationCategoryType diff --git a/Project/version.txt b/Project/version.txt index 385707f5..bbf80af9 100644 --- a/Project/version.txt +++ b/Project/version.txt @@ -1 +1 @@ -23.03 +23.09 diff --git a/Source/CLI/rawcooked.1 b/Source/CLI/rawcooked.1 index 144ab19f..a2b564e3 100644 --- a/Source/CLI/rawcooked.1 +++ b/Source/CLI/rawcooked.1 @@ -1,4 +1,4 @@ -.TH "RAWcooked" "1" "https://mediaarea.net/RAWcooked" "23.03" "Bit-by-bit fidelity" +.TH "RAWcooked" "1" "https://mediaarea.net/RAWcooked" "23.09" "Bit-by-bit fidelity" .\" Turn off justification for nroff. .if n .ad l .\" Turn off hyphenation. diff --git a/Source/Lib/Compressed/RAWcooked/RAWcooked.cpp b/Source/Lib/Compressed/RAWcooked/RAWcooked.cpp index c301bf2e..482cf921 100644 --- a/Source/Lib/Compressed/RAWcooked/RAWcooked.cpp +++ b/Source/Lib/Compressed/RAWcooked/RAWcooked.cpp @@ -15,7 +15,7 @@ using namespace std; // Library name and version const char* LibraryName = "RAWcooked"; -const char* LibraryVersion = "23.03"; +const char* LibraryVersion = "23.09"; // EBML static const uint32_t Name_EBML = 0x0A45DFA3; diff --git a/debian/changelog b/debian/changelog index 93d33a5b..fc62c7ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -rawcooked (23.03-1) unstable; urgency=low +rawcooked (23.09-1) unstable; urgency=low * See History.txt for more info and real dates