From b06a02a566674e1593baafb95e31a702c19ef119 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Tue, 28 Feb 2023 01:53:19 +0800 Subject: [PATCH] Release v0.12.0 --- CHANGELOG.md | 2 +- extension.yaml | 2 +- manifest.yaml | 17 +++++++++++++++++ src/LudusaviPlaynite.cs | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f77121..40a05a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## v0.12.0 (2023-02-28) * Added: * An option to automatically tag games with backups. This requires Ludusavi 0.14.0 or newer. diff --git a/extension.yaml b/extension.yaml index bbe9dea..84d3271 100644 --- a/extension.yaml +++ b/extension.yaml @@ -1,7 +1,7 @@ Id: mtkennerly.ludusavi Name: Ludusavi Author: Matthew T. Kennerly -Version: 0.11.1 +Version: 0.12.0 Module: LudusaviPlaynite.dll Type: GenericPlugin Icon: icon.png diff --git a/manifest.yaml b/manifest.yaml index 65a1464..7afa6c5 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,5 +1,22 @@ AddonId: mtkennerly.ludusavi Packages: + - Version: 0.12.0 + RequiredApiVersion: 6.0.0 + ReleaseDate: 2023-02-28 + PackageUrl: https://github.com/mtkennerly/ludusavi-playnite/releases/download/v0.12.0/ludusavi-playnite-v0.12.0.pext + Changelog: + - >- + Added: An option to automatically tag games with backups. This requires Ludusavi 0.14.0 or newer. + - >- + Added: An option to look up games under a different name. + This allows you to resolve Playnite/Ludusavi naming discrepancies without creating a custom entry in Ludusavi. + Right now, this is simply a text box where you can enter the desired lookup name. + Once Ludusavi 0.16.0 is released, it will allow the plugin to show a searchable list of Ludusavi's known titles. + - >- + Fixed: Games could not be backed up if they had Unicode characters in their title (e.g., "Ninja Gaiden Σ"). + - >- + Fixed: With older versions of Ludusavi, the plugin would report that there was nothing new to back up, + even if it did make a new backup. - Version: 0.11.1 RequiredApiVersion: 6.0.0 ReleaseDate: 2022-11-16 diff --git a/src/LudusaviPlaynite.cs b/src/LudusaviPlaynite.cs index 3ade496..6a086fe 100644 --- a/src/LudusaviPlaynite.cs +++ b/src/LudusaviPlaynite.cs @@ -19,7 +19,7 @@ namespace LudusaviPlaynite { public class LudusaviPlaynite : GenericPlugin { - private readonly Version RECOMMENDED_APP_VERSION = new Version(0, 14, 0); + private readonly Version RECOMMENDED_APP_VERSION = new Version(0, 15, 2); private const string TAG_PREFIX = "[Ludusavi] ";