Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b67dc3aa1a | |||
|
|
33a07a19c2 | ||
| 25fb75ae0b | |||
| c9d5fd80ce | |||
|
|
8a445cc507 | ||
| f20364b25f | |||
|
|
b191779fde | ||
| 7425a18241 | |||
| 25ed431d5a |
@@ -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
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "0.0.10"
|
||||
".": "0.0.12"
|
||||
}
|
||||
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,5 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.12 (2026-03-01)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fix: glaube ich net
|
||||
|
||||
### Chores
|
||||
|
||||
* chore: update manifest for v0.0.11
|
||||
|
||||
|
||||
## 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
|
||||
|
||||
@@ -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.12.0</AssemblyVersion>
|
||||
<FileVersion>0.0.12.0</FileVersion>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
@@ -14,10 +14,10 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Jellyfin.Controller" Version="10.11.*">
|
||||
<PackageReference Include="Jellyfin.Controller" Version="10.11.0">
|
||||
<ExcludeAssets>runtime</ExcludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Jellyfin.Model" Version="10.11.*">
|
||||
<PackageReference Include="Jellyfin.Model" Version="10.11.0">
|
||||
<ExcludeAssets>runtime</ExcludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="LiteDB" Version="5.0.21" />
|
||||
|
||||
@@ -8,6 +8,14 @@
|
||||
"category": "Notifications",
|
||||
"imageUrl": "",
|
||||
"versions": [
|
||||
{
|
||||
"version": "0.0.11.0",
|
||||
"changelog": "### Bug Fixes\n\n* fix: claude ist auch für 100€ im Monat noch dumm",
|
||||
"targetAbi": "10.11.0.0",
|
||||
"sourceUrl": "https://git.tdpi.dev/TDPI/jellyfin-plugin-smartnotify/releases/download/v0.0.11/smartnotify_0.0.11.zip",
|
||||
"checksum": "e71374a93cc8a9bf6e43b561f89f062e",
|
||||
"timestamp": "2026-03-01T16:47:14Z"
|
||||
},
|
||||
{
|
||||
"version": "0.0.9.0",
|
||||
"changelog": "### Bug Fixes\n\n* fix: angeblich..\n\n### Chores\n\n* chore: update manifest for v0.0.8",
|
||||
|
||||
Reference in New Issue
Block a user