5.4.9.0
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
5.4.9.0 Beta (2021-05-??)
|
5.4.9.0 (2021-05-29)
|
||||||
=========================
|
====================
|
||||||
|
|
||||||
- `window-scale 1` does not work correctly in mpv,
|
- `window-scale 1` does not work correctly in mpv,
|
||||||
so I've removed support for it and added my own implementation:
|
so I've removed support for it and added my own implementation:
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("5.4.8.9")]
|
[assembly: AssemblyVersion("5.4.9.0")]
|
||||||
[assembly: AssemblyFileVersion("5.4.8.9")]
|
[assembly: AssemblyFileVersion("5.4.9.0")]
|
||||||
|
|||||||
@@ -37,27 +37,19 @@ if ($versionInfo.FilePrivatePart -eq 0)
|
|||||||
Copy-Item $PSScriptRoot\bin $targetDir -Recurse -Exclude 'System.Management.Automation.xml', 'settings-directory.txt'
|
Copy-Item $PSScriptRoot\bin $targetDir -Recurse -Exclude 'System.Management.Automation.xml', 'settings-directory.txt'
|
||||||
& $7z a -tzip -mx9 "$targetDir.zip" -r "$targetDir\*"
|
& $7z a -tzip -mx9 "$targetDir.zip" -r "$targetDir\*"
|
||||||
if ($LastExitCode) { throw $LastExitCode }
|
if ($LastExitCode) { throw $LastExitCode }
|
||||||
|
|
||||||
Set-Clipboard ($versionInfo.FileVersion + "`n`nChangelog:`n`n" +
|
|
||||||
'https://github.com/stax76/mpv.net/blob/master/Changelog.md' + "`n`nDownload:`n`n" +
|
|
||||||
'https://github.com/stax76/mpv.net/blob/master/Manual.md#stable')
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$targetDir = "$tmpDir\mpv.net-$($versionInfo.FileVersion)-portable-beta"
|
$targetDir = "$tmpDir\mpv.net-$($versionInfo.FileVersion)-portable-beta"
|
||||||
Copy-Item $PSScriptRoot\bin $targetDir -Recurse -Exclude 'System.Management.Automation.xml', 'settings-directory.txt'
|
Copy-Item $PSScriptRoot\bin $targetDir -Recurse -Exclude 'System.Management.Automation.xml', 'settings-directory.txt'
|
||||||
& $7z a -t7z -mx9 "$targetDir.7z" -r "$targetDir\*"
|
& $7z a -tzip -mx9 "$targetDir.zip" -r "$targetDir\*"
|
||||||
if ($LastExitCode) { throw $LastExitCode }
|
if ($LastExitCode) { throw $LastExitCode }
|
||||||
UploadBeta "$targetDir.7z"
|
UploadBeta "$targetDir.zip"
|
||||||
|
|
||||||
foreach ($cloudDirectory in $cloudDirectories)
|
foreach ($cloudDirectory in $cloudDirectories)
|
||||||
{
|
{
|
||||||
Invoke-Item $cloudDirectory
|
Invoke-Item $cloudDirectory
|
||||||
}
|
}
|
||||||
|
|
||||||
Set-Clipboard ($versionInfo.FileVersion + " Beta`n`nChangelog:`n`n" +
|
|
||||||
'https://github.com/stax76/mpv.net/blob/master/Changelog.md' + "`n`nDownload:`n`n" +
|
|
||||||
'https://github.com/stax76/mpv.net/blob/master/Manual.md#beta')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host 'successfully finished' -ForegroundColor Green
|
Write-Host 'successfully finished' -ForegroundColor Green
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|||||||
|
|
||||||
[Files]
|
[Files]
|
||||||
Source: "{#MyAppSourceDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "{#MyAppSourceDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
Source: "{#MyAppSourceDir}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs;
|
Source: "{#MyAppSourceDir}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs; Excludes: "System.Management.Automation.xml,settings-directory.txt"
|
||||||
|
|
||||||
[UninstallRun]
|
[UninstallRun]
|
||||||
Filename: "powershell.exe"; Flags: runhidden; Parameters: "-NoProfile -ExecutionPolicy Bypass -File ""{app}\Setup\remove file associations.ps1"""
|
Filename: "powershell.exe"; Flags: runhidden; Parameters: "-NoProfile -ExecutionPolicy Bypass -File ""{app}\Setup\remove file associations.ps1"""
|
||||||
|
|||||||
Reference in New Issue
Block a user