Skip to content

Commit

Permalink
updated manifest & version
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacro59 committed Nov 5, 2021
1 parent e0b49f0 commit 8b6bd4b
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
20 changes: 19 additions & 1 deletion build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,25 @@ param(
)


$PlaynitePath = "D:\Playnite_dev"
$PlaynitePathTEMP = "C:\Playnite_dev"
if (Test-Path -Path $PlaynitePathTEMP)
{
$PlaynitePath = $PlaynitePathTEMP
}

$PlaynitePathTEMP = "D:\Playnite_dev"
if (Test-Path -Path $PlaynitePathTEMP)
{
$PlaynitePath = $PlaynitePathTEMP
}

$PlaynitePathTEMP = "G:\Playnite_dev"
if (Test-Path -Path $PlaynitePathTEMP)
{
$PlaynitePath = $PlaynitePathTEMP
}


$ToolboxPath = (Join-Path $PlaynitePath "toolbox.exe")
$OutDirPath = (Join-Path $OutDir "..")

Expand Down
8 changes: 8 additions & 0 deletions manifest/Lacro59_GameActivity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,12 @@ Packages:
PackageUrl: https://github.com/Lacro59/playnite-gameactivity-plugin/releases/download/v2.1.1/playnite-gameactivity-plugin_2_1_1.pext
Changelog:
- Playnite 9 version (not compatible with Playnite 8)
- Fixed a crash
- Version: 2.1.2
RequiredApiVersion: 6.1.0
ReleaseDate: 2021-11-05
PackageUrl: https://github.com/Lacro59/playnite-gameactivity-plugin/releases/download/v2.1.2/playnite-gameactivity-plugin_2_1_2.pext
Changelog:
- Improved performances
- Fixed many bugs
- Fixed a crash
2 changes: 1 addition & 1 deletion source/extension.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Id: playnite-gameactivity-plugin
Name: GameActivity
Author: Lacro59
Version: 2.1.1
Version: 2.1.2
Module: GameActivity.dll
Type: GenericPlugin
Icon: icon.png
Expand Down
2 changes: 1 addition & 1 deletion source/playnite-plugincommon

0 comments on commit 8b6bd4b

Please sign in to comment.