2023-10-21, 11:21 PM
(This post was last modified: 2023-10-22, 10:02 PM by Manly Manlison. Edited 2 times in total.)
For now I have just created a PowerShell script and converted it into an .exe and added a button in the jellyfin menu to download it. The script is just as simple as:
This little script is actually so great for me because when I edit small stuff in the index.html file I normally can't see the changes on the desktop clients, and on chrome you usually have to ctrl+F5 to see the changes, but the script makes me able to see them!
I'm still trying to figure out how to do that on macOS and where the cache folder is located tho XD
Code:
Set-Location "$($env:UserProfile)\AppData\Local\"
Remove-Item 'Jellyfin Media Player' -Recurse
This little script is actually so great for me because when I edit small stuff in the index.html file I normally can't see the changes on the desktop clients, and on chrome you usually have to ctrl+F5 to see the changes, but the script makes me able to see them!
I'm still trying to figure out how to do that on macOS and where the cache folder is located tho XD