Skip to content

Commit b089325

Browse files
Merge pull request #992 from g-maxime/preparing-v24.12
Preparing v24.12
2 parents f41892d + 3d67dca commit b089325

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+182
-157
lines changed

History_CLI.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ Known bugs
1212
- Languages (other than english and French) : not all words are translated, I need translators!
1313
- Others? https://sourceforge.net/p/mediainfo/_list/tickets
1414

15+
Version 24.12, 2024-12-10
16+
-------------
17+
+ Windows: native ARM64 build
18+
+ AVC: Chroma Subsampling Position
19+
+ PNG: adapt cLLi/mdCv letter case due to spec draft update
20+
+ Windows: enforce more security compilation flags (thanks to cjee21)
21+
x RIFF: fix bad seek in big chunks e.g. aXML with odd size
22+
x ADM: fix buffer over-read
23+
x FFV1: MaxSliceCount was not in XML or JSON report
24+
1525
Version 24.11, 2024-11-07
1626
-------------
1727
+ I1945, PAC subtitle format support

History_GUI.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,21 @@ Known bugs
1212
- Languages (other than english and French) : not all words are translated, I need translators!
1313
- Others? https://sourceforge.net/p/mediainfo/_list/tickets
1414

15+
Version 24.12, 2024-12-10
16+
-------------
17+
+ Windows: Windows Explorer context menu and tooltip on Windows 11 (thanks to cjee21)
18+
+ Windows: native ARM64 library for an overall improved performance (thanks to cjee21)
19+
+ Windows: implement signing of uninstaller (thanks to cjee21)
20+
+ Windows: add legacy stream display option (thanks to cjee21)
21+
+ Windows: ARM64X DLL is available separately
22+
+ AVC: Chroma Subsampling Position
23+
+ PNG: adapt cLLi/mdCv letter case due to spec draft update
24+
+ Windows: enforce more security compilation flags (thanks to cjee21)
25+
x Windows: text output is editable again (thanks to cjee21)
26+
x RIFF: fix bad seek in big chunks e.g. aXML with odd size
27+
x ADM: fix buffer over-read
28+
x FFV1: MaxSliceCount was not in XML or JSON report
29+
1530
Version 24.11, 2024-11-07
1631
-------------
1732
+ New Indonesian (bahasa Indonesia) translation

Project/AppImage/Recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if ! grep "CentOS release 6\..*" /etc/centos-release; then
4747
fi
4848

4949
# Setup environment
50-
VERSION=24.11
50+
VERSION=24.12
5151

5252
if [ "$(arch)" == "i386" ]; then
5353
ARCH="i686"

Project/BCB/GUI/MediaInfo_GUI.cbproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@
7777
</PropertyGroup>
7878
<PropertyGroup Condition="'$(Base)'!=''">
7979
<Defines>MEDIAINFO_DLL_RUNTIME;$(Defines)</Defines>
80-
<VerInfo_Keys>CompanyName=MediaArea.net;FileDescription=MediaInfo;FileVersion=24.11.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=MediaInfo;ProductVersion=24.11.0.0;Comments=</VerInfo_Keys>
80+
<VerInfo_Keys>CompanyName=MediaArea.net;FileDescription=MediaInfo;FileVersion=24.12.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=MediaInfo;ProductVersion=24.12.0.0;Comments=</VerInfo_Keys>
8181
<Manifest_File>None</Manifest_File>
8282
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
83-
<VerInfo_MinorVer>11</VerInfo_MinorVer>
83+
<VerInfo_MinorVer>12</VerInfo_MinorVer>
8484
<VerInfo_Release>0</VerInfo_Release>
8585
<VerInfo_MajorVer>24</VerInfo_MajorVer>
8686
<VerInfo_Locale>1033</VerInfo_Locale>

Project/GNU/CLI/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dnl #########################################################################
55
dnl -------------------------------------------------------------------------
66
dnl Name and version
77
dnl
8-
AC_INIT([mediainfo], [24.11])
8+
AC_INIT([mediainfo], [24.12])
99

1010
dnl -------------------------------------------------------------------------
1111
dnl Test if we are at the good place

Project/GNU/GUI/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dnl #########################################################################
55
dnl -------------------------------------------------------------------------
66
dnl Name and version
77
dnl
8-
AC_INIT([mediainfo-gui], [24.11])
8+
AC_INIT([mediainfo-gui], [24.12])
99

1010
dnl -------------------------------------------------------------------------
1111
dnl Test if we are at the good place

Project/GNU/GUI/mediainfo-gui.metainfo.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@
102102
<update_contact>[email protected]</update_contact>
103103
<developer_name>MediaArea.net SARL</developer_name>
104104
<releases>
105-
<release version="24.11" date="2024-11-07">
105+
<release version="24.12" date="2024-12-10">
106106
<description>
107-
<p>Update to MediaInfo library 24.11 with bug fixes.</p>
107+
<p>Update to MediaInfo library 24.12 with bug fixes.</p>
108108
</description>
109109
</release>
110110
​</releases>

Project/GNU/PKGBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Contributor: hydro <[email protected]>
44

55
pkgname=('mediainfo' 'mediainfo-gui')
6-
pkgver=24.11
6+
pkgver=24.12
77
pkgrel=1
88
pkgdesc="supplies technical and tag information about a video or audio file"
99
url="http://mediaarea.net"
@@ -12,7 +12,7 @@ source=(${pkgname}_${pkgver}.orig.tar.xz)
1212
md5sums=('00000000000000000000000000000000')
1313
arch=('i686' 'x86_64')
1414

15-
depends=('libzen>=0.4.41' 'libmediainfo>=24.11' 'wxwidgets-gtk3' 'webkit2gtk' 'bubblewrap' 'libsm' 'desktop-file-utils')
15+
depends=('libzen>=0.4.41' 'libmediainfo>=24.12' 'wxwidgets-gtk3' 'webkit2gtk' 'bubblewrap' 'libsm' 'desktop-file-utils')
1616

1717
prepare() {
1818
cd "${srcdir}"/MediaInfo/Project/GNU/CLI

Project/GNU/mediainfo.dsc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ Format: 3.0 (quilt)
22
Source: mediainfo
33
Binary: mediainfo, mediainfo-dbg, mediainfo-gui, mediainfo-gui-dbg
44
Architecture: any
5-
Version: 24.11-1
5+
Version: 24.12-1
66
Maintainer: MediaArea.net SARL <[email protected]>
77
Homepage: http://MediaArea.net/MediaInfo
88
Standards-Version: 3.9.6
99
Vcs-Browser: https://github.com/MediaArea/MediaInfo
1010
Vcs-Git: https://github.com/MediaArea/MediaInfo.git
11-
Build-Depends: debhelper (>= 9), dh-autoreconf, libmediainfo-dev (>= 24.11), libzen-dev (>= 0.4.41), libwxgtk3.0-dev, zlib1g-dev, pkg-config
11+
Build-Depends: debhelper (>= 9), dh-autoreconf, libmediainfo-dev (>= 24.12), libzen-dev (>= 0.4.41), libwxgtk3.0-dev, zlib1g-dev, pkg-config
1212
Package-List:
1313
mediainfo deb utils optional arch=any
1414
mediainfo-gui deb utils optional arch=any
1515
Checksums-Sha1:
16-
0000000000000000000000000000000000000000 000000 mediainfo_24.11.orig.tar.xz
17-
0000000000000000000000000000000000000000 000000 mediainfo_24.11-1.debian.tar.xz
16+
0000000000000000000000000000000000000000 000000 mediainfo_24.12.orig.tar.xz
17+
0000000000000000000000000000000000000000 000000 mediainfo_24.12-1.debian.tar.xz
1818
Checksums-Sha256:
19-
0000000000000000000000000000000000000000000000000000000000000000 000000 mediainfo_24.11.orig.tar.xz
20-
0000000000000000000000000000000000000000000000000000000000000000 000000 mediainfo_24.11-1.debian.tar.xz
19+
0000000000000000000000000000000000000000000000000000000000000000 000000 mediainfo_24.12.orig.tar.xz
20+
0000000000000000000000000000000000000000000000000000000000000000 000000 mediainfo_24.12-1.debian.tar.xz
2121
Files:
22-
00000000000000000000000000000000 000000 mediainfo_24.11.orig.tar.xz
23-
00000000000000000000000000000000 000000 mediainfo_24.11-1.debian.tar.xz
22+
00000000000000000000000000000000 000000 mediainfo_24.12.orig.tar.xz
23+
00000000000000000000000000000000 000000 mediainfo_24.12-1.debian.tar.xz

Project/GNU/mediainfo.spec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
%global mediainfo_version 24.11
1+
%global mediainfo_version 24.12
22
%global mediainfo_version_major 24
3-
%global mediainfo_version_minor 11
4-
%global libmediainfo_version 24.11
3+
%global mediainfo_version_minor 12
4+
%global libmediainfo_version 24.12
55
%global libmediainfo_version_major 24
6-
%global libmediainfo_version_minor 11
6+
%global libmediainfo_version_minor 12
77
%global libzen_version 0.4.41
88
%global libzen_version_major 0
99
%global libzen_version_minor 4

0 commit comments

Comments
 (0)