-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display previous/next keyboard shortcuts #5759
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if we should add this to every button. But could you add shortcuts for the previous/next chapter buttons?
jellyfin-web/src/controllers/playback/video/index.js
Lines 1337 to 1342 in b681184
case 'PageUp': | |
playbackManager.nextChapter(currentPlayer); | |
break; | |
case 'PageDown': | |
playbackManager.previousChapter(currentPlayer); | |
break; |
Also, I think it is fine to rebase this PR to release-10.9.z
.
Done |
Another two:
We need to add upper case variants to:
like it is done for jellyfin-web/src/controllers/playback/video/index.js Lines 1279 to 1280 in ed9cc5e
Otherwise, listed shortcuts don't work with CapsLock enabled. On YouTube, Shift and CapsLock have no effect on these actions. |
I had noticed CapsLock didn't have an effect for Edit: ie. |
> On YouTube, Shift and CapsLock have no effect on these actions.
Done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably add translations for special keys (Shift, PageDown, etc.) after this lands in master... We might also need to reverse the order for RTL languages if that isn't handled already somehow.
Perhaps only for some languages with special keyboards. At least in KDE they are not translated into Russian, i.e. as they are labeled on the keyboard: |
That's good to know. I was told in chat that they are translated in Chinese but maybe we just wait to see if it's an issue for anyone or something they are accustomed to seeing. 👍 |
Display previous/next keyboard shortcuts Original-merge: 2d68f94 Merged-by: thornbill <[email protected]> Backported-by: Bill Thornton <[email protected]>
Changes
Document previous/next keyboard shortcuts in UI
Issues