Bond_009
56ac64e70a
Minor improvements
...
* properly dispose CancellationTokenSource
* rewrite DynamicHlsController.GetSegmentLengths
* remove dead code
4 years ago
Bond_009
fb090df0b5
Enable nullable reference types for MediaBrowser.Controller
4 years ago
Bond-009
a4a3f598af
Merge pull request #5982 from Bond-009/nullable
4 years ago
BaronGreenback
2e98de9062
Code Clean up: Convert to null-coalescing operator ?? ( #5845 )
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com>
4 years ago
Bond_009
91c2a57b28
Enable nullable reference types for MediaBrowser.Common
4 years ago
Bond-009
9d3f614527
Merge pull request #5943 from Maxr1998/device-profile-defaults
4 years ago
Joshua M. Boniface
e71cd8274a
Merge pull request from GHSA-rgjw-4fwc-9v96
...
Remove /Images/Remote API endpoint
4 years ago
Joshua M. Boniface
3e4c860986
Remove /Items/RemoteSearch/Image API endpoint
4 years ago
Joshua M. Boniface
dc81d576ab
Remove /Images/Remote API endpoint
4 years ago
Maxr1998
70771fdcd6
Nullability handling for device profile classes
4 years ago
Maxr1998
e90fbe90f9
Remove extraneous 'stream' parameter
...
The argument isn't passed to the method but causes the API generator to include an unnecessary parameter.
Also fixes some typos in the documentation comments.
4 years ago
Cody Robibero
69e91c33d8
Update Jellyfin.Api/Controllers/GenresController.cs
4 years ago
crobibero
d27ca993a5
Add ability to sort on Genre, MusicGenre, Artist
4 years ago
Bond-009
224c48821e
Merge pull request #5887 from Bond-009/perf
...
Improve perf of db save and query
4 years ago
crobibero
856819e58f
Don't use obsolete Password property
4 years ago
Bond_009
f46195899e
Improve perf of db save and query
4 years ago
Bond_009
499bac5185
EncodingHelper: Fix circular dependency
4 years ago
BaronGreenback
bc1cc2d04a
Remove unused using directives
4 years ago
Jack
198cc6e76a
Some code cleanup. Allow NextUpDateCutoff to be null
4 years ago
Jack
d7855500c2
Add NextUpCutoffDate to NextUpQuery
4 years ago
Claus Vium
dc4714fe40
fix webp compatibility testing ( #5787 )
4 years ago
Cody Robibero
cc59abd54e
Mark cropWhitespace parameter as obsolete ( #5751 )
4 years ago
Joshua M. Boniface
770c123d12
Merge pull request #5764 from cvium/fix-folders-perms
...
Do not check permissions for Folders collectiontype
4 years ago
Odd Stråbø
13d0837b78
(mostly)Fix ResizeFill
4 years ago
Odd Stråbø
383aa4e4d9
Add Resize to fill box alternative to image endpoints
4 years ago
cvium
f2e7491755
Do not check permissions for Folders collectiontype
4 years ago
Patrick Barron
8607b52541
Make device/session code async
4 years ago
Patrick Barron
44e71774b1
Rewrite device manager using EF Core
4 years ago
Bond-009
b2fbf97abd
Merge pull request #4988 from Bond-009/crop
4 years ago
Claus Vium
a1718e392b
Merge pull request #5631 from BrianCArnold/FixMessageCommand
4 years ago
Bond-009
4f387dca6e
Merge pull request #5598 from cvium/fix_hls_default_values
4 years ago
Bond-009
ec0ef1530c
Merge pull request #5602 from Ullmie02/IP-string-IP
4 years ago
Patrick Barron
499785bebb
Use new entities for API key endpoints
4 years ago
BrianCArnold
4fa2a32d81
Apply suggestions from code review
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
4 years ago
BrianCArnold
af03b280bc
Update SessionController.cs
4 years ago
BrianCArnold
80fe48fda9
Update SessionController.cs
...
Removed unnecessary construction of POCO to represent data from POST body
4 years ago
Brian Arnold
ca25301e64
Added Required attribute to Text property of MessageCommand.
4 years ago
Brian C. Arnold
998833ea6e
Removed null check for body object and user [Required] attribute in replacement.
4 years ago
Brian Arnold
f114ba57dd
Fixed comment and code block runes to match coding
...
standards required by Jellyfin team.
4 years ago
Brian Arnold
81e3e5ca48
Changed SessionController.SendMessageCommand
...
implementation receive data in the POST body, as that is how the
jellyfin-web client currently posts the data to the server.
Resolves : #5628
4 years ago
Claus Vium
9144d11a9d
Merge pull request #5624 from crobibero/subtitle-format
4 years ago
crobibero
afe3b5999e
Fix route naming
4 years ago
lmaonator
694d772b11
Update Jellyfin.Api/Controllers/SessionController.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
4 years ago
crobibero
5b758c4711
Mark query parameters as obsolete
4 years ago
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.
4 years ago
crobibero
e0ff51cf2a
Mark query parameters as obsolete
4 years ago
crobibero
73fe9d3f69
Allow subtitle format to be set from query parameter.
4 years ago
cvium
b3d084044e
enable range processing for download endpoints
4 years ago
David
19e4ef82dd
Remove conversion from IPAddress to string to IPAddress
4 years ago
cvium
7dedeb6c79
change HLS endpoint defaults to false
4 years ago
Erwin de Haan
1f3aa3fe6f
Apply review suggestions
4 years ago
Erwin de Haan
239a7156cc
Fix arbitrary image file reads in ImageByNameController
...
GHSL-2021-050: Issue 4 Arbitrary image file read and directory traversal.
4 years ago
Erwin de Haan
f61d18612b
Fix directory traversal in the HlsSegmentController in a fairly rudimentary but working way.
...
GHSL-2021-050: Issue 1,2,3 Arbitrary file read and directory traversal.
The segment id's can probably just be verified to be an actual ID or to not contain any forward or backward slashes
4 years ago
Patrick Barron
e5380c653b
Merge branch 'master' into ef-cleanup
...
# Conflicts:
# Jellyfin.Data/Entities/Libraries/MediaFileStream.cs
# Jellyfin.Data/Jellyfin.Data.csproj
4 years ago
Bond-009
0e5d4a3bcf
Merge pull request #5422 from Bond-009/warn51
4 years ago
Bond-009
8bb2420a25
Merge pull request #5518 from crobibero/missing-endpoints
...
Add missing InstantMix endpoints
4 years ago
Bond_009
a8ed753f6c
FxCop -> Net Analyzers (part 2)
4 years ago
crobibero
9ac9543ee2
Add missing InstantMix endpoints
4 years ago
Bond-009
260b48ef9d
Merge pull request #5515 from jellyfin/fix-refresh-endpoint
...
fix refresh endpoint
4 years ago
Claus Vium
fe2a310fe2
fix refresh endpoint
...
It was originally a POST 9af6eda0b4/MediaBrowser.Api/Library/LibraryService.cs (L155)
4 years ago
crobibero
eef15dc7ac
Fix third part integration
4 years ago
David
60ffa6f514
Use FileShare.None when creating files
4 years ago
Patrick Barron
f638ee6b09
Enable nullable for Jellyfin.Data and remove unnecessary attributes
4 years ago
Bond-009
e839929b91
Merge pull request #5380 from Bond-009/plugins
...
100% branch coverage for DashboardController
4 years ago
Bond-009
3741be51ec
Merge pull request #5383 from cvium/fix-mergeversions-overflow
...
do not pick a linked item as primary when merging versions
4 years ago
cvium
59814bd55e
do not pick a linked item as primary when merging versions
4 years ago
Claus Vium
d0a2d00b29
Fix UpdateMediaPath model binding ( #5378 )
4 years ago
Bond_009
a6d0db5d04
100% branch coverage for DashboardController
4 years ago
crobibero
858c91ab48
Specify defaults or set query parameter to nullable
4 years ago
Bond_009
914e891689
Fix unchecked input
4 years ago
Joshua M. Boniface
7ece3c5523
Merge pull request #5273 from Bond-009/warn31
4 years ago
Bond_009
ec3237ba55
Fix tests
4 years ago
Bond_009
57102090d3
Add tests for DashboardController
4 years ago
Bond_009
40b9e7592f
Fix build
4 years ago
dkanada
13d65318eb
Merge pull request #5223 from Bond-009/minor10
...
Minor improvements
4 years ago
Bond_009
65bab55ca0
Minor improvements
4 years ago
dkanada
9fcdbd4c4b
remove deprecated settings from server config
4 years ago
Bond-009
76d66e0dee
Merge pull request #5208 from crobibero/api-post-image
...
Add image file accept to openapi
4 years ago
crobibero
223b42aed3
Create BaseItemKind enum
4 years ago
crobibero
d5f0b046bb
Add image file accept to openapi
4 years ago
David Ullmer
07f1a2c2dc
Update Jellyfin.Api/Controllers/UserController.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
4 years ago
David
eb0ff0c370
Fix forgot password pin request
4 years ago
dkanada
86859a3926
Merge pull request #5010 from BaronGreenback/Remove_IPluginConfigurationPage
...
Removal of IPluginConfigurationPage
4 years ago
Bond-009
4a2678e63b
Merge pull request #5097 from Bond-009/cleanup4
...
Remove useless abstraction and clean up formatting
4 years ago
crobibero
77b417e41e
Mark non-nullable body as null
4 years ago
Bond_009
1c2cd7efa0
Remove useless abstraction and clean up formatting
4 years ago
crobibero
55670b91b2
Use ArrayModelBinder for sortBy and sortOrder
4 years ago
crobibero
59ff2c5b4b
Add ability to mark query parameter as obsolete.
4 years ago
crobibero
3b9567d583
Add query parameter to disable returning first episode as next up
4 years ago
BaronGreenback
a4e838fbf5
Remoed configurationPageType
4 years ago
BaronGreenback
c6aa6ceed9
Removal of IPluginConfigurationPage
4 years ago
crobibero
5f998bdd1f
Require elevated auth to upload subtitles
4 years ago
Bond_009
620fbf0f89
Remove CropWhitespace function
4 years ago
crobibero
a15e126ef8
Fix inverted SkipWhile
4 years ago
Cody Robibero
5c57569692
Merge branch 'master' into PluginDowngrade
4 years ago
BaronGreenback
4c291da45c
Encoding fix for System Logs. ( #4564 )
4 years ago
BaronGreenback
889e988167
Updated to latest unstable.
4 years ago
BaronGreenback
62702fa3eb
Changes as requested
4 years ago
Joshua M. Boniface
bfdd4727b5
Merge pull request #4850 from BaronGreenback/NetworkApiFix
...
Null reference fix
4 years ago
Joshua M. Boniface
a77788906c
Merge pull request #4821 from BaronGreenback/disableDlna
4 years ago