ci: prepare release 0.4.1.0.

This commit is contained in:
redxef 2025-01-16 23:35:25 +01:00
parent 111faaf126
commit a89b4606c5
Signed by: redxef
GPG key ID: 7DAC3AA211CBD921
3 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,6 @@
name: Smart Playlist name: Smart Playlist
guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df
version: 0.4.0.0 version: 0.4.1.0
targetAbi: 10.10.3.0 targetAbi: 10.10.3.0
framework: net8.0 framework: net8.0
owner: redxef owner: redxef
@ -14,6 +14,12 @@ artifacts:
- jellyfin-smart-playlist.dll - jellyfin-smart-playlist.dll
- YamlDotNet.dll - YamlDotNet.dll
changelog: | changelog: |
## v0.4.1.0
- improve defaults for new playlists
**Fixes**:
- finally get th percentage indicator of the scheduled task right
## v0.4.0.0 ## v0.4.0.0
- Add a basic UI to configure the playlists. - Add a basic UI to configure the playlists.
- It's now possible to print log messages to the jellyfin log by calling `logd`, `logi`, `logw` or `loge` - It's now possible to print log messages to the jellyfin log by calling `logd`, `logi`, `logw` or `loge`
@ -38,7 +44,6 @@ changelog: |
- A program no longer has to be a list, `t` is a valid program. - A program no longer has to be a list, `t` is a valid program.
- Fix list parsing in cases where a space was before the closing parenthesis. - Fix list parsing in cases where a space was before the closing parenthesis.
## v0.3.0.0 ## v0.3.0.0
- Add a second program (`SortProgram`) which is run after the filtering, this - Add a second program (`SortProgram`) which is run after the filtering, this
program should return the list of items, but in the order in which they should appear in program should return the list of items, but in the order in which they should appear in

View file

@ -5,7 +5,7 @@
<RootNamespace>Jellyfin.Plugin.SmartPlaylist</RootNamespace> <RootNamespace>Jellyfin.Plugin.SmartPlaylist</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Version>0.4.0.0</Version> <Version>0.4.1.0</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -5,7 +5,7 @@ Smart playlists with Lisp filter engine.
This readme contains instructions for the most recent changes in This readme contains instructions for the most recent changes in
the development branch (`main`). To view the file appropriate the development branch (`main`). To view the file appropriate
for your version select the tag corresponding to your version. for your version select the tag corresponding to your version.
The latest version is [v0.4.0.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.4.0.0). The latest version is [v0.4.1.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.4.1.0).
![configuration page](config.png) ![configuration page](config.png)