Bump version.

This commit is contained in:
LoRd_MuldeR 2016-09-12 23:42:24 +02:00
parent 81a9ad4c66
commit 52ed030d71
2 changed files with 31 additions and 4 deletions

View File

@ -12,6 +12,33 @@ Known bugs
- Languages (other than english and French) : not all words are translated, I need translators!
- Others? https://sourceforge.net/p/mediainfo/_list/tickets
Version 0.7.88, 2016-08-31
--------------
+ MediaInfo distributed with HTTP/HTTPS support: support of Amazon S3 with Signature Version 4
+ FFV1: parsing speed slight improvement
x Duration: fixed regression in last release, sometimes duration was displayed with only count of minutes
Version 0.7.87, 2016-06-30
--------------
+ Refactoring of the trace feature, for better performance and some bug fixes
- Visual C++ 2012 project files removed
x Review of symbols display, now using standard display (e.g. "k" instead of "K", " min" instead of "mn"...)
x XML output: revert to old versioning method (version is MediaInfo software version)
x I63, EBUCore/FIMS outputs: typo correction about WritingLibrary and WritingApplication
x Matroska: files with CodecPrivate element before CodecID element where not always correctly parsed
x OGG: crash/incoherent behavior with some buggy OGG streams having invalid chunk sizes
Version 0.7.86, 2016-05-31
--------------
+ FFV1 parsing optimization, avoiding by default a too verbose trace
+ Matroska: more elements support and typo fixes in the trace
+ #I172, Trace feature: provide the name of the main parser in the media element
+ Matroska: consider all values below 0x10 EBML names as 1-byte junk
x Matroska: better support (including speed improvement) of huge lossless frames (e.g. 20 MB FFV1 4K)
x #I144, Python binding: Python 2 on Linux does not automatically provide the locale to the shared object
x HTML output: don't escape carriage returns from the input file
x FFV1: some streams were rejected despite the fact they are valid
x Python binding: some errors during call of Get() API with Python3 on Linux/Mac
Version 0.7.85, 2016-04-29
--------------

View File

@ -27,16 +27,16 @@
//Version
MIXP_DEFINE_CONF(unsigned int, mixp_versionMajor, 2)
MIXP_DEFINE_CONF(unsigned int, mixp_versionMinor, 20)
MIXP_DEFINE_CONF(unsigned int, mixp_versionMinor, 21)
//MediaInfo Version
MIXP_DEFINE_CONF(unsigned int, mixp_miVersionMajor, 0)
MIXP_DEFINE_CONF(unsigned int, mixp_miVersionMinor, 7)
MIXP_DEFINE_CONF(unsigned int, mixp_miVersionPatch, 85)
MIXP_DEFINE_CONF(unsigned int, mixp_miVersionPatch, 88)
//MediaInfo Checksum
MIXP_DEFINE_CONF(char*, mixp_checksum_x86, "b5a8498b6e1f1c9c936d17e5ced250b6aceca92010f224eccef8e211207f205b056c9b9982c2ed3b176c6b723a10f91c24803f9087cc75c829a97b3adb27d58b")
MIXP_DEFINE_CONF(char*, mixp_checksum_x64, "1bce101bc88b874de57da929657a17a43785da777a0a77c95e8b5ec24c9c1f25db58ec1e53bcb9476c537f455c7eafeb0ac61b3b8d1d271157afb2633c54764f")
MIXP_DEFINE_CONF(char*, mixp_checksum_x86, "dc71f09a6208c04834964291c0ce848ac9fffcb897572531a466db6cca6e9f10c4c07c94d9c80e91a6e44a1c2cd07a1f29b1c4aaf12449380f2d2a9ea31b1918")
MIXP_DEFINE_CONF(char*, mixp_checksum_x64, "e25beee185c5a1cfb14cb3b3f561ef10634983f3b90653ec8221891b9ac81be74e57e6239766d68d6b57baa4ae81a2e8bfc1c8136a2196d44037eeb613602d2a")
//Build date
MIXP_DEFINE_CONF(char*, mixp_buildDate, __DATE__)