2023-12-30, 09:39 AM
(This post was last modified: 2023-12-30, 10:15 AM by aurelmarius. Edited 1 time in total.)
(2023-12-01, 10:21 PM)Ala Ibrahim Wrote: Ok, so I created a patch (https://pastebin.com/EEgvReaw) to apply the changes locally without needing to wait for anyone to update their repo, if any body wants to have a similar setup.
You need git and nodejs on the machine you are doing this setup on, steps to get this setup
git clone https://github.com/jellyfin/jellyfin-web.git
cd jellyfin-web
git checkout v10.8.13 # <- This is to check out the version to apply it to
# Fetch the patch and apply it
curl -s https://pastebin.com/raw/EEgvReaw > skipintro.patch
git apply skipintro.patch
# regular build steps
npm install
npm run build:production
At this point you have your build ready in the dist folder
If you also want to install Jellyscrub, now would be the time to editdist/index.html
to add the script tag.
then you can use the dist folder as the/jellyfin/jellyfin-web
folder, for example I have
- ./jellyfin-web/distjellyfin/jellyfin-web
in the volumes section in my docker-compose.yml file
Hope this helps someone.
I tried your patch but can't apply.
LE: This worked: git apply --ignore-whitespace --ignore-space-change skipintro.patch
Code:
root@storage:~/jelly/jellyfin-web# git checkout v10.8.13
HEAD is now at 8e37078b6 Bump version to 10.8.13
root@storage:~/jelly/jellyfin-web# git apply skipintro.patch
error: patch failed: src/assets/css/videoosd.scss:375
error: src/assets/css/videoosd.scss: patch does not apply
error: patch failed: src/controllers/playback/video/index.html:6
error: src/controllers/playback/video/index.html: patch does not apply
error: patch failed: src/controllers/playback/video/index.js:462
error: src/controllers/playback/video/index.js: patch does not apply
root@storage:~/jelly/jellyfin-web#