aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
AgeCommit message (Collapse)Author
2022-01-11Refactor and add scheduled taskcvium
2022-01-10suggestions from reviewCody Robibero
2022-01-08Merge pull request #7101 from Bond-009/imagejpgCody Robibero
Remove incorrect mime type image/jpg
2022-01-07Merge branch 'master' into keyframe_extraction_v1cvium
# Conflicts: # Jellyfin.Api/Controllers/DynamicHlsController.cs # MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs # MediaBrowser.MediaEncoding/Encoder/MediaEncoder.cs
2022-01-06Add null check for audio streamCody Robibero
2022-01-04Clean upCody Robibero
2022-01-04Apply suggestions from code reviewDavid Ullmer
2022-01-04Include Splashscreen url in the branding endpointDavid Ullmer
2022-01-04Add Splashscreen API endpoint to ImageControllerDavid Ullmer
2022-01-04Remove incorrect mime type image/jpgBond_009
2022-01-03Merge pull request #7052 from crobibero/image.jpegCody Robibero
2021-12-27Remove more warningsCody Robibero
2021-12-27More cleanupBond_009
2021-12-26Merge pull request #6934 from nyanmisaka/hwaCody Robibero
HWA pipeline refactor, AMD/Intel/Nvidia full hardware filtering support, AV1 hwdec
2021-12-25Add image/jpg to extension lookupCody Robibero
2021-12-24Update StyleCopBond_009
2021-12-25Merge remote-tracking branch 'origin/master' into hwanyanmisaka
2021-12-24Apply suggestions from code reviewnyanmisaka
Co-authored-by: Cody Robibero <cody@robibe.ro> Co-authored-by: Claus Vium <cvium@users.noreply.github.com> Co-authored-by: Bond_009 <bond.009@outlook.com>
2021-12-24EncodingHelper hwaccel pipelines refactornyanmisaka
separate the HW pipeline according to HWA method for maintainability.
2021-12-24Merge pull request #6920 from marius-luca-87/subtitle_dropCody Robibero
2021-12-24Merge pull request #7029 from cvium/allocations_maybeCody Robibero
2021-12-21Force a remux/transcode with external audio filescvium
2021-12-20Use our own Contains extensioncvium
2021-12-18Use System.IO.Compression instead of SharpCompress for zipsBond_009
Also removes unused methods from ZipClient
2021-12-16Deprecate LibraryOptions.EnableInternetProvidersJoe Rogers
2021-12-15Merge pull request #7002 from crobibero/dotnet-6.0.1Joshua M. Boniface
2021-12-15Merge pull request #6979 from crobibero/baseitemkindClaus Vium
Use BaseItemKind where possible
2021-12-14Update to dotnet 6.0.1Cody Robibero
2021-12-12Use BaseItemKind where possibleCody Robibero
2021-12-12Use correct jpeg MIME typeBond_009
image/jpg isn't a valid MIME type
2021-12-11Merge pull request #6902 from cvium/migrate_networkconfigCody Robibero
Migrate network configuration safely
2021-12-09- add an option for dropping specific subtitle formats using the DLNA ↵Marius Luca
SubtitleProfile
2021-12-04Refactor MimeTypes.ToExtension()Ahmed Rafiq
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-12-04Update documentationAhmed Rafiq
2021-12-04Use MimeTypes package to determine MIME typeAhmed Rafiq
This simplifies the code since we don't have to keep large mappings of extensions and MIME types. We still keep the ability to override the mappings for: - filling in entries not present in the package, for e.g. ".azw3" - picking preferred extensions, for e.g. MimeTypes provides ".conf" as a possible extionsion for "text/plain", and while that is correct, ".txt" would be preferrable - compatibility reasons
2021-12-01Use JsonContent where possibleBond_009
Should reduce the # of allocated bytes
2021-11-26- enable seek function when direct streaming over DLNAMarius Luca
2021-11-24Migrate network configuration safelycvium
2021-11-20Merge pull request #6870 from cvium/fix_omdb_image_providerCody Robibero
2021-11-19Merge pull request #6850 from PetrusZ/collection-validatorCody Robibero
2021-11-19Refactor omdb providerscvium
2021-11-18Replace library option to AutomaticallyAddToCollectionPetrus.Z
Signed-off-by: Petrus.Z <silencly07@gmail.com>
2021-11-17Add AutoCollection optionPetrus.Z
it can determine whether auto create/add movies to collection Signed-off-by: Petrus.Z <silencly07@gmail.com>
2021-11-16Fix some warningsBond_009
2021-11-15Add setter for CustomPrefsJoe Rogers
2021-11-15Bump Microsoft.SourceLink.GitHub from 1.1.0 to 1.1.1dependabot[bot]
Bumps [Microsoft.SourceLink.GitHub](https://github.com/dotnet/sourcelink) from 1.1.0 to 1.1.1. - [Release notes](https://github.com/dotnet/sourcelink/releases) - [Commits](https://github.com/dotnet/sourcelink/compare/1.1.0...1.1.1) --- updated-dependencies: - dependency-name: Microsoft.SourceLink.GitHub dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2021-11-13Merge pull request #6818 from Bond-009/passwordCody Robibero
2021-11-12Remove Obsolete attribute on enumCody Robibero
2021-11-11Fix nullability on DisplayPreferencesDtoCody Robibero
Remove duplicate, fix namespace
2021-11-10Replace PBKDF2-SHA1 with PBKDF2-SHA512Bond_009
This also migrates already created passwords on login Source for the number of iterations: https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html#pbkdf2