Skip to content

Commit 2cffb23

Browse files
Merge pull request #178 from g-maxime/preparing-v18.10
Preparing v18.10
2 parents 04b5d8b + 1fdb72a commit 2cffb23

File tree

10 files changed

+23
-16
lines changed

10 files changed

+23
-16
lines changed

History_CLI.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 18.10, 2018-10-24
2+
-------------
3+
Fix duplicated video streams with directories having WAV files with
4+
names similar to DPX files
5+
Fix display glitch with progress indication
6+
Accept any even count of padding bytes in WAV fmt chunk
7+
18
Version 18.09beta1, 2018-10-02
29
--------------------
310
More WAV flavors

Project/GNU/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Maintainer: MediaArea.net SARL <[email protected]>
33

44
pkgname=('rawcooked')
5-
pkgver=18.09
5+
pkgver=18.10
66
pkgrel=1
77
pkgdesc="Encodes RAW audio-visual data while permitting reversibility"
88
url="http://mediaarea.net"

Project/GNU/rawcooked.dsc

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ Format: 3.0 (quilt)
22
Source: rawcooked
33
Binary: rawcooked, rawcooked-dbg
44
Architecture: any
5-
Version: 18.09-1
5+
Version: 18.10-1
66
Maintainer: Jerome Martinez <[email protected]>
77
Homepage: https://mediaarea.net
88
Standards-Version: 3.7.3
99
Build-Depends: debhelper (>=5), pkg-config, automake, autoconf, libtool
1010
Files:
11-
00000000000000000000000000000000 000000 rawcooked_18.09.orig.tar.xz
12-
00000000000000000000000000000000 000000 rawcooked_18.09-1.debian.tar.xz
11+
00000000000000000000000000000000 000000 rawcooked_18.10.orig.tar.xz
12+
00000000000000000000000000000000 000000 rawcooked_18.10-1.debian.tar.xz

Project/GNU/rawcooked.spec

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# norootforbuild
66

7-
%global rawcooked_version 18.09
7+
%global rawcooked_version 18.10
88

99
Name: rawcooked
1010
Version: %rawcooked_version
@@ -68,5 +68,5 @@ popd
6868
%{_mandir}/man1/rawcooked.*
6969

7070
%changelog
71-
* Mon Jan 01 2018 Jerome Martinez <[email protected]> - 18.09-0
71+
* Mon Jan 01 2018 Jerome Martinez <[email protected]> - 18.10-0
7272
- See History.txt for more info and real dates

Project/MSVC2017/CLI/RAWcooked.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VS_VERSION_INFO VERSIONINFO
2-
FILEVERSION 18.09,0,0
3-
PRODUCTVERSION 18.09,0,0
2+
FILEVERSION 18.10,0,0
3+
PRODUCTVERSION 18.10,0,0
44
FILEFLAGSMASK 0x17L
55
#ifdef _DEBUG
66
FILEFLAGS 0x1L
@@ -17,12 +17,12 @@ BEGIN
1717
BEGIN
1818
VALUE "CompanyName", "MediaArea.net"
1919
VALUE "FileDescription", "RAWcooked"
20-
VALUE "FileVersion", "18.09.0.0"
20+
VALUE "FileVersion", "18.10.0.0"
2121
VALUE "InternalName", "RAWcooked - CLI"
2222
VALUE "LegalCopyright", "MediaArea.net"
2323
VALUE "OriginalFilename", "RAWcooked.exe"
2424
VALUE "ProductName", "RAWcooked"
25-
VALUE "ProductVersion", "18.09.0.0"
25+
VALUE "ProductVersion", "18.10.0.0"
2626
END
2727
END
2828
BLOCK "VarFileInfo"

Project/Mac/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>18.09</string>
18+
<string>18.10</string>
1919
<key>CFBundleVersion</key>
20-
<string>18.09</string>
20+
<string>18.10</string>
2121
<key>DTSDKName</key>
2222
<string>macosx10.6</string>
2323
<key>LSApplicationCategoryType</key>

Project/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.09
1+
18.10

Source/CLI/rawcooked.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "RAWcooked" "1" "https://mediaarea.net/RAWcooked" "18.09" "Bit\-by\-bit fidelity"
1+
.TH "RAWcooked" "1" "https://mediaarea.net/RAWcooked" "18.10" "Bit\-by\-bit fidelity"
22
.\" Turn off justification for nroff.
33
.if n .ad l
44
.\" Turn off hyphenation.

Source/Lib/RAWcooked/RAWcooked.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using namespace std;
1414

1515
// Library name and version
1616
const char* LibraryName = "RAWcooked";
17-
const char* LibraryVersion = "18.09";
17+
const char* LibraryVersion = "18.10";
1818

1919
// EBML
2020
static const uint32_t Name_EBML = 0x0A45DFA3;

debian/changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rawcooked (18.09-1) unstable; urgency=low
1+
rawcooked (18.10-1) unstable; urgency=low
22

33
* See History.txt for more info and real dates
44

0 commit comments

Comments
 (0)