cvium
7670189561
make directoryservice cache case sensitive
2021-03-27 00:26:56 +01:00
David
78f7fdeacc
Rename methods and optimize allocations
2021-03-26 17:16:29 +01:00
lmaonator
694d772b11
Update Jellyfin.Api/Controllers/SessionController.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-03-26 14:13:45 +01:00
crobibero
5b758c4711
Mark query parameters as obsolete
2021-03-26 07:07:45 -06:00
lmaonator
db2fbcef2b
Fix stream selection having no effect when casting
...
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-26 13:41:34 +01:00
crobibero
e0ff51cf2a
Mark query parameters as obsolete
2021-03-25 20:30:15 -06:00
crobibero
73fe9d3f69
Allow subtitle format to be set from query parameter.
2021-03-25 18:06:25 -06:00
Patrick Barron
7364155579
Clean up user deletion
2021-03-25 19:51:27 -04:00
Patrick Barron
a7b29e2fe0
Clean up user renaming
2021-03-25 19:51:27 -04:00
Patrick Barron
daa21c9e99
Add migration
2021-03-25 19:51:27 -04:00
Patrick Barron
ea0a9c2cca
Properly configure foreign keys
2021-03-25 19:51:27 -04:00
Patrick Barron
a07ad71222
Use NOCASE collation and index on username field
2021-03-25 19:51:27 -04:00
Patrick Barron
3c4187e780
Add indexes for user permissions and preferences
2021-03-25 19:51:27 -04:00
Patrick Barron
f1cadb27d9
Add id properties for preferences and permissions
2021-03-25 19:51:27 -04:00
Patrick Barron
0a579e5bbd
Configure user deletion behavior
2021-03-25 19:51:27 -04:00
Patrick Barron
3ffef5794e
Delete unnecessary indexes
...
Multicolumn indexes can be queried on the first column without needing a separate index
2021-03-25 19:51:26 -04:00
Patrick Barron
36669ff451
Use correct setter access modifiers
2021-03-25 19:51:26 -04:00
Bond-009
6946e58ca4
Merge pull request #5614 from jellyfin/Bond-009-patch-2
2021-03-25 23:55:54 +01:00
Bond-009
4cea6d9ccf
Apply suggestions from code review
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-03-25 18:53:36 +01:00
Claus Vium
411570e6d4
Merge pull request #5621 from cvium/enable-range-processing-download
...
enable range processing for download endpoints
2021-03-25 17:01:18 +01:00
Claus Vium
a76d997a86
Merge pull request #5620 from MrTimscampi/iso-ignore
2021-03-25 17:00:32 +01:00
cvium
b3d084044e
enable range processing for download endpoints
2021-03-25 15:09:37 +01:00
MrTimscampi
5bb7d99b48
Remove DVDs from files exempt from chapter image extraction
2021-03-25 13:16:09 +01:00
MrTimscampi
ef9eba8bc9
Ignore format for ISO files
2021-03-25 12:23:29 +01:00
Bond-009
6d0b2ed080
Merge pull request #5579 from cocool97/master
2021-03-25 01:45:43 +01:00
Bond-009
55102973d6
Merge pull request #5596 from BaronGreenback/DLNA_Hardening
...
Implemented DLNA exception handling
2021-03-25 01:29:10 +01:00
Bond-009
16011d96a0
Merge pull request #5321 from Ullmie02/nfo-thumb
2021-03-25 01:10:37 +01:00
Claus Vium
e64f9f2f66
Merge pull request #5613 from accek/accek-samsung-dlna-fix
2021-03-24 23:04:28 +01:00
Szymon Acedański
b1e8a8565f
Update Jellyfin.Api/Helpers/FileStreamResponseHelpers.cs
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-03-24 22:46:08 +01:00
cocool97
86852178c2
Update MediaBrowser.Controller/LiveTv/ChannelInfo.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-03-24 21:23:59 +01:00
Bond-009
066c19a26b
Fix possible null ref exception
2021-03-24 21:06:03 +01:00
Szymon Acedański
136136dea9
Fix incorrect responses for HEAD /audio/<id>/stream
...
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-24 20:43:54 +01:00
Bond_009
c2cd7fa0b2
Add more PasswordHash tests
2021-03-24 18:39:33 +01:00
Bond_009
d77507ba09
Rewrite PasswordHash.Parse to work with ReadOnlySpans
2021-03-24 18:21:14 +01:00
David
a4cac09d5b
Use |=
2021-03-23 19:25:32 +01:00
David
c2af50c51d
Add tests for IsInNetwork
2021-03-23 17:39:55 +01:00
David
19e4ef82dd
Remove conversion from IPAddress to string to IPAddress
2021-03-23 17:16:10 +01:00
David
572600b38e
Use conditional operator instead of if/else block
2021-03-23 15:47:55 +01:00
BaronGreenback
6765f6ab17
fix compilation
2021-03-23 00:12:14 +00:00
Bond-009
8410a9a266
Merge pull request #5586 from nyanmisaka/disable-autorotate
2021-03-22 22:59:01 +01:00
cvium
74e14b4ca5
fix isdirectstream default
2021-03-22 22:34:47 +01:00
cvium
7dedeb6c79
change HLS endpoint defaults to false
2021-03-22 20:53:55 +01:00
Kenneth SB
4637bbc723
Translated using Weblate (Danish)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/da/
2021-03-22 13:34:36 -04:00
BaronGreenback
4bd345fbab
DLNA Exception catching
2021-03-22 17:21:12 +00:00
BaronGreenback
5d16d1f66d
Merge branch 'master' into RemoteAccessFix
2021-03-22 17:05:44 +00:00
BaronGreenback
7fa525c83b
Added more tests
2021-03-22 17:04:09 +00:00
Nyanmisaka
0853d1265c
Disable auto rotation for some HWA methods ( #5586 )
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-03-22 17:59:57 +01:00
Bond-009
f6671e05fd
Merge pull request #5580 from Bond-009/integrationtests2
2021-03-22 17:57:14 +01:00
Bond_009
5253483ce4
Improve naming
2021-03-22 13:49:00 +01:00
Nyanmisaka
fab4bf184e
Apply suggestions from code review
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-03-22 19:47:05 +08:00