diff --git a/History_CLI.txt b/History_CLI.txt index cc7019d4..4e0bd1e2 100644 --- a/History_CLI.txt +++ b/History_CLI.txt @@ -1,3 +1,10 @@ +Version 18.10, 2018-10-24 +------------- +Fix duplicated video streams with directories having WAV files with +names similar to DPX files +Fix display glitch with progress indication +Accept any even count of padding bytes in WAV fmt chunk + Version 18.09beta1, 2018-10-02 -------------------- More WAV flavors diff --git a/Project/GNU/PKGBUILD b/Project/GNU/PKGBUILD index 5c152ec8..2b6c140f 100644 --- a/Project/GNU/PKGBUILD +++ b/Project/GNU/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: MediaArea.net SARL pkgname=('rawcooked') -pkgver=18.09 +pkgver=18.10 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 f9941cd1..feb84938 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: 18.09-1 +Version: 18.10-1 Maintainer: Jerome Martinez Homepage: https://mediaarea.net Standards-Version: 3.7.3 Build-Depends: debhelper (>=5), pkg-config, automake, autoconf, libtool Files: - 00000000000000000000000000000000 000000 rawcooked_18.09.orig.tar.xz - 00000000000000000000000000000000 000000 rawcooked_18.09-1.debian.tar.xz + 00000000000000000000000000000000 000000 rawcooked_18.10.orig.tar.xz + 00000000000000000000000000000000 000000 rawcooked_18.10-1.debian.tar.xz diff --git a/Project/GNU/rawcooked.spec b/Project/GNU/rawcooked.spec index 47fc9e16..2c6c5af9 100644 --- a/Project/GNU/rawcooked.spec +++ b/Project/GNU/rawcooked.spec @@ -4,7 +4,7 @@ # norootforbuild -%global rawcooked_version 18.09 +%global rawcooked_version 18.10 Name: rawcooked Version: %rawcooked_version @@ -68,5 +68,5 @@ popd %{_mandir}/man1/rawcooked.* %changelog -* Mon Jan 01 2018 Jerome Martinez - 18.09-0 +* Mon Jan 01 2018 Jerome Martinez - 18.10-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 5a3c61f4..1244b958 100644 --- a/Project/MSVC2017/CLI/RAWcooked.rc +++ b/Project/MSVC2017/CLI/RAWcooked.rc @@ -1,6 +1,6 @@ VS_VERSION_INFO VERSIONINFO - FILEVERSION 18.09,0,0 - PRODUCTVERSION 18.09,0,0 + FILEVERSION 18.10,0,0 + PRODUCTVERSION 18.10,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -17,12 +17,12 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "RAWcooked" - VALUE "FileVersion", "18.09.0.0" + VALUE "FileVersion", "18.10.0.0" VALUE "InternalName", "RAWcooked - CLI" VALUE "LegalCopyright", "MediaArea.net" VALUE "OriginalFilename", "RAWcooked.exe" VALUE "ProductName", "RAWcooked" - VALUE "ProductVersion", "18.09.0.0" + VALUE "ProductVersion", "18.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/Mac/Info.plist b/Project/Mac/Info.plist index a1319a0b..477009b5 100644 --- a/Project/Mac/Info.plist +++ b/Project/Mac/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 18.09 + 18.10 CFBundleVersion - 18.09 + 18.10 DTSDKName macosx10.6 LSApplicationCategoryType diff --git a/Project/version.txt b/Project/version.txt index 770bde1f..46b383c3 100644 --- a/Project/version.txt +++ b/Project/version.txt @@ -1 +1 @@ -18.09 +18.10 diff --git a/Source/CLI/rawcooked.1 b/Source/CLI/rawcooked.1 index 51b64d18..c1374734 100644 --- a/Source/CLI/rawcooked.1 +++ b/Source/CLI/rawcooked.1 @@ -1,4 +1,4 @@ -.TH "RAWcooked" "1" "https://mediaarea.net/RAWcooked" "18.09" "Bit\-by\-bit fidelity" +.TH "RAWcooked" "1" "https://mediaarea.net/RAWcooked" "18.10" "Bit\-by\-bit fidelity" .\" Turn off justification for nroff. .if n .ad l .\" Turn off hyphenation. diff --git a/Source/Lib/RAWcooked/RAWcooked.cpp b/Source/Lib/RAWcooked/RAWcooked.cpp index 0bfc9b7c..54a6e1a0 100644 --- a/Source/Lib/RAWcooked/RAWcooked.cpp +++ b/Source/Lib/RAWcooked/RAWcooked.cpp @@ -14,7 +14,7 @@ using namespace std; // Library name and version const char* LibraryName = "RAWcooked"; -const char* LibraryVersion = "18.09"; +const char* LibraryVersion = "18.10"; // EBML static const uint32_t Name_EBML = 0x0A45DFA3; diff --git a/debian/changelog b/debian/changelog index 2df5bcb1..f0f6baa8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -rawcooked (18.09-1) unstable; urgency=low +rawcooked (18.10-1) unstable; urgency=low * See History.txt for more info and real dates