diff --git a/docs/Changelog.md b/docs/Changelog.md index f1024d5..cceee94 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -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, so I've removed support for it and added my own implementation: diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs index d8a0f3c..a153dc7 100644 --- a/src/Properties/AssemblyInfo.cs +++ b/src/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.4.8.9")] -[assembly: AssemblyFileVersion("5.4.8.9")] +[assembly: AssemblyVersion("5.4.9.0")] +[assembly: AssemblyFileVersion("5.4.9.0")] diff --git a/src/Release.ps1 b/src/Release.ps1 index e86b013..58ffbde 100644 --- a/src/Release.ps1 +++ b/src/Release.ps1 @@ -37,27 +37,19 @@ if ($versionInfo.FilePrivatePart -eq 0) Copy-Item $PSScriptRoot\bin $targetDir -Recurse -Exclude 'System.Management.Automation.xml', 'settings-directory.txt' & $7z a -tzip -mx9 "$targetDir.zip" -r "$targetDir\*" 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 { $targetDir = "$tmpDir\mpv.net-$($versionInfo.FileVersion)-portable-beta" 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 } - UploadBeta "$targetDir.7z" + UploadBeta "$targetDir.zip" foreach ($cloudDirectory in $cloudDirectories) { 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 diff --git a/src/Setup.iss b/src/Setup.iss index fff5598..fd75043 100644 --- a/src/Setup.iss +++ b/src/Setup.iss @@ -23,7 +23,7 @@ Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" [Files] 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] Filename: "powershell.exe"; Flags: runhidden; Parameters: "-NoProfile -ExecutionPolicy Bypass -File ""{app}\Setup\remove file associations.ps1"""