ci: prepare for release.
This commit is contained in:
parent
1aeb4d3cff
commit
2f07efd215
3 changed files with 13 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
name: Smart Playlist
|
name: Smart Playlist
|
||||||
guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df
|
guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df
|
||||||
version: 0.5.0.0
|
version: 0.5.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,16 @@ artifacts:
|
||||||
- jellyfin-smart-playlist.dll
|
- jellyfin-smart-playlist.dll
|
||||||
- YamlDotNet.dll
|
- YamlDotNet.dll
|
||||||
changelog: |
|
changelog: |
|
||||||
|
## v0.5.1.0
|
||||||
|
- Add multiple new functions:
|
||||||
|
- `length` computes the length of a list
|
||||||
|
- `split` splits off n elements of the given list `(split '(1 2 3 4 5) 3) -> ((1 2 3) 4 5)`
|
||||||
|
- `reverse` reverses a list
|
||||||
|
|
||||||
|
**Fixes**:
|
||||||
|
- The configuration can now be updated again.
|
||||||
|
The relevant code got lost during the smart collection restructuring.
|
||||||
|
|
||||||
## v0.5.0.0
|
## v0.5.0.0
|
||||||
- Add support for collections
|
- Add support for collections
|
||||||
- Add a playground to test lisp code, the playground has
|
- Add a playground to test lisp code, the playground has
|
||||||
|
|
|
@ -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.5.0.0</Version>
|
<Version>0.5.1.0</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -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.5.0.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.5.0.0).
|
The latest version is [v0.5.1.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.5.1.0).
|
||||||
|
|
||||||
![configuration page](config.png)
|
![configuration page](config.png)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue