Skip to content

Commit

Permalink
Merge pull request #664 from g-maxime/preparing-v17.10
Browse files Browse the repository at this point in the history
Preparing v17.10
  • Loading branch information
JeromeMartinez authored Nov 2, 2017
2 parents f186d66 + 6a895f5 commit e78156f
Show file tree
Hide file tree
Showing 24 changed files with 95 additions and 65 deletions.
6 changes: 6 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
I changed some elements in the interface.
No break in binary compatibily (no crash), but some details.

0.7.99 --> 17.10
-----------------
- Version scheme is now YY.MM (year dot month, 2 digits each)
- New MediaInfo XML output, with XSD, more suitable for automatic parsing. Use Option("Inform", "OLDXML") for keeping previous behavior
- WAV: GUID display was with first 8 bytes in wrong order, they are in correct order now

0.7.98 --> 0.7.99
-----------------
- AAC: CodecID includes audioObjectType (decimal)
Expand Down
24 changes: 24 additions & 0 deletions History_DLL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ x Correction
bug reports and feature request are here:
https://sourceforge.net/p/mediainfo/_list/tickets

Version 17.10, 2017-11-02
--------------
+ We need your support! Visit https://mediaarea.net/SupportUs
+ Version scheme is now YY.MM (year dot month, 2 digits each)
+ New MediaInfo XML output, with XSD, more suitable for automatic parsing. Use Option("Inform", "OLDXML") for keeping previous behavior
+ New "Info_OutputFormats" option for listing supported output formats
+ Universal Ad ID: refactored display, better display of value and registry, XML name slightly modified
+ MOV: support of HDR metadata (MasteringDisplayColorVolume, MaxCLL, MaxFALL)
+ BWF: display of UMID and loudness info
+ AAC: show program_config_element in trace
+ MPEG Audio: frame rate info
+ PCM in WAV and Matroska: Support of ValidBitsPerSample
+ I197, EBUCore: 1.8 output uses now final version of XSD and final XSD location
+ Matroska: tweaking frame rate empirical detection for some corner cases
x I1070, LAME 3.100 info tag was incorrectly parsed
x B1068, MPEG Audio: Incoherent duration between General and Audio parts, Audio part duration fixed
x Matroska: showing "A_MS/ACM" Matroska CodecID
x MXF: Fix crash with some buggy files
x MXF: was not well supporting MXF referencing only 1 file
x PCM in WAV: 8-bit content is unsigned and without endianess
x PCM in WAV and Matroska: More coherency between Wave info and ExtensibleWave Info (bitdepth, sign)
x WAV: GUID display was with first 8 bytes in wrong order
x Several crash fixes

Version 0.7.99, 2017-09-11
--------------
+ EBUCore: JSON output (--Output=EBUCore_1.8_JSON)
Expand Down
2 changes: 1 addition & 1 deletion Project/CMake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 2.8.11)
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")

set(MediaInfoLib_MAJOR_VERSION 17)
set(MediaInfoLib_MINOR_VERSION 09)
set(MediaInfoLib_MINOR_VERSION 10)
set(MediaInfoLib_VERSION ${MediaInfoLib_MAJOR_VERSION}.${MediaInfoLib_MINOR_VERSION})

if (NOT WIN32)
Expand Down
2 changes: 1 addition & 1 deletion Project/GNU/Library/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dnl #########################################################################
dnl -------------------------------------------------------------------------
dnl Name and version
dnl
AC_INIT([libmediainfo], [17.09])
AC_INIT([libmediainfo], [17.10])

dnl -------------------------------------------------------------------------
dnl Test if we are at the good place
Expand Down
2 changes: 1 addition & 1 deletion Project/GNU/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Contributor: hydro <hydro@freenet.de>

pkgname=libmediainfo
pkgver=17.09
pkgver=17.10
pkgrel=1
pkgdesc="shared library for mediainfo"
arch=('i686' 'x86_64')
Expand Down
14 changes: 7 additions & 7 deletions Project/GNU/libmediainfo.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: libmediainfo
Binary: libmediainfo-dev, libmediainfo0, python-mediainfodll, python3-mediainfodll, libmediainfo-doc libmediainfo0-dbg
Architecture: any all
Version: 17.09-1
Version: 17.10-1
Maintainer: MediaArea.net SARL <info@mediaarea.net>
Homepage: http://MediaArea.net/MediaInfo
Standards-Version: 3.9.6
Expand All @@ -16,11 +16,11 @@ Package-List:
python-mediainfodll deb python optional arch=all
python3-mediainfodll deb python optional arch=all
Checksums-Sha1:
0000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz
0000000000000000000000000000000000000000 000000 libmediainfo_17.09-1.debian.tar.xz
0000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz
0000000000000000000000000000000000000000 000000 libmediainfo_17.10-1.debian.tar.xz
Checksums-Sha256:
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09-1.debian.tar.xz
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10-1.debian.tar.xz
Files:
00000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz
00000000000000000000000000000000 000000 libmediainfo_17.09-1.debian.tar.xz
00000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz
00000000000000000000000000000000 000000 libmediainfo_17.10-1.debian.tar.xz
4 changes: 2 additions & 2 deletions Project/GNU/libmediainfo.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%define libmediainfo_version 17.09
%define libmediainfo_version 17.10
%define libzen_version 0.4.37

%if 0%{?fedora_version} || 0%{?centos_version} >= 600 || 0%{?rhel_version} >= 600
Expand Down Expand Up @@ -236,7 +236,7 @@ rm -f %{buildroot}%{_libdir}/%{name_without_0_ending}.la
%{_libdir}/%{name_without_0_ending}.so

%changelog
* Sun Jan 01 2012 MediaArea.net SARL <info@mediaarea.net> - 17.09-0
* Sun Jan 01 2012 MediaArea.net SARL <info@mediaarea.net> - 17.10-0
- See History.txt for more info and real dates
- Previous packages made by Toni Graffy <toni@links2linux.de>
- Fedora style made by Vasiliy N. Glazov <vascom2@gmail.com>
8 changes: 4 additions & 4 deletions Project/MSVC2013/Dll/MediaInfo.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2013/Example/HowToUse.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2013/ShellExtension/MediaInfoShellExt.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2015/Dll/MediaInfo.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2015/Example/HowToUse.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2015/ShellExtension/MediaInfoShellExt.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2017/Dll/MediaInfo.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2017/Example/HowToUse.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Project/MSVC2017/ShellExtension/MediaInfoShellExt.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 17,09,0,0
PRODUCTVERSION 17,09,0,0
FILEVERSION 17,10,0,0
PRODUCTVERSION 17,10,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -19,10 +19,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "MediaArea.net"
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
VALUE "FileVersion", "17.09.0.0"
VALUE "FileVersion", "17.10.0.0"
VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
VALUE "ProductName", "MediaInfo"
VALUE "ProductVersion", "17.09.0.0"
VALUE "ProductVersion", "17.10.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion Project/OBS/deb6.debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libmediainfo (17.09) unstable; urgency=low
libmediainfo (17.10) unstable; urgency=low

* See History.txt for more info and real dates

Expand Down
4 changes: 2 additions & 2 deletions Project/OBS/deb6.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Format: 1.0
Source: libmediainfo
Binary: libmediainfo-dev, libmediainfo0 libmediainfo0-dbg
Architecture: any
Version: 17.09-1deb6
Version: 17.10-1deb6
Maintainer: MediaArea.net SARL <info@mediaarea.net>
Homepage: http://MediaArea.net/MediaInfo
Standards-Version: 3.7.3
Build-Depends: debhelper (>= 5), doxygen, tofrodos, libzen-dev (>= 0.4.37), zlib1g-dev, pkg-config, automake, autoconf, libtool
Files:
00000000000000000000000000000000 000000 libmediainfo_17.09-1deb6.tar.gz
00000000000000000000000000000000 000000 libmediainfo_17.10-1deb6.tar.gz
4 changes: 2 additions & 2 deletions Project/OBS/deb9.debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
libmediainfo (17.09-1) experimental; urgency=medium
libmediainfo (17.10-1) experimental; urgency=medium

* Upstream version 17.09
* Upstream version 17.10
For details, see https://github.com/MediaArea/MediaInfoLib/blob/master/History_DLL.txt

-- MediaArea <info@mediaarea.net> Mon, 02 Nov 2015 10:30:00 +0100
Expand Down
14 changes: 7 additions & 7 deletions Project/OBS/deb9.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: libmediainfo
Binary: libmediainfo-dev, libmediainfo0v5, python-mediainfodll, python3-mediainfodll, libmediainfo-doc libmediainfo0v5-dbg
Architecture: any all
Version: 17.09-1deb9
Version: 17.10-1deb9
Maintainer: MediaArea.net SARL <info@mediaarea.net>
Homepage: http://MediaArea.net/MediaInfo
Standards-Version: 3.9.6
Expand All @@ -16,11 +16,11 @@ Package-List:
python-mediainfodll deb python optional arch=all
python3-mediainfodll deb python optional arch=all
Checksums-Sha1:
0000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz
0000000000000000000000000000000000000000 000000 libmediainfo_17.09-1deb9.debian.tar.xz
0000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz
0000000000000000000000000000000000000000 000000 libmediainfo_17.10-1deb9.debian.tar.xz
Checksums-Sha256:
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09-1deb9.debian.tar.xz
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10-1deb9.debian.tar.xz
Files:
00000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz
00000000000000000000000000000000 000000 libmediainfo_17.09-1deb9.debian.tar.xz
00000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz
00000000000000000000000000000000 000000 libmediainfo_17.10-1deb9.debian.tar.xz
2 changes: 1 addition & 1 deletion Project/Solaris/mkpkg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ release=`uname -r`

#Creation of known directories and filenames
name="libmediainfo0"
version="17.09"
version="17.10"
Home=`pwd`
install_prefix=${Home}/mk_package
packagecreation_prefix=${Home}/create_package
Expand Down
2 changes: 1 addition & 1 deletion Project/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17.09
17.10
Loading

0 comments on commit e78156f

Please sign in to comment.