4 Commits

Author SHA1 Message Date
047dd82f3f Merge pull request 'chore(main): release 0.0.18' (#19) from release-please--branches--main into main
All checks were successful
Create Release PR / Create Release PR (push) Has been skipped
Build and Publish Plugin / Build Plugin + Update Manifest (release) Successful in 43s
Reviewed-on: #19
2026-03-03 14:53:02 +01:00
Gitea Actions
76fb874b4d chore(main): release 0.0.18
All checks were successful
Create Release / Publish Release (pull_request) Successful in 7s
2026-03-03 13:51:42 +00:00
7fadc75c84 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 17s
2026-03-03 14:51:20 +01:00
d595b16573 fix: build error 2026-03-03 14:51:18 +01:00
4 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
{
".": "0.0.17"
".": "0.0.18"
}

View File

@@ -1,5 +1,12 @@
# Changelog
## 0.0.18 (2026-03-03)
### Bug Fixes
* fix: build error
## 0.0.17 (2026-03-03)
### Bug Fixes

View File

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

View File

@@ -4,13 +4,13 @@ using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using System.Timers;
using Jellyfin.Data.Enums;
using Jellyfin.Plugin.SmartNotify.Services;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Querying;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Timer = System.Timers.Timer;