From 61478095ea37be629af5ee20bf36ea1cfadb9572 Mon Sep 17 00:00:00 2001 From: redxef Date: Fri, 8 Nov 2024 20:38:28 +0100 Subject: [PATCH] ci: prepare release. --- Jellyfin.Plugin.SmartPlaylist/build.yaml | 17 +++++++++++++++-- .../jellyfin-smart-playlist.csproj | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Jellyfin.Plugin.SmartPlaylist/build.yaml b/Jellyfin.Plugin.SmartPlaylist/build.yaml index 24a6356..927e3ab 100644 --- a/Jellyfin.Plugin.SmartPlaylist/build.yaml +++ b/Jellyfin.Plugin.SmartPlaylist/build.yaml @@ -1,6 +1,6 @@ name: Smart Playlist guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df -version: 0.1.1.0 +version: 0.2.0.0 targetAbi: 10.10.0.0 framework: net8.0 owner: redxef @@ -14,5 +14,18 @@ artifacts: - jellyfin-smart-playlist.dll - YamlDotNet.dll changelog: | - - Switch to yaml loading. + ## v0.2.0.0 + - Switch to yaml loading, old json files are still accepted + - Rework lisp interpreter to be more conventional + - Use arbitrary strings as ids for playlists + - Add configuration page with some default definitions for + the filter expressions. + + **Breaking Changes:** + - The lisp interpreter will no only detect strings in double quotes (`"`). + - The interpreter will also not allow specifying lists without quoting them. + `(1 2 3)` ... used to work but will no longer, replace by either specifying + the list as `(list 1 2 3)` or (quote (1 2 3)). + + ## v0.1.1.0 - Initial Alpha release. diff --git a/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj b/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj index 6610b40..b70d5a8 100644 --- a/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj +++ b/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj @@ -5,7 +5,7 @@ Jellyfin.Plugin.SmartPlaylist enable enable - 0.1.1.0 + 0.2.0.0