Skip to content

Commit 8844d15

Browse files
committed
Fix ARM64 installer version
Signed-off-by: Maxime Gervais <[email protected]>
1 parent 60713c7 commit 8844d15

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Release/Build_DLL_Windows.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ $version = (Get-Content "${release_directory}\..\Project\version.txt" -Raw).Trim
1616
#-----------------------------------------------------------------------
1717
# Cleanup
1818
Push-Location -Path "${release_directory}\..\..\zlib\contrib\vstudio\vc17"
19-
MSBuild "/p:Configuration=Release;Platform=${arch} /t:Clean"
20-
MSBuild "/p:Configuration=Debug;Platform=${arch} /t:Clean"
19+
MSBuild "/p:Configuration=Release;Platform=${arch}" "/t:Clean"
20+
MSBuild "/p:Configuration=Debug;Platform=${arch}" "/t:Clean"
2121
Pop-Location
2222

2323
Push-Location -Path "${release_directory}\..\..\ZenLib\Project\MSVC2022\Library"
24-
MSBuild "/p:Configuration=Release;Platform=${arch} /t:Clean"
25-
MSBuild "/p:Configuration=Debug;Platform=${arch} /t:Clean"
24+
MSBuild "/p:Configuration=Release;Platform=${arch}" "/t:Clean"
25+
MSBuild "/p:Configuration=Debug;Platform=${arch}" "/t:Clean"
2626
Pop-Location
2727

2828
Push-Location -Path "${release_directory}\..\Project\MSVC2022"
29-
MSBuild "/p:Configuration=Release;Platform=${arch} /t:Clean"
30-
MSBuild "/p:Configuration=Debug;Platform=${arch} /t:Clean"
29+
MSBuild "/p:Configuration=Release;Platform=${arch}" "/t:Clean"
30+
MSBuild "/p:Configuration=Debug;Platform=${arch}" "/t:Clean"
3131
Pop-Location
3232

3333
#-----------------------------------------------------------------------

Source/Install/MediaInfo_DLL_Windows_ARM64.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RequestExecutionLevel admin
44
; Some defines
55
!define PRODUCT_NAME "MediaInfo"
66
!define PRODUCT_PUBLISHER "MediaArea.net"
7-
!define PRODUCT_VERSION "24.11"
7+
!define PRODUCT_VERSION "25.10"
88
!define PRODUCT_VERSION4 "${PRODUCT_VERSION}.0.0"
99
!define PRODUCT_WEB_SITE "http://MediaArea.net/MediaInfo"
1010
!define COMPANY_REGISTRY "Software\MediaArea.net"

0 commit comments

Comments
 (0)