aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-29[5644] [DLNA] [Music] Next track command from any DLNA device does not do ↵Stéphane Senart
anything.
2021-03-29Send playing item status in SyncPlay group updateIonut Andrei Oanca
2021-03-29Split valid and invalid testsDavid
2021-03-28Fix storing outdated sessions in SyncPlayIonut Andrei Oanca
2021-03-27Removed null check for body object and user [Required] attribute in replacement.Brian C. Arnold
2021-03-27Fixed comment and code block runes to match codingBrian Arnold
standards required by Jellyfin team.
2021-03-27Changed SessionController.SendMessageCommandBrian Arnold
implementation receive data in the POST body, as that is how the jellyfin-web client currently posts the data to the server. Resolves: #5628
2021-03-27Merge pull request #5495 from BaronGreenback/RemoteAccessFixBond-009
2021-03-27Check appropriate profile typeDmitry Lyzo
2021-03-27Merge pull request #5624 from crobibero/subtitle-formatClaus Vium
2021-03-27changed split to single quotesBaronGreenback
2021-03-27Merge pull request #5634 from cvium/directoryservice-case-sensitiveBond-009
make directoryservice cache case sensitive
2021-03-26Fix route namingcrobibero
2021-03-27Merge pull request #5629 from lmaonator/fix-cast-stream-selectionClaus Vium
2021-03-27make directoryservice cache case sensitivecvium
2021-03-26Rename methods and optimize allocationsDavid
2021-03-26Update Jellyfin.Api/Controllers/SessionController.cslmaonator
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-03-26Mark query parameters as obsoletecrobibero
2021-03-26Fix stream selection having no effect when castinglmaonator
When casting to jellyfin-mpv-shim from jellyfin-web in the browser, jellyfin-web sends data about which version (for grouped items) and which streams the user selected in the browser to the "Sessions/{sessionId}/Playing" API endpoint. The API endpoint currently doesn't forward them to jellyfin-mpv-shim through the Play command, which results in the default streams being played instead of the browser selected ones. PlayRequest already has the properties and they are already sent to the cast client by SendPlayCommand when present. jellyfin-mpv-shim will already use them to select the wanted streams when it receives the Play command. All that's needed to make it work is to take the parameters and assign them to PlayRequest.
2021-03-25Mark query parameters as obsoletecrobibero
2021-03-25Allow subtitle format to be set from query parameter.crobibero
2021-03-25Clean up user deletionPatrick Barron
2021-03-25Clean up user renamingPatrick Barron
2021-03-25Add migrationPatrick Barron
2021-03-25Properly configure foreign keysPatrick Barron
2021-03-25Use NOCASE collation and index on username fieldPatrick Barron
2021-03-25Add indexes for user permissions and preferencesPatrick Barron
2021-03-25Add id properties for preferences and permissionsPatrick Barron
2021-03-25Configure user deletion behaviorPatrick Barron
2021-03-25Delete unnecessary indexesPatrick Barron
Multicolumn indexes can be queried on the first column without needing a separate index
2021-03-25Use correct setter access modifiersPatrick Barron
2021-03-25Merge pull request #5614 from jellyfin/Bond-009-patch-2Bond-009
2021-03-25Apply suggestions from code reviewBond-009
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-03-25Merge pull request #5621 from cvium/enable-range-processing-downloadClaus Vium
enable range processing for download endpoints
2021-03-25Merge pull request #5620 from MrTimscampi/iso-ignoreClaus Vium
2021-03-25enable range processing for download endpointscvium
2021-03-25Remove DVDs from files exempt from chapter image extractionMrTimscampi
2021-03-25Ignore format for ISO filesMrTimscampi
2021-03-25Merge pull request #5579 from cocool97/masterBond-009
2021-03-25Merge pull request #5596 from BaronGreenback/DLNA_HardeningBond-009
Implemented DLNA exception handling
2021-03-25Merge pull request #5321 from Ullmie02/nfo-thumbBond-009
2021-03-24Merge pull request #5613 from accek/accek-samsung-dlna-fixClaus Vium
2021-03-24Update Jellyfin.Api/Helpers/FileStreamResponseHelpers.csSzymon Acedański
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-03-24Update MediaBrowser.Controller/LiveTv/ChannelInfo.cscocool97
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-03-24Fix possible null ref exceptionBond-009
2021-03-24Fix incorrect responses for HEAD /audio/<id>/streamSzymon Acedański
Without this fix my Samsung Soundbar (HW-Q80R) fails to play using DLNA and returns "Error: Resource not found (716)" instead. I had a look on tcpdump network logs between Jellyfin and the soundbar and noticed that the device performs a HEAD request for the media before responding to the DLNA UPNP control request from Jellyfin (or BubbleUPNP Android App). Jellyfin retuns 204 No Content response, which is unusual. Common web servers generally return 200 OK if the GET would return content, and this is not-very-clearly suggested [in HTTP spec](https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.1) The other patch is to ensure, that invalid Content-Length: 0 is not returned with the HEAD response in the streaming case. I think in both cases we still don't return the same headers with HEAD as with GET (e.g. Content-Length or Accept-Ranges), but at least we don't return anything misleading.
2021-03-24Add more PasswordHash testsBond_009
2021-03-24Rewrite PasswordHash.Parse to work with ReadOnlySpansBond_009
2021-03-24Delay starting services until after network is onlineMason Tran
2021-03-23Use |=David