Skip to content

Commit

Permalink
Release 4.21
Browse files Browse the repository at this point in the history
  • Loading branch information
JosefNemec committed May 21, 2018
1 parent f139e4b commit 1ff4789
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if ($Setup)
$installerTempScript = "setup.temp.nsi"

$buildNumber = (Get-ChildItem (Join-Path $OutputPath "PlayniteUI.exe")).VersionInfo.ProductVersion
$buildNumber = $buildNumber -replace "\.0\.0", ""
$buildNumber = $buildNumber -replace "\.0\.\d+$", ""

$scriptContent = Get-Content $installerScript
$files = Get-ChildItem $OutputPath -Recurse
Expand Down
4 changes: 2 additions & 2 deletions source/PlayniteUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
Expand Down Expand Up @@ -51,4 +51,4 @@
// 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("4.2.0.*")]
[assembly: AssemblyVersion("4.21.0.*")]
34 changes: 34 additions & 0 deletions web/update/4.21.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<html lang="en">
<head>
<style type="text/css">
body {
font-family: Trebuchet MS;
font-size: 12;
color: #f2f2f2;
margin: 0px;
padding: 0px;
}

ul {
margin-top: 0px;
margin-bottom: 0px;
}

</style>
</head>
<body>
<ul>
<li>New: Super Nintendo and Wii U/Switch Pro Controller fullscreen buttons</li>
<li>New: Menu option to install scripts extensions</li>
<li>New: Added definition for D-Fend Reloaded</li>
<li>Fix: Updated RetroArch profiles</li>
<li>Fix: Some non-EA Origin games have invalid Play action</li>
<li>Fix: Metadata download fails sometimes</li>
<li>Fix: Game selection highlighting not working properly in Fullscreen mode</li>
<li>Fix: Detection if the game is running not working properly sometimes</li>
<li>Fix: Crash when switching to fullscreen while downloading metadata</li>
<li>Fix: Crash related to gamepad handling</li>

</ul>
</body>
</html>
10 changes: 7 additions & 3 deletions web/update/update.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"stable": {
"version": "4.2",
"url": "http://playnite.cz/update/4.2/PlayniteInstaller.exe",
"url2": "https://github.com/JosefNemec/Playnite/releases/download/4.2/PlayniteInstaller.exe",
"version": "4.21",
"url": "http://playnite.cz/update/4.21/PlayniteInstaller.exe",
"url2": "https://github.com/JosefNemec/Playnite/releases/download/4.21/PlayniteInstaller.exe",
"notesUrlRoot": "http://playnite.cz/update/",
"releases": [
{
"version": "4.21",
"file": "4.21.html"
},
{
"version": "4.2",
"file": "4.2.html"
Expand Down

0 comments on commit 1ff4789

Please sign in to comment.