4 Commits

Author SHA1 Message Date
f20364b25f Merge pull request 'chore(main): release 0.0.11' (#12) from release-please--branches--main into main
All checks were successful
Build and Publish Plugin / Build Plugin + Update Manifest (release) Successful in 47s
Create Release PR / Create Release PR (push) Has been skipped
Reviewed-on: #12
2026-03-01 17:46:20 +01:00
Gitea Actions
b191779fde chore(main): release 0.0.11
All checks were successful
Create Release / Publish Release (pull_request) Successful in 8s
2026-03-01 16:46:08 +00:00
7425a18241 Merge branch 'main' of https://git.tdpi.dev/TDPI/jellyfin-plugin-smartnotify
All checks were successful
Create Release PR / Create Release PR (push) Successful in 16s
2026-03-01 17:45:51 +01:00
25ed431d5a fix: claude ist auch für 100€ im Monat noch dumm 2026-03-01 17:45:49 +01:00
4 changed files with 19 additions and 12 deletions

View File

@@ -37,24 +37,24 @@ jobs:
echo "TAG=$TAG" >> "$GITHUB_ENV"
- name: Install JPRM
run: pip install jprm
run: |
pip install jprm
mkdir -p ./artifacts
- name: Build plugin with JPRM
run: |
jprm --verbosity=debug plugin build Jellyfin.Plugin.SmartNotify \
ARTIFACT="$(jprm --verbosity=debug plugin build . \
--dotnet-framework="net9.0" \
--version="${VERSION}.0" \
--output=./artifacts
- name: Prepare artifact
run: |
# Find the ZIP that JPRM created
ARTIFACT=$(ls artifacts/*.zip | head -1)
-v "${VERSION}.0" \
--dotnet-configuration Release \
-o ./artifacts)"
echo "ARTIFACT=$ARTIFACT" >> "$GITHUB_ENV"
cp "$ARTIFACT" "smartnotify_${VERSION}.zip"
# Calculate MD5 checksum
CHECKSUM=$(md5sum "smartnotify_${VERSION}.zip" | cut -d' ' -f1)
echo "CHECKSUM=$CHECKSUM" >> "$GITHUB_ENV"
echo "Artifact: $ARTIFACT"
echo "Checksum: $CHECKSUM"
- name: Upload ZIP to Release

View File

@@ -1,3 +1,3 @@
{
".": "0.0.10"
".": "0.0.11"
}

View File

@@ -1,5 +1,12 @@
# Changelog
## 0.0.11 (2026-03-01)
### Bug Fixes
* fix: claude ist auch für 100€ im Monat noch dumm
## 0.0.10 (2026-03-01)
### Bug Fixes

View File

@@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.SmartNotify</RootNamespace>
<AssemblyVersion>0.0.10.0</AssemblyVersion>
<FileVersion>0.0.10.0</FileVersion>
<AssemblyVersion>0.0.11.0</AssemblyVersion>
<FileVersion>0.0.11.0</FileVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>