fix: revert to dotnet 8.
The official Jellyfin builds still use it.
This commit is contained in:
parent
4aba368d3f
commit
582288d8d5
5 changed files with 10 additions and 20 deletions
|
@ -1,8 +1,8 @@
|
||||||
name: Smart Playlist
|
name: Smart Playlist
|
||||||
guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df
|
guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df
|
||||||
version: 0.6.0.0
|
version: 0.6.1.0
|
||||||
targetAbi: 10.10.7.0
|
targetAbi: 10.10.7.0
|
||||||
framework: net9.0
|
framework: net8.0
|
||||||
owner: redxef
|
owner: redxef
|
||||||
overview: Smart playlists with Lisp filter engine.
|
overview: Smart playlists with Lisp filter engine.
|
||||||
description: |
|
description: |
|
||||||
|
@ -14,16 +14,6 @@ artifacts:
|
||||||
- jellyfin-smart-playlist.dll
|
- jellyfin-smart-playlist.dll
|
||||||
- YamlDotNet.dll
|
- YamlDotNet.dll
|
||||||
changelog: |
|
changelog: |
|
||||||
## v0.6.0.0
|
## v0.6.1.0
|
||||||
- bump Jellyfin ABI version to 10.10.7
|
- revert to cotnet 8, officail Jellyfin releases
|
||||||
- upgrade to dotnet9
|
do still use it over 9
|
||||||
- allow deleting of playlists
|
|
||||||
- add input items in the lisp playground
|
|
||||||
- log failed item ids
|
|
||||||
- add log for crashing programs
|
|
||||||
|
|
||||||
**Fixes**:
|
|
||||||
- print doesn't add newline, add println for that
|
|
||||||
- don't accept invalid input silently anymore
|
|
||||||
- make the input window smaller than the program window
|
|
||||||
- fix errors in examples
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<RootNamespace>Jellyfin.Plugin.SmartPlaylist</RootNamespace>
|
<RootNamespace>Jellyfin.Plugin.SmartPlaylist</RootNamespace>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<Version>0.6.0.0</Version>
|
<Version>0.6.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.6.0.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.6.0.0).
|
The latest version is [v0.6.1.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.6.1.0).
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ else
|
||||||
cd ../Jellyfin.Plugin.SmartPlaylist/
|
cd ../Jellyfin.Plugin.SmartPlaylist/
|
||||||
dotnet build
|
dotnet build
|
||||||
)
|
)
|
||||||
cp ../Jellyfin.Plugin.SmartPlaylist/bin/Debug/net9.0/jellyfin-smart-playlist.dll ./config/plugins/jellyfin-smart-playlist/
|
cp ../Jellyfin.Plugin.SmartPlaylist/bin/Debug/net8.0/jellyfin-smart-playlist.dll ./config/plugins/jellyfin-smart-playlist/
|
||||||
fi
|
fi
|
||||||
docker pull "$JELLYFIN"
|
docker pull "$JELLYFIN"
|
||||||
docker run --rm --user "$(id -u):$(id -g)" \
|
docker run --rm --user "$(id -u):$(id -g)" \
|
||||||
|
|
|
@ -80,7 +80,7 @@ jobs:
|
||||||
- |
|
- |
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -eu
|
set -eu
|
||||||
apk add --no-cache jq git dotnet9-sdk python3 py3-pip
|
apk add --no-cache jq git dotnet8-sdk python3 py3-pip
|
||||||
pip3 install --break-system-packages jprm
|
pip3 install --break-system-packages jprm
|
||||||
cp manifest/manifest.json source/
|
cp manifest/manifest.json source/
|
||||||
(
|
(
|
||||||
|
|
Loading…
Add table
Reference in a new issue