Compare commits
58 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d2dcaee71 | ||
|
|
399b19f384 | ||
|
|
cba5bc8c95 | ||
|
|
0c97e2f4c4 | ||
|
|
631fbfb1cb | ||
|
|
5f14caeeb7 | ||
|
|
bb4d35fc00 | ||
|
|
a30729cf0b | ||
|
|
83bc5f6b1d | ||
|
|
8bcfaee22e | ||
|
|
6882922c5b | ||
|
|
35ea057110 | ||
|
|
2656606f8c | ||
|
|
024343f045 | ||
|
|
887e697a90 | ||
|
|
6e623668d5 | ||
|
|
17c60d2fb3 | ||
|
|
b4ce6a7d18 | ||
|
|
d4ec7cf31d | ||
|
|
7f01da0301 | ||
|
|
0e19769d79 | ||
|
|
0cda35f636 | ||
|
|
f8e30efe66 | ||
|
|
4160ac59ca | ||
|
|
62ebe8b293 | ||
|
|
fd891e84c1 | ||
|
|
de211d4567 | ||
|
|
dc292504b0 | ||
|
|
9cf4da92ac | ||
|
|
817b8786c8 | ||
|
|
fe7f1a30bb | ||
| 2d72c6e957 | |||
| e8c4d5a044 | |||
| 781c605e12 | |||
|
|
c712777d61 | ||
| 9755763e36 | |||
| 3d24c84c0f | |||
| 73b64c7302 | |||
| f42bba5dc3 | |||
| 8095196b1e | |||
| 41ef12d970 | |||
| c984464f78 | |||
|
|
29af8b8671 | ||
|
|
2df173de8e | ||
|
|
6ea83e777a | ||
|
|
96d847a5f8 | ||
|
|
2e6a1c9322 | ||
|
|
90e028eb3b | ||
|
|
0db833c4dc | ||
|
|
8c00a35a22 | ||
|
|
8d6d202ee9 | ||
|
|
d9a4f623a0 | ||
|
|
6d32293127 | ||
|
|
7e33cb8fb7 | ||
|
|
15d6f98427 | ||
|
|
3b1d0982e5 | ||
|
|
737e510a6c | ||
|
|
fbd77e56fd |
45
.gitea/workflows/build.yml
Normal file
45
.gitea/workflows/build.yml
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
name: '🏗️ Build Plugin'
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- dev
|
||||||
|
paths-ignore:
|
||||||
|
- '**/*.md'
|
||||||
|
- '.gitea/**'
|
||||||
|
- '.github/**'
|
||||||
|
- 'jellyfin.ruleset'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.editorconfig'
|
||||||
|
- 'LICENSE'
|
||||||
|
- 'logo.png'
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**/*.md'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v5
|
||||||
|
with:
|
||||||
|
dotnet-version: "9.x"
|
||||||
|
|
||||||
|
- name: Build Jellyfin Plugin
|
||||||
|
run: |
|
||||||
|
dotnet build Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj --configuration Release --output bin/Publish
|
||||||
|
cd bin/Publish
|
||||||
|
zip -r Jellyfin.Plugin.Seasonals.zip *
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: christopherHX/gitea-upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: plugin-build-artifact
|
||||||
|
retention-days: 5
|
||||||
|
if-no-files-found: error
|
||||||
|
path: bin/Publish/Jellyfin.Plugin.Seasonals.zip
|
||||||
45
.gitea/workflows/build_old.yaml.deprecated
Normal file
45
.gitea/workflows/build_old.yaml.deprecated
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
name: '🏗️ Build Plugin'
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- '**/*.md'
|
||||||
|
- '.gitea/**'
|
||||||
|
- '.github/**'
|
||||||
|
- 'jellyfin.ruleset'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.editorconfig'
|
||||||
|
- 'LICENSE'
|
||||||
|
- 'logo.png'
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**/*.md'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
PIP_BREAK_SYSTEM_PACKAGES: "1"
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v5
|
||||||
|
with:
|
||||||
|
dotnet-version: "9.x"
|
||||||
|
|
||||||
|
- name: Build Jellyfin Plugin
|
||||||
|
uses: oddstr13/jellyfin-plugin-repository-manager@v1.1.1
|
||||||
|
id: jprm
|
||||||
|
with:
|
||||||
|
dotnet-target: "net9.0"
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: christopherHX/gitea-upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: plugin-build-artifact
|
||||||
|
retention-days: 5
|
||||||
|
if-no-files-found: error
|
||||||
|
path: ${{ steps.jprm.outputs.artifact }}
|
||||||
178
.gitea/workflows/release_automation.yml
Normal file
178
.gitea/workflows/release_automation.yml
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
name: Auto Release Plugin
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- '.gitea/**'
|
||||||
|
- '.github/**'
|
||||||
|
- '*.md'
|
||||||
|
- 'jellyfin.ruleset'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.editorconfig'
|
||||||
|
- 'LICENSE'
|
||||||
|
- 'logo.png'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v5
|
||||||
|
with:
|
||||||
|
dotnet-version: '9.x'
|
||||||
|
|
||||||
|
- name: Read Version from Manifest
|
||||||
|
id: read_version
|
||||||
|
run: |
|
||||||
|
VERSION=$(jq -r '.[0].versions[0].version' manifest.json)
|
||||||
|
CHANGELOG=$(jq -r '.[0].versions[0].changelog' manifest.json)
|
||||||
|
TARGET_ABI=$(jq -r '.[0].versions[0].targetAbi' manifest.json)
|
||||||
|
|
||||||
|
echo "Detected Version: $VERSION"
|
||||||
|
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Escape newlines in changelog for GITHUB_ENV
|
||||||
|
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
|
||||||
|
echo "$CHANGELOG" >> $GITHUB_ENV
|
||||||
|
echo "EOF" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Build and Zip
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
# Inject version from manifest into the build
|
||||||
|
dotnet build Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj --configuration Release --output bin/Publish /p:Version=${{ env.VERSION }} /p:AssemblyVersion=${{ env.VERSION }}
|
||||||
|
|
||||||
|
cd bin/Publish
|
||||||
|
zip -r Jellyfin.Plugin.Seasonals.zip *
|
||||||
|
cd ../..
|
||||||
|
|
||||||
|
# Calculate hash
|
||||||
|
HASH=$(md5sum bin/Publish/Jellyfin.Plugin.Seasonals.zip | awk '{ print $1 }')
|
||||||
|
TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
|
||||||
|
|
||||||
|
# Export variables for next steps
|
||||||
|
echo "ZIP_HASH=$HASH" >> $GITHUB_ENV
|
||||||
|
echo "BUILD_TIME=$TIME" >> $GITHUB_ENV
|
||||||
|
echo "ZIP_PATH=bin/Publish/Jellyfin.Plugin.Seasonals.zip" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Update manifest.json
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
REPO_OWNER="${{ github.repository_owner }}"
|
||||||
|
REPO_NAME="${{ github.event.repository.name }}"
|
||||||
|
VERSION="${{ env.VERSION }}"
|
||||||
|
DOWNLOAD_URL="https://git.mahom03-spacecloud.de/${{ github.repository }}/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
||||||
|
|
||||||
|
echo "Updating manifest.json with:"
|
||||||
|
echo "Hash: ${{ env.ZIP_HASH }}"
|
||||||
|
echo "Time: ${{ env.BUILD_TIME }}"
|
||||||
|
echo "Url: $DOWNLOAD_URL"
|
||||||
|
|
||||||
|
jq --arg hash "${{ env.ZIP_HASH }}" \
|
||||||
|
--arg time "${{ env.BUILD_TIME }}" \
|
||||||
|
--arg url "$DOWNLOAD_URL" \
|
||||||
|
'.[0].versions[0].checksum = $hash | .[0].versions[0].timestamp = $time | .[0].versions[0].sourceUrl = $url' \
|
||||||
|
manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json
|
||||||
|
|
||||||
|
- name: Commit manifest.json
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v7
|
||||||
|
with:
|
||||||
|
commit_message: "Update manifest.json for release v${{ env.VERSION }} [skip ci]"
|
||||||
|
file_pattern: manifest.json
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
server_url: "https://git.mahom03-spacecloud.de"
|
||||||
|
body: ${{ env.CHANGELOG }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
files: ${{ env.ZIP_PATH }}
|
||||||
|
name: "v${{ env.VERSION }}"
|
||||||
|
tag_name: "v${{ env.VERSION }}"
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
|
||||||
|
# Update Message in Remote Repository
|
||||||
|
- name: Checkout Central Manifest Repo
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
repository: ${{ github.repository_owner }}/jellyfin-plugin-manifest
|
||||||
|
path: central-manifest
|
||||||
|
token: ${{ secrets.JELLYFIN_PLUGIN_MANIFEST_UPDATER_PAT }}
|
||||||
|
|
||||||
|
- name: Update Central Manifest
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
cd central-manifest
|
||||||
|
|
||||||
|
# 1. Get info from previous steps
|
||||||
|
VERSION="${{ env.VERSION }}"
|
||||||
|
HASH="${{ env.ZIP_HASH }}"
|
||||||
|
TIME="${{ env.BUILD_TIME }}"
|
||||||
|
DOWNLOAD_URL="https://git.mahom03-spacecloud.de/${{ github.repository }}/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
||||||
|
|
||||||
|
# 2. Get info from env
|
||||||
|
PLUGIN_GUID="${{ env.PLUGIN_GUID }}"
|
||||||
|
CHANGELOG="${{ env.CHANGELOG }}"
|
||||||
|
TARGET_ABI="${{ env.TARGET_ABI }}"
|
||||||
|
|
||||||
|
echo "Updating Central Manifest for Plugin GUID: $PLUGIN_GUID"
|
||||||
|
|
||||||
|
# 3. Update/Prepend entry in central manifest.json
|
||||||
|
# Logic:
|
||||||
|
# - If array is empty or new version != old version: PREPEND new entry
|
||||||
|
# - If new version == old version: OVERWRITE (update) existing entry (re-release)
|
||||||
|
|
||||||
|
jq --arg guid "$PLUGIN_GUID" \
|
||||||
|
--arg hash "$HASH" \
|
||||||
|
--arg time "$TIME" \
|
||||||
|
--arg url "$DOWNLOAD_URL" \
|
||||||
|
--arg ver "$VERSION" \
|
||||||
|
--arg changelog "$CHANGELOG" \
|
||||||
|
--arg abi "$TARGET_ABI" \
|
||||||
|
'map(if .guid == $guid then
|
||||||
|
if .versions[0].version != $ver then
|
||||||
|
# New Version -> Prepend
|
||||||
|
.versions = [{
|
||||||
|
"version": $ver,
|
||||||
|
"changelog": $changelog,
|
||||||
|
"targetAbi": $abi,
|
||||||
|
"sourceUrl": $url,
|
||||||
|
"checksum": $hash,
|
||||||
|
"timestamp": $time
|
||||||
|
}] + .versions
|
||||||
|
else
|
||||||
|
# Same Version -> Update existing (overwrite top)
|
||||||
|
.versions[0].changelog = $changelog |
|
||||||
|
.versions[0].targetAbi = $abi |
|
||||||
|
.versions[0].sourceUrl = $url |
|
||||||
|
.versions[0].checksum = $hash |
|
||||||
|
.versions[0].timestamp = $time
|
||||||
|
end
|
||||||
|
else . end)' \
|
||||||
|
manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json
|
||||||
|
|
||||||
|
- name: Commit and Push Central Manifest
|
||||||
|
run: |
|
||||||
|
cd central-manifest
|
||||||
|
git config user.name "CodeDevMLH"
|
||||||
|
git config user.email "145071728+CodeDevMLH@users.noreply.github.com"
|
||||||
|
|
||||||
|
# Check if there are changes
|
||||||
|
if [[ -n $(git status -s) ]]; then
|
||||||
|
git add manifest.json
|
||||||
|
git commit -m "Auto-Update MediaBar Enhanced to v${{ env.VERSION }}"
|
||||||
|
git push
|
||||||
|
else
|
||||||
|
echo "No changes to central manifest."
|
||||||
|
fi
|
||||||
37
.github/workflows/build.yaml
vendored
37
.github/workflows/build.yaml
vendored
@@ -3,16 +3,43 @@ name: '🏗️ Build Plugin'
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- dev
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**/*.md'
|
- '**/*.md'
|
||||||
|
- '.gitea/**'
|
||||||
|
- '.github/**'
|
||||||
|
- 'jellyfin.ruleset'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.editorconfig'
|
||||||
|
- 'LICENSE'
|
||||||
|
- 'logo.png'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**/*.md'
|
- '**/*.md'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
call:
|
build:
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/build.yaml@master
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v5
|
||||||
|
with:
|
||||||
|
dotnet-version: "9.x"
|
||||||
|
|
||||||
|
- name: Build Jellyfin Plugin
|
||||||
|
run: |
|
||||||
|
dotnet build Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj --configuration Release --output bin/Publish
|
||||||
|
cd bin/Publish
|
||||||
|
zip -r Jellyfin.Plugin.Seasonals.zip *
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: actions/upload-artifact@v6
|
||||||
|
with:
|
||||||
|
name: plugin-build-artifact
|
||||||
|
retention-days: 5
|
||||||
|
if-no-files-found: error
|
||||||
|
path: bin/Publish/Jellyfin.Plugin.Seasonals.zip
|
||||||
20
.github/workflows/changelog.yaml
vendored
20
.github/workflows/changelog.yaml
vendored
@@ -1,20 +0,0 @@
|
|||||||
name: '📝 Create/Update Release Draft & Release Bump PR'
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
paths-ignore:
|
|
||||||
- build.yaml
|
|
||||||
workflow_dispatch:
|
|
||||||
repository_dispatch:
|
|
||||||
types:
|
|
||||||
- update-prep-command
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/changelog.yaml@master
|
|
||||||
with:
|
|
||||||
repository-name: jellyfin/jellyfin-plugin-template
|
|
||||||
secrets:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
13
.github/workflows/command-dispatch.yaml
vendored
13
.github/workflows/command-dispatch.yaml
vendored
@@ -1,13 +0,0 @@
|
|||||||
# Allows for the definition of PR and Issue /commands
|
|
||||||
name: '📟 Slash Command Dispatcher'
|
|
||||||
|
|
||||||
on:
|
|
||||||
issue_comment:
|
|
||||||
types:
|
|
||||||
- created
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/command-dispatch.yaml@master
|
|
||||||
secrets:
|
|
||||||
token: .
|
|
||||||
16
.github/workflows/command-rebase.yaml
vendored
16
.github/workflows/command-rebase.yaml
vendored
@@ -1,16 +0,0 @@
|
|||||||
name: '🔀 PR Rebase Command'
|
|
||||||
|
|
||||||
on:
|
|
||||||
repository_dispatch:
|
|
||||||
types:
|
|
||||||
- rebase-command
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/command-rebase.yaml@master
|
|
||||||
with:
|
|
||||||
rebase-head: ${{ github.event.client_payload.pull_request.head.label }}
|
|
||||||
repository-full-name: ${{ github.event.client_payload.github.payload.repository.full_name }}
|
|
||||||
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
|
|
||||||
secrets:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
18
.github/workflows/publish.yaml
vendored
18
.github/workflows/publish.yaml
vendored
@@ -1,18 +0,0 @@
|
|||||||
name: '🚀 Publish Plugin'
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- released
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/publish.yaml@master
|
|
||||||
with:
|
|
||||||
version: ${{ github.event.release.tag_name }}
|
|
||||||
is-unstable: ${{ github.event.release.prerelease }}
|
|
||||||
secrets:
|
|
||||||
deploy-host: ${{ secrets.DEPLOY_HOST }}
|
|
||||||
deploy-user: ${{ secrets.DEPLOY_USER }}
|
|
||||||
deploy-key: ${{ secrets.DEPLOY_KEY }}
|
|
||||||
176
.github/workflows/release_automation.yml
vendored
Normal file
176
.github/workflows/release_automation.yml
vendored
Normal file
@@ -0,0 +1,176 @@
|
|||||||
|
name: Auto Release Plugin
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- '.github/**'
|
||||||
|
- 'README.md'
|
||||||
|
- 'jellyfin.ruleset'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.editorconfig'
|
||||||
|
- 'LICENSE'
|
||||||
|
- 'logo.png'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v5
|
||||||
|
with:
|
||||||
|
dotnet-version: '9.x'
|
||||||
|
|
||||||
|
- name: Read Version from Manifest
|
||||||
|
id: read_version
|
||||||
|
run: |
|
||||||
|
VERSION=$(jq -r '.[0].versions[0].version' manifest.json)
|
||||||
|
CHANGELOG=$(jq -r '.[0].versions[0].changelog' manifest.json)
|
||||||
|
TARGET_ABI=$(jq -r '.[0].versions[0].targetAbi' manifest.json)
|
||||||
|
|
||||||
|
echo "Detected Version: $VERSION"
|
||||||
|
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Escape newlines in changelog for GITHUB_ENV
|
||||||
|
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
|
||||||
|
echo "$CHANGELOG" >> $GITHUB_ENV
|
||||||
|
echo "EOF" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Build and Zip
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
# Inject version from manifest into the build
|
||||||
|
dotnet build Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj --configuration Release --output bin/Publish /p:Version=${{ env.VERSION }} /p:AssemblyVersion=${{ env.VERSION }}
|
||||||
|
|
||||||
|
cd bin/Publish
|
||||||
|
zip -r Jellyfin.Plugin.Seasonals.zip *
|
||||||
|
cd ../..
|
||||||
|
|
||||||
|
# Calculate hash
|
||||||
|
HASH=$(md5sum bin/Publish/Jellyfin.Plugin.Seasonals.zip | awk '{ print $1 }')
|
||||||
|
TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
|
||||||
|
|
||||||
|
# Export variables for next steps
|
||||||
|
echo "ZIP_HASH=$HASH" >> $GITHUB_ENV
|
||||||
|
echo "BUILD_TIME=$TIME" >> $GITHUB_ENV
|
||||||
|
echo "ZIP_PATH=bin/Publish/Jellyfin.Plugin.Seasonals.zip" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Update manifest.json
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
REPO_OWNER="${{ github.repository_owner }}"
|
||||||
|
REPO_NAME="${{ github.event.repository.name }}"
|
||||||
|
VERSION="${{ env.VERSION }}"
|
||||||
|
DOWNLOAD_URL="https://github.com/$REPO_OWNER/$REPO_NAME/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
||||||
|
|
||||||
|
echo "Updating manifest.json with:"
|
||||||
|
echo "Hash: ${{ env.ZIP_HASH }}"
|
||||||
|
echo "Time: ${{ env.BUILD_TIME }}"
|
||||||
|
echo "Url: $DOWNLOAD_URL"
|
||||||
|
|
||||||
|
jq --arg hash "${{ env.ZIP_HASH }}" \
|
||||||
|
--arg time "${{ env.BUILD_TIME }}" \
|
||||||
|
--arg url "$DOWNLOAD_URL" \
|
||||||
|
'.[0].versions[0].checksum = $hash | .[0].versions[0].timestamp = $time | .[0].versions[0].sourceUrl = $url' \
|
||||||
|
manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json
|
||||||
|
|
||||||
|
- name: Commit manifest.json
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v7
|
||||||
|
with:
|
||||||
|
commit_message: "Update manifest.json for release v${{ env.VERSION }} [skip ci]"
|
||||||
|
file_pattern: manifest.json
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
tag_name: "v${{ env.VERSION }}"
|
||||||
|
name: "v${{ env.VERSION }}"
|
||||||
|
# body: ${{ env.CHANGELOG }}
|
||||||
|
files: ${{ env.ZIP_PATH }}
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
generate_release_notes: true
|
||||||
|
|
||||||
|
# Update Message in Remote Repository
|
||||||
|
- name: Checkout Central Manifest Repo
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
repository: ${{ github.repository_owner }}/jellyfin-plugin-manifest
|
||||||
|
path: central-manifest
|
||||||
|
token: ${{ secrets.JELLYFIN_PLUGIN_MANIFEST_UPDATER_PAT }}
|
||||||
|
|
||||||
|
- name: Update Central Manifest
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
cd central-manifest
|
||||||
|
|
||||||
|
# 1. Get info from previous steps
|
||||||
|
VERSION="${{ env.VERSION }}"
|
||||||
|
HASH="${{ env.ZIP_HASH }}"
|
||||||
|
TIME="${{ env.BUILD_TIME }}"
|
||||||
|
DOWNLOAD_URL="https://github.com/$REPO_OWNER/$REPO_NAME/releases/download/v$VERSION/Jellyfin.Plugin.Seasonals.zip"
|
||||||
|
|
||||||
|
# 2. Get info from env
|
||||||
|
PLUGIN_GUID="${{ env.PLUGIN_GUID }}"
|
||||||
|
CHANGELOG="${{ env.CHANGELOG }}"
|
||||||
|
TARGET_ABI="${{ env.TARGET_ABI }}"
|
||||||
|
|
||||||
|
echo "Updating Central Manifest for Plugin GUID: $PLUGIN_GUID"
|
||||||
|
|
||||||
|
# 3. Update/Prepend entry in central manifest.json
|
||||||
|
# Logic:
|
||||||
|
# - If array is empty or new version != old version: PREPEND new entry
|
||||||
|
# - If new version == old version: OVERWRITE (update) existing entry (re-release)
|
||||||
|
|
||||||
|
jq --arg guid "$PLUGIN_GUID" \
|
||||||
|
--arg hash "$HASH" \
|
||||||
|
--arg time "$TIME" \
|
||||||
|
--arg url "$DOWNLOAD_URL" \
|
||||||
|
--arg ver "$VERSION" \
|
||||||
|
--arg changelog "$CHANGELOG" \
|
||||||
|
--arg abi "$TARGET_ABI" \
|
||||||
|
'map(if .guid == $guid then
|
||||||
|
if .versions[0].version != $ver then
|
||||||
|
# New Version -> Prepend
|
||||||
|
.versions = [{
|
||||||
|
"version": $ver,
|
||||||
|
"changelog": $changelog,
|
||||||
|
"targetAbi": $abi,
|
||||||
|
"sourceUrl": $url,
|
||||||
|
"checksum": $hash,
|
||||||
|
"timestamp": $time
|
||||||
|
}] + .versions
|
||||||
|
else
|
||||||
|
# Same Version -> Update existing (overwrite top)
|
||||||
|
.versions[0].changelog = $changelog |
|
||||||
|
.versions[0].targetAbi = $abi |
|
||||||
|
.versions[0].sourceUrl = $url |
|
||||||
|
.versions[0].checksum = $hash |
|
||||||
|
.versions[0].timestamp = $time
|
||||||
|
end
|
||||||
|
else . end)' \
|
||||||
|
manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json
|
||||||
|
|
||||||
|
- name: Commit and Push Central Manifest
|
||||||
|
run: |
|
||||||
|
cd central-manifest
|
||||||
|
git config user.name "CodeDevMLH"
|
||||||
|
git config user.email "145071728+CodeDevMLH@users.noreply.github.com"
|
||||||
|
|
||||||
|
# Check if there are changes
|
||||||
|
if [[ -n $(git status -s) ]]; then
|
||||||
|
git add manifest.json
|
||||||
|
git commit -m "Auto-Update MediaBar Enhanced to v${{ env.VERSION }}"
|
||||||
|
git push
|
||||||
|
else
|
||||||
|
echo "No changes to central manifest."
|
||||||
|
fi
|
||||||
20
.github/workflows/scan-codeql.yaml
vendored
20
.github/workflows/scan-codeql.yaml
vendored
@@ -1,20 +0,0 @@
|
|||||||
name: '🔬 Run CodeQL'
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ master ]
|
|
||||||
paths-ignore:
|
|
||||||
- '**/*.md'
|
|
||||||
pull_request:
|
|
||||||
branches: [ master ]
|
|
||||||
paths-ignore:
|
|
||||||
- '**/*.md'
|
|
||||||
schedule:
|
|
||||||
- cron: '24 2 * * 4'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/scan-codeql.yaml@master
|
|
||||||
with:
|
|
||||||
repository-name: jellyfin/jellyfin-plugin-template
|
|
||||||
18
.github/workflows/test.yaml
vendored
18
.github/workflows/test.yaml
vendored
@@ -1,18 +0,0 @@
|
|||||||
name: '🧪 Test Plugin'
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
paths-ignore:
|
|
||||||
- '**/*.md'
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
paths-ignore:
|
|
||||||
- '**/*.md'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: jellyfin/jellyfin-meta-plugins/.github/workflows/test.yaml@master
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,4 +4,5 @@ obj/
|
|||||||
.idea/
|
.idea/
|
||||||
artifacts
|
artifacts
|
||||||
|
|
||||||
|
test-site.html
|
||||||
RELEASE_GUIDE.md
|
RELEASE_GUIDE.md
|
||||||
@@ -3,6 +3,8 @@ using System.IO;
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Jellyfin.Plugin.Seasonals;
|
||||||
|
using Jellyfin.Plugin.Seasonals.Configuration;
|
||||||
|
|
||||||
namespace Jellyfin.Plugin.Seasonals.Api;
|
namespace Jellyfin.Plugin.Seasonals.Api;
|
||||||
|
|
||||||
@@ -19,9 +21,9 @@ public class SeasonalsController : ControllerBase
|
|||||||
/// <returns>The configuration object.</returns>
|
/// <returns>The configuration object.</returns>
|
||||||
[HttpGet("Config")]
|
[HttpGet("Config")]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
public ActionResult<object> GetConfig()
|
public ActionResult<PluginConfiguration> GetConfig()
|
||||||
{
|
{
|
||||||
return Plugin.Instance?.Configuration ?? new object();
|
return SeasonalsPlugin.Instance?.Configuration ?? new PluginConfiguration();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -38,7 +40,7 @@ public class SeasonalsController : ControllerBase
|
|||||||
return BadRequest();
|
return BadRequest();
|
||||||
}
|
}
|
||||||
|
|
||||||
var assembly = Assembly.GetExecutingAssembly();
|
var assembly = typeof(SeasonalsPlugin).Assembly;
|
||||||
// Convert path to resource name
|
// Convert path to resource name
|
||||||
var resourcePath = path.Replace('/', '.').Replace('\\', '.');
|
var resourcePath = path.Replace('/', '.').Replace('\\', '.');
|
||||||
var resourceName = $"Jellyfin.Plugin.Seasonals.Web.{resourcePath}";
|
var resourceName = $"Jellyfin.Plugin.Seasonals.Web.{resourcePath}";
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ public class PluginConfiguration : BasePluginConfiguration
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public PluginConfiguration()
|
public PluginConfiguration()
|
||||||
{
|
{
|
||||||
|
IsEnabled = true;
|
||||||
SelectedSeason = "none";
|
SelectedSeason = "none";
|
||||||
AutomateSeasonSelection = true;
|
AutomateSeasonSelection = true;
|
||||||
|
|
||||||
@@ -27,6 +28,11 @@ public class PluginConfiguration : BasePluginConfiguration
|
|||||||
Easter = new EasterOptions();
|
Easter = new EasterOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets a value indicating whether the plugin is enabled.
|
||||||
|
/// </summary>
|
||||||
|
public bool IsEnabled { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the selected season.
|
/// Gets or sets the selected season.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Template</title>
|
<title>Seasonals Configuration</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="SeasonalsConfigPage" data-role="page" class="page type-interior pluginConfigurationPage" data-require="emby-input,emby-button,emby-select,emby-checkbox">
|
<div id="SeasonalsConfigPage" data-role="page" class="page type-interior pluginConfigurationPage" data-require="emby-input,emby-button,emby-select,emby-checkbox">
|
||||||
@@ -24,6 +24,13 @@
|
|||||||
<hr style="max-width: 800px; margin: 1em 0;">
|
<hr style="max-width: 800px; margin: 1em 0;">
|
||||||
<br>
|
<br>
|
||||||
<form id="SeasonalsConfigForm">
|
<form id="SeasonalsConfigForm">
|
||||||
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||||
|
<label class="emby-checkbox-label">
|
||||||
|
<input id="IsEnabled" name="IsEnabled" type="checkbox" is="emby-checkbox" />
|
||||||
|
<span>Enable Seasonals</span>
|
||||||
|
</label>
|
||||||
|
<div class="fieldDescription">Enable or disable the entire plugin functionality.</div>
|
||||||
|
</div>
|
||||||
<div class="checkboxContainer checkboxContainer-withDescription">
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||||
<label class="emby-checkbox-label">
|
<label class="emby-checkbox-label">
|
||||||
<input id="AutomateSeasonSelection" name="AutomateSeasonSelection" type="checkbox" is="emby-checkbox" />
|
<input id="AutomateSeasonSelection" name="AutomateSeasonSelection" type="checkbox" is="emby-checkbox" />
|
||||||
@@ -520,6 +527,7 @@
|
|||||||
.addEventListener('pageshow', function() {
|
.addEventListener('pageshow', function() {
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
ApiClient.getPluginConfiguration(SeasonalsConfig.pluginUniqueId).then(function (config) {
|
ApiClient.getPluginConfiguration(SeasonalsConfig.pluginUniqueId).then(function (config) {
|
||||||
|
document.querySelector('#IsEnabled').checked = config.IsEnabled;
|
||||||
document.querySelector('#SelectedSeason').value = config.SelectedSeason;
|
document.querySelector('#SelectedSeason').value = config.SelectedSeason;
|
||||||
document.querySelector('#AutomateSeasonSelection').checked = config.AutomateSeasonSelection;
|
document.querySelector('#AutomateSeasonSelection').checked = config.AutomateSeasonSelection;
|
||||||
|
|
||||||
@@ -615,6 +623,7 @@
|
|||||||
.addEventListener('submit', function(e) {
|
.addEventListener('submit', function(e) {
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
ApiClient.getPluginConfiguration(SeasonalsConfig.pluginUniqueId).then(function (config) {
|
ApiClient.getPluginConfiguration(SeasonalsConfig.pluginUniqueId).then(function (config) {
|
||||||
|
config.IsEnabled = document.querySelector('#IsEnabled').checked;
|
||||||
config.SelectedSeason = document.querySelector('#SelectedSeason').value;
|
config.SelectedSeason = document.querySelector('#SelectedSeason').value;
|
||||||
config.AutomateSeasonSelection = document.querySelector('#AutomateSeasonSelection').checked;
|
config.AutomateSeasonSelection = document.querySelector('#AutomateSeasonSelection').checked;
|
||||||
|
|
||||||
|
|||||||
49
Jellyfin.Plugin.Seasonals/Helpers/TransformationPatches.cs
Normal file
49
Jellyfin.Plugin.Seasonals/Helpers/TransformationPatches.cs
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
using System;
|
||||||
|
using Jellyfin.Plugin.Seasonals.Model;
|
||||||
|
|
||||||
|
namespace Jellyfin.Plugin.Seasonals.Helpers
|
||||||
|
{
|
||||||
|
public static class TransformationPatches
|
||||||
|
{
|
||||||
|
public static string IndexHtml(PatchRequestPayload payload)
|
||||||
|
{
|
||||||
|
// Always return original content if something fails or is null
|
||||||
|
string? originalContents = payload?.Contents;
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(originalContents))
|
||||||
|
{
|
||||||
|
return originalContents ?? string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
|
||||||
|
// Safety Check: If plugin is disabled, do nothing
|
||||||
|
if (SeasonalsPlugin.Instance?.Configuration.IsEnabled != true)
|
||||||
|
{
|
||||||
|
return originalContents;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use StringBuilder for efficient modification
|
||||||
|
var builder = new System.Text.StringBuilder(originalContents);
|
||||||
|
|
||||||
|
// Inject Script if missing
|
||||||
|
if (!originalContents.Contains("seasonals.js", StringComparison.Ordinal))
|
||||||
|
{
|
||||||
|
var scriptIndex = originalContents.LastIndexOf(ScriptInjector.Marker, StringComparison.OrdinalIgnoreCase);
|
||||||
|
if (scriptIndex != -1)
|
||||||
|
{
|
||||||
|
builder.Insert(scriptIndex, ScriptInjector.ScriptTag + Environment.NewLine);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return builder.ToString();
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// On error, return original content to avoid breaking the UI
|
||||||
|
return originalContents;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -12,8 +12,8 @@
|
|||||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||||
<Title>Jellyfin Seasonals Plugin</Title>
|
<Title>Jellyfin Seasonals Plugin</Title>
|
||||||
<Authors>CodeDevMLH</Authors>
|
<Authors>CodeDevMLH</Authors>
|
||||||
<Version>1.3.4.0</Version>
|
<Version>1.5.0.0</Version>
|
||||||
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-seasonals</RepositoryUrl>
|
<RepositoryUrl>https://github.com/CodeDevMLH/Jellyfin-Seasonals</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
10
Jellyfin.Plugin.Seasonals/Model/PatchRequestPayload.cs
Normal file
10
Jellyfin.Plugin.Seasonals/Model/PatchRequestPayload.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace Jellyfin.Plugin.Seasonals.Model
|
||||||
|
{
|
||||||
|
public class PatchRequestPayload
|
||||||
|
{
|
||||||
|
[JsonPropertyName("contents")]
|
||||||
|
public string? Contents { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.Loader;
|
|
||||||
using Jellyfin.Plugin.Seasonals.Configuration;
|
|
||||||
using MediaBrowser.Common.Configuration;
|
|
||||||
using MediaBrowser.Common.Plugins;
|
|
||||||
using MediaBrowser.Model.Plugins;
|
|
||||||
using MediaBrowser.Model.Serialization;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using Newtonsoft.Json.Linq;
|
|
||||||
|
|
||||||
namespace Jellyfin.Plugin.Seasonals;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The main plugin.
|
|
||||||
/// </summary>
|
|
||||||
public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages
|
|
||||||
{
|
|
||||||
private readonly ScriptInjector _scriptInjector;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Initializes a new instance of the <see cref="Plugin"/> class.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="applicationPaths">Instance of the <see cref="IApplicationPaths"/> interface.</param>
|
|
||||||
/// <param name="xmlSerializer">Instance of the <see cref="IXmlSerializer"/> interface.</param>
|
|
||||||
/// <param name="loggerFactory">Instance of the <see cref="ILoggerFactory"/> interface.</param>
|
|
||||||
public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer, ILoggerFactory loggerFactory)
|
|
||||||
: base(applicationPaths, xmlSerializer)
|
|
||||||
{
|
|
||||||
Instance = this;
|
|
||||||
_scriptInjector = new ScriptInjector(applicationPaths, loggerFactory.CreateLogger<ScriptInjector>());
|
|
||||||
if (!_scriptInjector.Inject())
|
|
||||||
{
|
|
||||||
TryRegisterFallback(loggerFactory.CreateLogger("FileTransformationFallback"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string Name => "Seasonals";
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override Guid Id => Guid.Parse("ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4");
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the current plugin instance.
|
|
||||||
/// </summary>
|
|
||||||
public static Plugin? Instance { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Callback method for FileTransformation plugin.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="payload">The payload containing the file contents.</param>
|
|
||||||
/// <returns>The modified file contents.</returns>
|
|
||||||
public static string TransformIndexHtml(JObject payload)
|
|
||||||
{
|
|
||||||
// CRITICAL: Always return original content if something fails or is null
|
|
||||||
string? originalContents = payload?["contents"]?.ToString();
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(originalContents))
|
|
||||||
{
|
|
||||||
return originalContents ?? string.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var html = originalContents;
|
|
||||||
const string inject = "<script src=\"/Seasonals/Resources/seasonals.js\"></script>\n<body";
|
|
||||||
|
|
||||||
if (!html.Contains("seasonals.js", StringComparison.Ordinal))
|
|
||||||
{
|
|
||||||
return html.Replace("<body", inject, StringComparison.OrdinalIgnoreCase);
|
|
||||||
}
|
|
||||||
|
|
||||||
return html;
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
// On error, return original content to avoid breaking the UI
|
|
||||||
return originalContents;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void TryRegisterFallback(ILogger logger)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
// Find the FileTransformation assembly across all load contexts
|
|
||||||
var assembly = AssemblyLoadContext.All
|
|
||||||
.SelectMany(x => x.Assemblies)
|
|
||||||
.FirstOrDefault(x => x.FullName?.Contains(".FileTransformation") ?? false);
|
|
||||||
|
|
||||||
if (assembly == null)
|
|
||||||
{
|
|
||||||
logger.LogWarning("FileTransformation plugin not found. Fallback injection skipped.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var type = assembly.GetType("Jellyfin.Plugin.FileTransformation.PluginInterface");
|
|
||||||
if (type == null)
|
|
||||||
{
|
|
||||||
logger.LogWarning("Jellyfin.Plugin.FileTransformation.PluginInterface not found.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var method = type.GetMethod("RegisterTransformation");
|
|
||||||
if (method == null)
|
|
||||||
{
|
|
||||||
logger.LogWarning("RegisterTransformation method not found.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create JObject payload directly using Newtonsoft.Json
|
|
||||||
var payload = new JObject
|
|
||||||
{
|
|
||||||
{ "id", Id.ToString() },
|
|
||||||
{ "fileNamePattern", "index.html" },
|
|
||||||
{ "callbackAssembly", this.GetType().Assembly.FullName },
|
|
||||||
{ "callbackClass", this.GetType().FullName },
|
|
||||||
{ "callbackMethod", nameof(TransformIndexHtml) }
|
|
||||||
};
|
|
||||||
|
|
||||||
// Invoke RegisterTransformation with the JObject payload
|
|
||||||
method.Invoke(null, new object[] { payload });
|
|
||||||
logger.LogInformation("Successfully registered fallback transformation via FileTransformation plugin.");
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
logger.LogError(ex, "Error attempting to register fallback transformation.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public IEnumerable<PluginPageInfo> GetPages()
|
|
||||||
{
|
|
||||||
return new[]
|
|
||||||
{
|
|
||||||
new PluginPageInfo
|
|
||||||
{
|
|
||||||
Name = Name,
|
|
||||||
EmbeddedResourcePath = string.Format(CultureInfo.InvariantCulture, "{0}.Configuration.configPage.html", GetType().Namespace)
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,13 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
using System.Runtime.Loader;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
using MediaBrowser.Common.Configuration;
|
using MediaBrowser.Common.Configuration;
|
||||||
|
using Jellyfin.Plugin.Seasonals.Helpers;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
namespace Jellyfin.Plugin.Seasonals;
|
namespace Jellyfin.Plugin.Seasonals;
|
||||||
|
|
||||||
@@ -13,8 +18,8 @@ public class ScriptInjector
|
|||||||
{
|
{
|
||||||
private readonly IApplicationPaths _appPaths;
|
private readonly IApplicationPaths _appPaths;
|
||||||
private readonly ILogger<ScriptInjector> _logger;
|
private readonly ILogger<ScriptInjector> _logger;
|
||||||
private const string ScriptTag = "<script src=\"/Seasonals/Resources/seasonals.js\" defer></script>";
|
public const string ScriptTag = "<script src=\"/Seasonals/Resources/seasonals.js\" defer></script>";
|
||||||
private const string Marker = "</body>";
|
public const string Marker = "</body>";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="ScriptInjector"/> class.
|
/// Initializes a new instance of the <see cref="ScriptInjector"/> class.
|
||||||
@@ -30,53 +35,51 @@ public class ScriptInjector
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Injects the script tag into index.html if it's not already present.
|
/// Injects the script tag into index.html if it's not already present.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>True if injection was successful or already present, false otherwise.</returns>
|
public void Inject()
|
||||||
public bool Inject()
|
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var webPath = GetWebPath();
|
var webPath = GetWebPath();
|
||||||
if (string.IsNullOrEmpty(webPath))
|
if (string.IsNullOrEmpty(webPath))
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Could not find Jellyfin web path. Script injection skipped.");
|
_logger.LogWarning("Could not find Jellyfin web path. Script injection skipped. Attempting fallback.");
|
||||||
return false;
|
RegisterFileTransformation();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var indexPath = Path.Combine(webPath, "index.html");
|
var indexPath = Path.Combine(webPath, "index.html");
|
||||||
if (!File.Exists(indexPath))
|
if (!File.Exists(indexPath))
|
||||||
{
|
{
|
||||||
_logger.LogWarning("index.html not found at {Path}. Script injection skipped.", indexPath);
|
_logger.LogWarning("index.html not found at {Path}. Script injection skipped. Attempting fallback.", indexPath);
|
||||||
return false;
|
RegisterFileTransformation();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var content = File.ReadAllText(indexPath);
|
var content = File.ReadAllText(indexPath);
|
||||||
if (content.Contains(ScriptTag, StringComparison.Ordinal))
|
if (!content.Contains(ScriptTag))
|
||||||
{
|
{
|
||||||
_logger.LogInformation("Seasonals script already injected.");
|
var index = content.IndexOf(Marker, StringComparison.OrdinalIgnoreCase);
|
||||||
return true;
|
if (index != -1)
|
||||||
}
|
|
||||||
|
|
||||||
// Insert before the closing body tag
|
|
||||||
var newContent = content.Replace(Marker, $"{ScriptTag}\n{Marker}", StringComparison.Ordinal);
|
|
||||||
if (string.Equals(newContent, content, StringComparison.Ordinal))
|
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Could not find closing body tag in index.html. Script injection skipped.");
|
content = content.Insert(index, ScriptTag + Environment.NewLine);
|
||||||
return false;
|
File.WriteAllText(indexPath, content);
|
||||||
}
|
|
||||||
|
|
||||||
File.WriteAllText(indexPath, newContent);
|
|
||||||
_logger.LogInformation("Successfully injected Seasonals script into index.html.");
|
_logger.LogInformation("Successfully injected Seasonals script into index.html.");
|
||||||
return true;
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Script already present in index.html. Or could not be injected.");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (UnauthorizedAccessException)
|
catch (UnauthorizedAccessException)
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Access was denied when attempting to inject script into index.html. Automatic injection failed. Please ensure the Jellyfin web directory is writable by the process, or manually add the script tag: {ScriptTag}", ScriptTag);
|
_logger.LogWarning("Unauthorized access when attempting to inject script into index.html. Automatic injection failed. Attempting fallback now...");
|
||||||
return false;
|
RegisterFileTransformation();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
_logger.LogError(ex, "Error injecting Seasonals script.");
|
_logger.LogError(ex, "Error injecting Seasonals script. Attempting fallback.");
|
||||||
return false;
|
RegisterFileTransformation();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,6 +88,8 @@ public class ScriptInjector
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public void Remove()
|
public void Remove()
|
||||||
{
|
{
|
||||||
|
UnregisterFileTransformation();
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var webPath = GetWebPath();
|
var webPath = GetWebPath();
|
||||||
@@ -100,21 +105,18 @@ public class ScriptInjector
|
|||||||
}
|
}
|
||||||
|
|
||||||
var content = File.ReadAllText(indexPath);
|
var content = File.ReadAllText(indexPath);
|
||||||
if (!content.Contains(ScriptTag, StringComparison.Ordinal))
|
if (content.Contains(ScriptTag))
|
||||||
{
|
{
|
||||||
return;
|
content = content.Replace(ScriptTag + Environment.NewLine, "").Replace(ScriptTag, "");
|
||||||
}
|
File.WriteAllText(indexPath, content);
|
||||||
|
|
||||||
// Try to remove with newline first, then just the tag to ensure clean removal
|
|
||||||
var newContent = content.Replace($"{ScriptTag}\n", "", StringComparison.Ordinal)
|
|
||||||
.Replace(ScriptTag, "", StringComparison.Ordinal);
|
|
||||||
|
|
||||||
File.WriteAllText(indexPath, newContent);
|
|
||||||
_logger.LogInformation("Successfully removed Seasonals script from index.html.");
|
_logger.LogInformation("Successfully removed Seasonals script from index.html.");
|
||||||
|
} else {
|
||||||
|
_logger.LogInformation("Seasonals script tag not found in index.html. No removal necessary.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (UnauthorizedAccessException)
|
catch (UnauthorizedAccessException)
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Permission denied when attempting to remove script from index.html.");
|
_logger.LogWarning("Unauthorized access when attempting to remove script from index.html.");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
@@ -132,4 +134,74 @@ public class ScriptInjector
|
|||||||
var prop = _appPaths.GetType().GetProperty("WebPath", BindingFlags.Instance | BindingFlags.Public);
|
var prop = _appPaths.GetType().GetProperty("WebPath", BindingFlags.Instance | BindingFlags.Public);
|
||||||
return prop?.GetValue(_appPaths) as string;
|
return prop?.GetValue(_appPaths) as string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void RegisterFileTransformation()
|
||||||
|
{
|
||||||
|
_logger.LogInformation("Seasonals Fallback. Registering file transformations.");
|
||||||
|
|
||||||
|
List<JObject> payloads = new List<JObject>();
|
||||||
|
|
||||||
|
{
|
||||||
|
JObject payload = new JObject();
|
||||||
|
payload.Add("id", "ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4");
|
||||||
|
payload.Add("fileNamePattern", "index.html");
|
||||||
|
payload.Add("callbackAssembly", GetType().Assembly.FullName);
|
||||||
|
payload.Add("callbackClass", typeof(TransformationPatches).FullName);
|
||||||
|
payload.Add("callbackMethod", nameof(TransformationPatches.IndexHtml));
|
||||||
|
|
||||||
|
payloads.Add(payload);
|
||||||
|
}
|
||||||
|
|
||||||
|
Assembly? fileTransformationAssembly =
|
||||||
|
AssemblyLoadContext.All.SelectMany(x => x.Assemblies).FirstOrDefault(x =>
|
||||||
|
x.FullName?.Contains(".FileTransformation") ?? false);
|
||||||
|
|
||||||
|
if (fileTransformationAssembly != null)
|
||||||
|
{
|
||||||
|
Type? pluginInterfaceType = fileTransformationAssembly.GetType("Jellyfin.Plugin.FileTransformation.PluginInterface");
|
||||||
|
|
||||||
|
if (pluginInterfaceType != null)
|
||||||
|
{
|
||||||
|
foreach (JObject payload in payloads)
|
||||||
|
{
|
||||||
|
pluginInterfaceType.GetMethod("RegisterTransformation")?.Invoke(null, new object?[] { payload });
|
||||||
|
}
|
||||||
|
_logger.LogInformation("File transformations registered successfully.");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.LogWarning("FileTransformation plugin found but PluginInterface type missing.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.LogWarning("FileTransformation plugin assembly not found. Fallback injection skipped.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UnregisterFileTransformation()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Assembly? fileTransformationAssembly =
|
||||||
|
AssemblyLoadContext.All.SelectMany(x => x.Assemblies).FirstOrDefault(x =>
|
||||||
|
x.FullName?.Contains(".FileTransformation") ?? false);
|
||||||
|
|
||||||
|
if (fileTransformationAssembly != null)
|
||||||
|
{
|
||||||
|
Type? pluginInterfaceType = fileTransformationAssembly.GetType("Jellyfin.Plugin.FileTransformation.PluginInterface");
|
||||||
|
|
||||||
|
if (pluginInterfaceType != null)
|
||||||
|
{
|
||||||
|
Guid id = Guid.Parse("ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4");
|
||||||
|
pluginInterfaceType.GetMethod("RemoveTransformation")?.Invoke(null, new object?[] { id });
|
||||||
|
_logger.LogInformation("File transformation unregistered successfully.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogWarning(ex, "Error attempting to unregister file transformation. It might not have been registered.");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
89
Jellyfin.Plugin.Seasonals/SeasonalsPlugin.cs
Normal file
89
Jellyfin.Plugin.Seasonals/SeasonalsPlugin.cs
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using Jellyfin.Plugin.Seasonals.Configuration;
|
||||||
|
using MediaBrowser.Common.Configuration;
|
||||||
|
using MediaBrowser.Common.Plugins;
|
||||||
|
using MediaBrowser.Model.Plugins;
|
||||||
|
using MediaBrowser.Model.Serialization;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace Jellyfin.Plugin.Seasonals;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The main plugin.
|
||||||
|
/// </summary>
|
||||||
|
public class SeasonalsPlugin : BasePlugin<PluginConfiguration>, IHasWebPages
|
||||||
|
{
|
||||||
|
private readonly ScriptInjector _scriptInjector;
|
||||||
|
private readonly ILoggerFactory _loggerFactory;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="Plugin"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="applicationPaths">Instance of the <see cref="IApplicationPaths"/> interface.</param>
|
||||||
|
/// <param name="xmlSerializer">Instance of the <see cref="IXmlSerializer"/> interface.</param>
|
||||||
|
/// <param name="loggerFactory">Instance of the <see cref="ILoggerFactory"/> interface.</param>
|
||||||
|
public SeasonalsPlugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer, ILoggerFactory loggerFactory)
|
||||||
|
: base(applicationPaths, xmlSerializer)
|
||||||
|
{
|
||||||
|
Instance = this;
|
||||||
|
_loggerFactory = loggerFactory;
|
||||||
|
_scriptInjector = new ScriptInjector(applicationPaths, loggerFactory.CreateLogger<ScriptInjector>());
|
||||||
|
|
||||||
|
if (Configuration.IsEnabled)
|
||||||
|
{
|
||||||
|
_scriptInjector.Inject();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_scriptInjector.Remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override void UpdateConfiguration(BasePluginConfiguration configuration)
|
||||||
|
{
|
||||||
|
var oldConfig = Configuration;
|
||||||
|
base.UpdateConfiguration(configuration);
|
||||||
|
|
||||||
|
if (Configuration.IsEnabled != oldConfig.IsEnabled)
|
||||||
|
{
|
||||||
|
if (Configuration.IsEnabled)
|
||||||
|
{
|
||||||
|
_scriptInjector.Inject();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_scriptInjector.Remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override string Name => "Seasonals";
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override Guid Id => Guid.Parse("ef1e863f-cbb0-4e47-9f23-f0cbb1826ad4");
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the current plugin instance.
|
||||||
|
/// </summary>
|
||||||
|
public static SeasonalsPlugin? Instance { get; private set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public IEnumerable<PluginPageInfo> GetPages()
|
||||||
|
{
|
||||||
|
return new[]
|
||||||
|
{
|
||||||
|
new PluginPageInfo
|
||||||
|
{
|
||||||
|
Name = Name,
|
||||||
|
EnableInMainMenu = true,
|
||||||
|
EmbeddedResourcePath = string.Format(CultureInfo.InvariantCulture, "{0}.Configuration.configPage.html", GetType().Namespace)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -42,6 +42,11 @@ function toggleFirework() {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
fireworksContainer.style.display = 'block'; // show fireworks
|
fireworksContainer.style.display = 'block'; // show fireworks
|
||||||
|
|
||||||
|
if (scrollFireworks) {
|
||||||
|
fireworksContainer.style.height = `${document.documentElement.scrollHeight}px`;
|
||||||
|
}
|
||||||
|
|
||||||
if (msgPrinted) {
|
if (msgPrinted) {
|
||||||
console.log('Fireworks visible');
|
console.log('Fireworks visible');
|
||||||
startFireworks();
|
startFireworks();
|
||||||
@@ -117,8 +122,8 @@ function launchFirework() {
|
|||||||
let startY, endY;
|
let startY, endY;
|
||||||
if (scrollFireworks) {
|
if (scrollFireworks) {
|
||||||
// Y-position considers scrolling
|
// Y-position considers scrolling
|
||||||
startY = window.scrollY + window.innerHeight; // Bottom edge of the window plus the scroll offset
|
startY = window.scrollY + window.innerHeight;
|
||||||
endY = Math.random() * window.innerHeight * 0.5 + window.innerHeight * 0.2 + window.scrollY; // Area around the middle, but also with scrolling
|
endY = window.scrollY + (Math.random() * window.innerHeight * 0.5 + window.innerHeight * 0.2);
|
||||||
} else {
|
} else {
|
||||||
startY = window.innerHeight; // Bottom edge of the window
|
startY = window.innerHeight; // Bottom edge of the window
|
||||||
endY = Math.random() * window.innerHeight * 0.5 + window.innerHeight * 0.2; // Area around the middle
|
endY = Math.random() * window.innerHeight * 0.5 + window.innerHeight * 0.2; // Area around the middle
|
||||||
@@ -135,14 +140,27 @@ function launchFirework() {
|
|||||||
|
|
||||||
// Start the firework routine
|
// Start the firework routine
|
||||||
function startFireworks() {
|
function startFireworks() {
|
||||||
const fireworkContainer = document.querySelector('.fireworks') || document.createElement("div");
|
let fireworkContainer = document.querySelector('.fireworks');
|
||||||
|
|
||||||
if (!document.querySelector('.fireworks')) {
|
if (!fireworkContainer) {
|
||||||
|
fireworkContainer = document.createElement("div");
|
||||||
fireworkContainer.className = "fireworks";
|
fireworkContainer.className = "fireworks";
|
||||||
fireworkContainer.setAttribute("aria-hidden", "true");
|
fireworkContainer.setAttribute("aria-hidden", "true");
|
||||||
document.body.appendChild(fireworkContainer);
|
document.body.appendChild(fireworkContainer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fireworkContainer.style.position = scrollFireworks ? 'absolute' : 'fixed';
|
||||||
|
|
||||||
|
if (scrollFireworks) {
|
||||||
|
fireworkContainer.style.height = `${document.documentElement.scrollHeight}px`;
|
||||||
|
fireworkContainer.style.width = '100%';
|
||||||
|
fireworkContainer.style.top = '0';
|
||||||
|
fireworkContainer.style.left = '0';
|
||||||
|
} else {
|
||||||
|
fireworkContainer.style.height = '100%';
|
||||||
|
fireworkContainer.style.width = '100%';
|
||||||
|
}
|
||||||
|
|
||||||
fireworksInterval = setInterval(() => {
|
fireworksInterval = setInterval(() => {
|
||||||
const randomCount = Math.floor(Math.random() * maxFireworks) + minFireworks;
|
const randomCount = Math.floor(Math.random() * maxFireworks) + minFireworks;
|
||||||
for (let i = 0; i < randomCount; i++) {
|
for (let i = 0; i < randomCount; i++) {
|
||||||
|
|||||||
@@ -1,624 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"Jellyfin.Plugin.Seasonals/1.0.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Jellyfin.Controller": "10.11.0",
|
|
||||||
"Jellyfin.Model": "10.11.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"Jellyfin.Plugin.Seasonals.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"BitFaster.Caching/2.5.4": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/BitFaster.Caching.dll": {
|
|
||||||
"assemblyVersion": "2.5.4.0",
|
|
||||||
"fileVersion": "2.5.4.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Diacritics/4.0.17": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Diacritics.dll": {
|
|
||||||
"assemblyVersion": "4.0.17.0",
|
|
||||||
"fileVersion": "4.0.17.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ICU4N/60.1.0-alpha.356": {
|
|
||||||
"dependencies": {
|
|
||||||
"J2N": "2.0.0",
|
|
||||||
"Microsoft.Extensions.Caching.Memory": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/ICU4N.dll": {
|
|
||||||
"assemblyVersion": "60.0.0.0",
|
|
||||||
"fileVersion": "60.1.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ICU4N.Transliterator/60.1.0-alpha.356": {
|
|
||||||
"dependencies": {
|
|
||||||
"ICU4N": "60.1.0-alpha.356"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/ICU4N.Transliterator.dll": {
|
|
||||||
"assemblyVersion": "60.0.0.0",
|
|
||||||
"fileVersion": "60.1.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"J2N/2.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/J2N.dll": {
|
|
||||||
"assemblyVersion": "2.0.0.0",
|
|
||||||
"fileVersion": "2.0.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.Common/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Jellyfin.Model": "10.11.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/MediaBrowser.Common.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.Controller/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"BitFaster.Caching": "2.5.4",
|
|
||||||
"Jellyfin.Common": "10.11.0",
|
|
||||||
"Jellyfin.MediaEncoding.Keyframes": "10.11.0",
|
|
||||||
"Jellyfin.Model": "10.11.0",
|
|
||||||
"Jellyfin.Naming": "10.11.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.10",
|
|
||||||
"System.Threading.Tasks.Dataflow": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/MediaBrowser.Controller.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.Data/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Jellyfin.Database.Implementations": "10.11.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Jellyfin.Data.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.Database.Implementations/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.EntityFrameworkCore.Relational": "9.0.10",
|
|
||||||
"Polly": "8.6.4"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Jellyfin.Database.Implementations.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.Extensions/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Diacritics": "4.0.17",
|
|
||||||
"ICU4N.Transliterator": "60.1.0-alpha.356"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Jellyfin.Extensions.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.MediaEncoding.Keyframes/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.10",
|
|
||||||
"NEbml": "1.1.0.5"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Jellyfin.MediaEncoding.Keyframes.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.Model/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Jellyfin.Data": "10.11.0",
|
|
||||||
"Jellyfin.Extensions": "10.11.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.10",
|
|
||||||
"System.Globalization": "4.3.0",
|
|
||||||
"System.Text.Json": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/MediaBrowser.Model.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Jellyfin.Naming/10.11.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Jellyfin.Common": "10.11.0",
|
|
||||||
"Jellyfin.Model": "10.11.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Emby.Naming.dll": {
|
|
||||||
"assemblyVersion": "10.11.0.0",
|
|
||||||
"fileVersion": "10.11.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.EntityFrameworkCore/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.EntityFrameworkCore.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.EntityFrameworkCore.Analyzers": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Caching.Memory": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
|
|
||||||
"assemblyVersion": "9.0.10.0",
|
|
||||||
"fileVersion": "9.0.1025.47514"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.EntityFrameworkCore.Abstractions/9.0.10": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
|
|
||||||
"assemblyVersion": "9.0.10.0",
|
|
||||||
"fileVersion": "9.0.1025.47514"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.EntityFrameworkCore.Analyzers/9.0.10": {},
|
|
||||||
"Microsoft.EntityFrameworkCore.Relational/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.EntityFrameworkCore": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Caching.Memory": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
|
|
||||||
"assemblyVersion": "9.0.10.0",
|
|
||||||
"fileVersion": "9.0.1025.47514"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Caching.Memory/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Logging.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.10": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.10"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Options.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.10": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Primitives.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.1025.47515"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.Platforms/1.1.0": {},
|
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {},
|
|
||||||
"NEbml/1.1.0.5": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/NEbml.Core.dll": {
|
|
||||||
"assemblyVersion": "1.1.0.5",
|
|
||||||
"fileVersion": "1.1.0.5"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Polly/8.6.4": {
|
|
||||||
"dependencies": {
|
|
||||||
"Polly.Core": "8.6.4"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Polly.dll": {
|
|
||||||
"assemblyVersion": "8.0.0.0",
|
|
||||||
"fileVersion": "8.6.4.5033"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Polly.Core/8.6.4": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Polly.Core.dll": {
|
|
||||||
"assemblyVersion": "8.0.0.0",
|
|
||||||
"fileVersion": "8.6.4.5033"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Globalization/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Runtime/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Text.Json/9.0.10": {},
|
|
||||||
"System.Threading.Tasks.Dataflow/9.0.10": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"Jellyfin.Plugin.Seasonals/1.0.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"BitFaster.Caching/2.5.4": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1QroTY1PVCZOSG9FnkkCrmCKk/+bZCgI/YXq376HnYwUDJ4Ho0EaV4YaA/5v5WYLnwIwIO7RZkdWbg9pxIpueQ==",
|
|
||||||
"path": "bitfaster.caching/2.5.4",
|
|
||||||
"hashPath": "bitfaster.caching.2.5.4.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Diacritics/4.0.17": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FmMvVQRsfon+x5P+dxz4mvV8wt45xr25EAOCkuo/Cjtc7lVYV5cZUSsNXwmKQpwO+TokIHpzxb8ENpqrm4yBlQ==",
|
|
||||||
"path": "diacritics/4.0.17",
|
|
||||||
"hashPath": "diacritics.4.0.17.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"ICU4N/60.1.0-alpha.356": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YMZtDnjcqWzziOKiE7w6Ma7Rl5vuFDxzOsUlHh1QyfghbNEIZQOLRs9MMfwCWAjX6n9UitrF6vLXy55Z5q+4Fg==",
|
|
||||||
"path": "icu4n/60.1.0-alpha.356",
|
|
||||||
"hashPath": "icu4n.60.1.0-alpha.356.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"ICU4N.Transliterator/60.1.0-alpha.356": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lFOSO6bbEtB6HkWMNDJAq+rFwVyi9g6xVc5O/2xHa6iZnV7wLVDqCbaQ4W4vIeBSQZAafqhxciaEkmAvSdzlCg==",
|
|
||||||
"path": "icu4n.transliterator/60.1.0-alpha.356",
|
|
||||||
"hashPath": "icu4n.transliterator.60.1.0-alpha.356.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"J2N/2.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-M5bwDajAARZiyqupU+rHQJnsVLxNBOHJ8vKYHd8LcLIb1FgLfzzcJvc31Qo5Xz/GEHFjDF9ScjKL/ks/zRTXuA==",
|
|
||||||
"path": "j2n/2.0.0",
|
|
||||||
"hashPath": "j2n.2.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.Common/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-TitN7+qWFt2l0V5b+KTRt7ABDCvfZdvSC6qBG1uHS18Y80xrbrSCJ9O6BH/of310h6a4lxKlQjUtTPHCzeG2AA==",
|
|
||||||
"path": "jellyfin.common/10.11.0",
|
|
||||||
"hashPath": "jellyfin.common.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.Controller/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WV+PQy9AHdZLvYqUsNq6ZyQoxaiaEWLz0EwZGOiu8xSrepQLFope2U1VFHVCNbARwesg7s/B+9uB03eXDsQw9w==",
|
|
||||||
"path": "jellyfin.controller/10.11.0",
|
|
||||||
"hashPath": "jellyfin.controller.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.Data/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YEz7/85b98Rj14IJJIVqmzJsi69LDOKo4Ox+VHbh1vj3tkWomSPayzvG3kyU8I0yFMrd6+Ta55C20kZ2XC7vQg==",
|
|
||||||
"path": "jellyfin.data/10.11.0",
|
|
||||||
"hashPath": "jellyfin.data.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.Database.Implementations/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oLblVZzqF9zuLMdfqp8pbusSVQq6b40/RcHjGF1hxYozVNEi+UhiDX8aJipYBOrh33FFAofoQq468BvZixpPcw==",
|
|
||||||
"path": "jellyfin.database.implementations/10.11.0",
|
|
||||||
"hashPath": "jellyfin.database.implementations.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.Extensions/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1ufj+Rm0Bn6C990i2wwiT5UHPZfD65GOtJK6NcDU//DDMbuoGX1LQZxuCx+rhhRg1XdHPWzYASARYyNlFQa6cg==",
|
|
||||||
"path": "jellyfin.extensions/10.11.0",
|
|
||||||
"hashPath": "jellyfin.extensions.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.MediaEncoding.Keyframes/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/OBcg4Qj825elOGNj5bNRfABKzfAf4qNQj0/d/DwhG/+V/wsKuxS0Pc/xOEagVVjXOnqGPZz/+k8D4UvnvMoHw==",
|
|
||||||
"path": "jellyfin.mediaencoding.keyframes/10.11.0",
|
|
||||||
"hashPath": "jellyfin.mediaencoding.keyframes.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.Model/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-h+61RSXn4sk8fS6Zx9RkDyVnI5VnNbrsR2p8WcvybtNSW2pgU2uZ9pwEv2awD3ifX69weqYpQLMh91f6aidW2A==",
|
|
||||||
"path": "jellyfin.model/10.11.0",
|
|
||||||
"hashPath": "jellyfin.model.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Jellyfin.Naming/10.11.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-2++xSbhdFSb1J3XySjC6UU+uII6OdKc0DfkYx/E1oN7mSjoftyZR8eU045kVWBwsAxr+UcMI6t2DYfES2tJkRA==",
|
|
||||||
"path": "jellyfin.naming/10.11.0",
|
|
||||||
"hashPath": "jellyfin.naming.10.11.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.EntityFrameworkCore/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WjjxVyOTVs85V7SUe+lZjtGOEeVzF4RO8amrqL4adgbyThNq7vGCFzPw8buZj44gHeQYD5V/uZ/6XuqG9Jq+kA==",
|
|
||||||
"path": "microsoft.entityframeworkcore/9.0.10",
|
|
||||||
"hashPath": "microsoft.entityframeworkcore.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.EntityFrameworkCore.Abstractions/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-I3TWAs5Lbzmzu8S0T6qXhzBiO3CznYLrfE59W0npkqNHfWGH8CgA66LrHMWxWOXVTD4145QwYqiWNCdLwpJ1Ew==",
|
|
||||||
"path": "microsoft.entityframeworkcore.abstractions/9.0.10",
|
|
||||||
"hashPath": "microsoft.entityframeworkcore.abstractions.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.EntityFrameworkCore.Analyzers/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-mXNl0Gg3l3zGrClLCHepB+b7rYVuFfB9qQJwya0dUSHFuR1T0jMD8KxuNVyhQSfoWIepanhzjcG8TUNGXOcU0Q==",
|
|
||||||
"path": "microsoft.entityframeworkcore.analyzers/9.0.10",
|
|
||||||
"hashPath": "microsoft.entityframeworkcore.analyzers.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.EntityFrameworkCore.Relational/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-IJNrG5vdmFUvHR8FLLFg9AWpuE8qW1DTEN+fNLGbNTu6cnpZzzqU6+aknAGtTSAEVWosJ3BZ3TOO9wpifUvv3A==",
|
|
||||||
"path": "microsoft.entityframeworkcore.relational/9.0.10",
|
|
||||||
"hashPath": "microsoft.entityframeworkcore.relational.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-cL6iTxgJ4u5zP3eFOdBiDAtmE/B2WKTRhyJfEne7n6qvHpsMwwIDxljs210mWSO1ucBy7lR1Lo7/7kjeZeLcqQ==",
|
|
||||||
"path": "microsoft.extensions.caching.abstractions/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.caching.abstractions.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Caching.Memory/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-2iuzwIoCoqZJfH2VLk1xvlQS4PQDEuhj4dWiGb+Qpt1vHFHyffp497cTO6ucsV54W/h4JmM1vzDBv8pVAFazZg==",
|
|
||||||
"path": "microsoft.extensions.caching.memory/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.caching.memory.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ad3JxmFj0uxuFa1CT6oxTCC1lQ0xeRuOvzBRFT/I/ofIXVOnNsH/v2GZkAJWhlpZqKUvSexQZzp3EEAB2CdtJg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-D6Kng+9I+w1SQPxJybc6wzw9nnnyUQPutycjtI0svv1RHaWOpUk9PPlwIRfhhoQZ3yihejkEI2wNv/7VnVtkGA==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-iEtXCkNd5XhjNJAOb/wO4IhDRdLIE2CsPxZggZQWJ/q2+sa8dmEPC393nnsiqdH8/4KV8Xn25IzgKPR1UEQ0og==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-r9waLiOPe9ZF1PvzUT+RDoHvpMmY8MW+lb4lqjYGObwKpnyPMLI3odVvlmshwuZcdoHynsGWOrCPA0hxZ63lIA==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-UBXHqE9vyptVhaFnT1R7YJKCve7TqVI10yjjUZBNGMlW2lZ4c031Slt9hxsOzWCzlpPxxIFyf1Yk4a6Iubxx7w==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MFUPv/nN1rAQ19w43smm6bbf0JDYN/1HEPHoiMYY50pvDMFpglzWAuoTavByDmZq7UuhjaxwrET3joU69ZHoHQ==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zMNABt8eBv0B0XrWjFy9nZNgddavaOeq3ZdaD5IlHhRH65MrU7HM+Hd8GjWE3e2VDGFPZFfSAc6XVXC17f9fOA==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3pl8D1O5ZwMpDkZAT2uXrhQ6NipkwEgDLMFuURiHTf72TvkoMP61QYH3Vk1yrzVHnHBdNZk3cQACz8Zc7YGNhQ==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.10",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.Platforms/1.1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
|
|
||||||
"path": "microsoft.netcore.platforms/1.1.0",
|
|
||||||
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
|
|
||||||
"path": "microsoft.netcore.targets/1.1.0",
|
|
||||||
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"NEbml/1.1.0.5": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-svtqDc+hue9kbnqNN2KkK4om/hDrc7K127cNb5FIYfgKgzo+JNDPXNLp8NioCchHhBO3lxWd4Cp/iiZZ3aoUqg==",
|
|
||||||
"path": "nebml/1.1.0.5",
|
|
||||||
"hashPath": "nebml.1.1.0.5.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Polly/8.6.4": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uuBsDoBw0oYrMe3uTWRjkT2sIkKh+ZZnnDrLb4Z+QANfeA4+7FJacx6E8CY5GAxXRoSgFrvUADEAQ7DPF6fGiw==",
|
|
||||||
"path": "polly/8.6.4",
|
|
||||||
"hashPath": "polly.8.6.4.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Polly.Core/8.6.4": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4AWqYnQ2TME0E+Mzovt1Uu+VyvpR84ymUldMcPw7Mbj799Phaag14CKrMtlJGx5jsvYP+S3oR1QmysgmXoD5cw==",
|
|
||||||
"path": "polly.core/8.6.4",
|
|
||||||
"hashPath": "polly.core.8.6.4.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Globalization/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
|
|
||||||
"path": "system.globalization/4.3.0",
|
|
||||||
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Runtime/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
|
|
||||||
"path": "system.runtime/4.3.0",
|
|
||||||
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Text.Json/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-XM02ZBnzxk7Ti6l9YRy8Bp639wANqJzJzw4W4VYiCh+HXY9hBOWkGB4k89OLP/s/RxgM02P4a/mWcJTgFiLf1Q==",
|
|
||||||
"path": "system.text.json/9.0.10",
|
|
||||||
"hashPath": "system.text.json.9.0.10.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Threading.Tasks.Dataflow/9.0.10": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-k1o6v6V3+4mznSnPnO0FBaRjiAPL1ouKPfPQH7hO9Z2SwJHt8E45F4wX5yQh1aeja1JHPYEungQedXibng654Q==",
|
|
||||||
"path": "system.threading.tasks.dataflow/9.0.10",
|
|
||||||
"hashPath": "system.threading.tasks.dataflow.9.0.10.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -18,7 +18,7 @@ This plugin is based on my manual mod (see the [legacy branch](https://github.co
|
|||||||
- [Configuration](#configuration)
|
- [Configuration](#configuration)
|
||||||
- [Automatic Theme Selection](#automatic-theme-selection)
|
- [Automatic Theme Selection](#automatic-theme-selection)
|
||||||
- [Theme Settings](#theme-settings)
|
- [Theme Settings](#theme-settings)
|
||||||
- [Build Process](#build-process)
|
- [Build The Plugin By Yourself](#build-the-plugin-by-yourself)
|
||||||
- [Troubleshooting](#troubleshooting)
|
- [Troubleshooting](#troubleshooting)
|
||||||
- [Effects Not Showing](#effects-not-showing)
|
- [Effects Not Showing](#effects-not-showing)
|
||||||
- [Docker Permission Issues](#docker-permission-issues)
|
- [Docker Permission Issues](#docker-permission-issues)
|
||||||
@@ -77,9 +77,9 @@ To install this plugin, you will first need to add the repository in Jellyfin.
|
|||||||
1. Open your Jellyfin Dashboard.
|
1. Open your Jellyfin Dashboard.
|
||||||
2. Navigate to **Plugins** > **Manage Repositories**.
|
2. Navigate to **Plugins** > **Manage Repositories**.
|
||||||
3. Click the **+ New Repository** button to add a new repository.
|
3. Click the **+ New Repository** button to add a new repository.
|
||||||
4. Enter a name (e.g., "Seasonals") and paste the following URL into the 'Repository URL' field:
|
4. Enter a name for the repo and paste the following URL into the 'Repository URL' field:
|
||||||
```bash
|
```bash
|
||||||
https://raw.githubusercontent.com/CodeDevMLH/Jellyfin-Seasonals/refs/heads/main/manifest.json
|
https://raw.githubusercontent.com/CodeDevMLH/jellyfin-plugin-manifest/refs/heads/main/manifest.json
|
||||||
```
|
```
|
||||||
5. Click **Add**.
|
5. Click **Add**.
|
||||||
6. Go to the **Available** tab at the top.
|
6. Go to the **Available** tab at the top.
|
||||||
@@ -135,7 +135,7 @@ If automatic selection is enabled, the following themes are applied based on the
|
|||||||
## Theme Settings
|
## Theme Settings
|
||||||
Each theme contains additional settings to customize its behavior. Expand the advanced configuration section to configure each theme, adjust parameters like particle count, animation speed etc.
|
Each theme contains additional settings to customize its behavior. Expand the advanced configuration section to configure each theme, adjust parameters like particle count, animation speed etc.
|
||||||
|
|
||||||
## Build Process
|
## Build The Plugin By Yourself
|
||||||
|
|
||||||
If you want to build the plugin yourself:
|
If you want to build the plugin yourself:
|
||||||
|
|
||||||
|
|||||||
@@ -9,10 +9,7 @@ Bevor du baust, musst du die Versionsnummer in den folgenden Dateien aktualisier
|
|||||||
1. **`Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj`**
|
1. **`Jellyfin.Plugin.Seasonals/Jellyfin.Plugin.Seasonals.csproj`**
|
||||||
Suche nach `<Version>...</Version>` und ändere die Nummer.
|
Suche nach `<Version>...</Version>` und ändere die Nummer.
|
||||||
|
|
||||||
2. **`build.yaml`**
|
2. **`manifest.json`**
|
||||||
Ändere den Wert bei `version: "..."`.
|
|
||||||
|
|
||||||
3. **`manifest.json`**
|
|
||||||
Füge einen neuen Eintrag oben in die `versions`-Liste ein (oder bearbeite den vorhandenen, wenn es noch kein Release gab).
|
Füge einen neuen Eintrag oben in die `versions`-Liste ein (oder bearbeite den vorhandenen, wenn es noch kein Release gab).
|
||||||
* `version`: Deine neue Nummer.
|
* `version`: Deine neue Nummer.
|
||||||
* `changelog`: Was hat sich geändert?
|
* `changelog`: Was hat sich geändert?
|
||||||
|
|||||||
106
git_cheat_sheet.md
Normal file
106
git_cheat_sheet.md
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
# 🚀 Git Cheat Sheet: Branches, Merge, Rebase & VS Code
|
||||||
|
|
||||||
|
## 🌳 Branches (Zweige)
|
||||||
|
* **`main`** → Stabiler Stand, Production-ready (Deployment).
|
||||||
|
* **`dev`** → Aktive Entwicklung, Sammelbecken für Features.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🛠 Zusammenführen von Änderungen
|
||||||
|
|
||||||
|
### Git Merge
|
||||||
|
Führt zwei Zweige zusammen. Git sucht den letzten gemeinsamen Basispunkt und erstellt einen neuen **Merge-Commit**.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git checkout dev
|
||||||
|
git merge main
|
||||||
|
```
|
||||||
|
|
||||||
|
| Details | |
|
||||||
|
|-----------|--------|
|
||||||
|
| Wann? | In Team-Branches, bei bereits gepushten Branches, wenn Stabilität wichtiger als eine saubere History ist. |
|
||||||
|
| Vorteile | Sicher, einfach nachvollziehbar, schreibt die History nicht um. |
|
||||||
|
| Nachteile | Die History kann bei vielen Merges unübersichtlich ("Spaghetti-Graph") werden. |
|
||||||
|
|
||||||
|
### Git Rebase
|
||||||
|
Setzt deine Commits neu auf die Spitze eines anderen Branches. Die Commit-IDs werden dabei neu geschrieben.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git checkout dev
|
||||||
|
git rebase main
|
||||||
|
```
|
||||||
|
|
||||||
|
| Details | |
|
||||||
|
|-----------|--------|
|
||||||
|
| Wann? | In lokalen Feature-Branches (bevor sie geteilt werden), um die History sauber zu halten. |
|
||||||
|
| Vorteile | Erzeugt eine perfekt lineare, leicht lesbare History. |
|
||||||
|
| Nachteile | ⚠️ Gefährlich auf geteilten/öffentlichen Branches. Konflikte müssen ggf. für jeden einzelnen Commit gelöst werden. |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📦 Temporäres Speichern & Spezialbefehle
|
||||||
|
|
||||||
|
### Stash (Das "Regal")
|
||||||
|
Speichert uncommitted Changes temporär, um das Arbeitsverzeichnis sauber zu machen, ohne zu committen.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git stash # Änderungen "parken".
|
||||||
|
git stash pop # Änderungen zurückholen und Stash leeren.
|
||||||
|
```
|
||||||
|
|
||||||
|
**Wann?** Wenn du schnell den Branch wechseln musst, aber deine Arbeit noch nicht fertig ist.
|
||||||
|
|
||||||
|
### Cherry-pick
|
||||||
|
Kopiert einen ganz gezielten Commit von einem Branch in deinen aktuellen.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git cherry-pick <commit-hash>
|
||||||
|
```
|
||||||
|
|
||||||
|
**Wann?** Wenn ein Bugfix auf dem falschen Branch gelandet ist oder du nur eine einzige Funktion aus einem Feature-Branch brauchst.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🔄 Checkout & Switch
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git checkout dev # oder git switch dev – Wechselt zum Branch.
|
||||||
|
git checkout -f dev # Force Checkout: Wechselt den Branch und verwirft alle ungespeicherten lokalen Änderungen unwiderruflich! ⚠️
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 💻 VS Code Git-Optionen (UI)
|
||||||
|
|
||||||
|
VS Code bietet beim Branch-Wechsel oft drei intelligente Optionen an:
|
||||||
|
|
||||||
|
* **Migrate Changes ⭐**
|
||||||
|
* Nimmt deine aktuellen Änderungen einfach mit in den neuen Branch.
|
||||||
|
* (Intern: stash → switch → stash pop).
|
||||||
|
* **Stash & Checkout**
|
||||||
|
* Parkt deine Änderungen sicher im Stash und wechselt den Branch. Die Änderungen bleiben im Stash, bis du sie manuell wieder herausholst.
|
||||||
|
* **Force Checkout ⚠️**
|
||||||
|
* Wechselt den Branch und löscht deine aktuellen, ungespeicherten Änderungen. Nur nutzen, wenn die Arbeit weggeworfen werden kann.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🔄 Typischer Sync-Workflow
|
||||||
|
|
||||||
|
Um den Entwicklungs-Branch aktuell zu halten, nachdem dev in main gemerged wurde:
|
||||||
|
|
||||||
|
1. Auf dev entwickeln.
|
||||||
|
2. Merge dev → main für das Release.
|
||||||
|
3. Zurück auf dev wechseln:
|
||||||
|
```bash
|
||||||
|
git checkout dev
|
||||||
|
git merge main # (oder rebase), um den neuesten Stand vom Main wieder in Dev zu haben.
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🧠 Merksätze
|
||||||
|
|
||||||
|
* **Merge** = Historien verbinden (Sicher & Dokumentiert).
|
||||||
|
* **Rebase** = Historie neu schreiben (Linear & Sauber).
|
||||||
|
* **Stash** = "Ich parke das mal kurz hier."
|
||||||
|
* **Migrate Changes** = Sicherer Branch-Wechsel mit "Gepäck".
|
||||||
BIN
logo.png
BIN
logo.png
Binary file not shown.
|
Before Width: | Height: | Size: 4.4 MiB After Width: | Height: | Size: 253 KiB |
BIN
logos/Seasonals_logo_mod.png
Normal file
BIN
logos/Seasonals_logo_mod.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 253 KiB |
@@ -8,6 +8,30 @@
|
|||||||
"category": "General",
|
"category": "General",
|
||||||
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/raw/branch/main/logo.png",
|
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/raw/branch/main/logo.png",
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"version": "1.5.0.0",
|
||||||
|
"changelog": "- Refactor SeasonalsPlugin: Simplify script injection logic",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.5.0.0/Jellyfin.Plugin.Seasonals.zip",
|
||||||
|
"checksum": "fa174c764164b0524fb2e8f11ffbcace",
|
||||||
|
"timestamp": "2026-01-06T22:21:49Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.4.1.0",
|
||||||
|
"changelog": "- fix fireworks display issue on scroll",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.4.1.0/Jellyfin.Plugin.Seasonals.zip",
|
||||||
|
"checksum": "bd8d9c6af064de011a708ea85e9b08c0",
|
||||||
|
"timestamp": "2026-01-06T21:12:46Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.4.0.0",
|
||||||
|
"changelog": "- settings linked directly in the main menu\n- renamed main plugin script\n- added enable/disable toggle for the entire plugin",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/Jellyfin-Seasonals-Plugin/releases/download/v1.4.0.0/Jellyfin.Plugin.Seasonals.zip",
|
||||||
|
"checksum": "205606075eec5f93d3da37efaecdeab5",
|
||||||
|
"timestamp": "2025-12-28T19:11:04Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "1.3.4.0",
|
"version": "1.3.4.0",
|
||||||
"changelog": "- some fixes for js loading\n- adapted config page descriptions",
|
"changelog": "- some fixes for js loading\n- adapted config page descriptions",
|
||||||
@@ -57,5 +81,40 @@
|
|||||||
"timestamp": "2025-12-15T15:33:15Z"
|
"timestamp": "2025-12-15T15:33:15Z"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"guid": "d7e11d57-819b-4bdd-a88d-53c5f5560225",
|
||||||
|
"name": "Media Bar Enhanced",
|
||||||
|
"description": "A jellyfin plugin to display a media bar (featured content) for jellyfin web.",
|
||||||
|
"overview": "Media Bar for Jellyfin",
|
||||||
|
"owner": "CodeDevMLH",
|
||||||
|
"category": "General",
|
||||||
|
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
||||||
|
"versions": [
|
||||||
|
{
|
||||||
|
"version": "1.0.0.2",
|
||||||
|
"changelog": "fixes",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.0.0.2/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "1041b403ec0193c2172a6fe15501afd3",
|
||||||
|
"timestamp": "2026-01-06T21:21:37Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.0.0.1",
|
||||||
|
"changelog": "fixes",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.0.0.1/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "f4e6194a9cc72fdda7436161c73832de",
|
||||||
|
"timestamp": "2026-01-06T21:18:33Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "1.0.0.0",
|
||||||
|
"changelog": "Initial release",
|
||||||
|
"targetAbi": "10.11.0.0",
|
||||||
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.0.0.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
|
"checksum": "2ba7cc7f238f6aa7097628797935b903",
|
||||||
|
"timestamp": "2026-01-06T18:56:30Z"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user