mirror of
https://github.com/danieladov/jellyfin-plugin-skin-manager.git
synced 2026-05-09 08:25:58 +02:00
[GH-ISSUE #71] The Skin Manager goes back to version 1.5.0.0 after installing latest 2.0.1 #37
Labels
No labels
enhancement
enhancement
good first issue
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/jellyfin-plugin-skin-manager#37
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @vinayakv22 on GitHub (Jul 4, 2024).
Original GitHub issue: https://github.com/danieladov/jellyfin-plugin-skin-manager/issues/71
After installing the latest version 2.0.1 and restarting Jellyfin(to enable the plugin) the version goes to 1.5.0.0. Is jellyfin detecting it as higher version on the repo?
@naterfute commented on GitHub (Jul 31, 2024):
+1
@vinayakv22 commented on GitHub (Aug 5, 2024):
The only solution that I found was to rename the 2.0.1 package to 1.5.0.0. it would show as 1.5.0.0 but you'll have the latest version
@samrg123 commented on GitHub (Aug 5, 2024):
Recommend moving this issue to a bug.
From some digging this issue is caused by an improperly built Jellyfin.Plugin.SkinManager.dll bundled in release version 2.0.1. The built dll still uses the old assembly version of 1.5.0.0 instead of 2.0.1.
When Jellfin loads the plugin at boot it uses the reported dll version instead of using the version in the Skin Manager meta.json file. This can results in broken references (such as a missing plugin image) which can be 'fixed' by changing the version in Skin Manager's meta.json file to 1.5.0.0 and creating a "Skin Manager_1.5.0.0" symbolic link that points to
Skin Manager_2.0.1in the jellyfin plugin folder ("/config/plugins" on Linux).@iamLazyCode commented on GitHub (Aug 7, 2024):
can you please fix it
@WickedSquirrel commented on GitHub (Aug 14, 2024):
+1
@igiffrekt commented on GitHub (Sep 4, 2024):
Please fix it, same issue here
@igiffrekt commented on GitHub (Sep 4, 2024):
Can you please tell me how did you do that exactly? Would nice to have a workaround until it's fixed
@markalex2209 commented on GitHub (Nov 4, 2024):
AFAICT, issue is caused by the dll version inside of release 2.0.1 still being 1.5.0.0. I guess during release somehow older version of dll was published.
@danieladov, can you please bump the version and trigger new release?
P.S. Image for skin not showing up in the plugin manager also caused by this. Jellyfin tries to fetch image from
/Plugins/e9ca8b8eca6d40e785dc58e536df8eb3/1.5.0.0/Imagebut gets 404. And/Plugins/e9ca8b8eca6d40e785dc58e536df8eb3/2.0.1/Imageget image normally.@danieladov commented on GitHub (Nov 4, 2024):
Hi, I've just released a new version, it should be working now
@markalex2209 commented on GitHub (Nov 5, 2024):
Yep, after update correct version is loaded:


Also, image is showing up now)
Thank you!