aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
AgeCommit message (Collapse)Author
2023-01-12Merge pull request #9001 from Shadowghost/stereo-downmixBond-009
Fixes https://github.com/jellyfin/jellyfin/issues/1986
2023-01-10Add stereo downmix algorithm selection.Shadowghost
2023-01-04Fix all warnings in Jellyfin.Api (#9003)Bond-009
2023-01-03Merge pull request #8775 from SenorSmartyPants/DVRMetadataBond-009
Fixes https://github.com/jellyfin/jellyfin/issues/5178
2022-12-30Add support for .sup subtitle (#8808)Cody Robibero
Fixes https://github.com/jellyfin/jellyfin/issues/8628
2022-12-29Merge pull request #7494 from Shadowghost/streambuilder-cleanupBond-009
2022-12-29Fix image searching to prioritize explicit language match if searching in ↵Brad Beattie
English (#8946)
2022-12-15chore(deps): update dotnet monorepo to v7.0.1 (#8900)renovate[bot]
* chore(deps): update dotnet monorepo to v7.0.1 * Update docker sdk Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Cody Robibero <cody@robibe.ro>
2022-12-14Default to no bitrate limit if no maxBitrate is set (#8850)Shadowghost
Fixes https://github.com/jellyfin/jellyfin/issues/3277
2022-12-08Add option to allow extras to use embedded titlesJoe Rogers
2022-12-07Fix .Net 7 compatibilityShadowghost
2022-12-07Prefer var in StreamBuilderShadowghost
2022-12-07Add xmldoc for MediaOptionsShadowghost
2022-12-07Apply review suggestionsShadowghost
2022-12-07Cleanup and refactor streambuilderShadowghost
2022-12-07Update depsBond_009
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-07Update projects to .net7Bond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-12-05Fix some warnings and only disable TreatWarningsAsErrors for CodeAnalysis ↵Bond-009
(#8709)
2022-11-27Minor search update - full word titles matches first (#8757)SteveTheGrey
2022-11-26Merge branch 'jellyfin:master' into masterNegulici-R. Barnabas
2022-11-19Add Options to disable DVR NFO and image savingSenorSmartyPants
- SaveRecordingNFO and SaveRecordingImages default to true. Maintains current behavior. - Episode.FillMissingEpisodeNumbersFromPath for live tv so external metadata can be pulled when recording starts.
2022-11-17Apply review suggestionsShadowghost
2022-11-17Add xmldocs for TMDb provider, correct provider spellingShadowghost
2022-11-14fixed namescope for ImageResolution enum;Negulici-R. Barnabas
2022-11-14added associated value to ImageResolution enum;Negulici-R. Barnabas
2022-11-13changed ChapterImageResolution in model to enum type;Negulici-R. Barnabas
added 144p to the ImageResolution enum; updated chapters limit comment inside FFProbeVideoInfo.cs;
2022-11-13Merge branch 'jellyfin:master' into masterNegulici-R. Barnabas
2022-11-13Merge pull request #8666 from dmitrylyzo/fix-secondary-audioBond-009
Fixes https://github.com/jellyfin/jellyfin-web/issues/4044 Fixed https://github.com/jellyfin/jellyfin/issues/8673
2022-11-09chore(deps): update dotnet monorepo (#8708)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Cody Robibero <cody@robibe.ro>
2022-10-31fix secondary audioDmitry Lyzo
Browsers (Chrome, Firefox) can only play the first track, even if the second track is the default. Ignore default flag when testing on secondary audio. External audio tracks are not secondary.
2022-10-30Add SeriesStatus.UnreleasedNiels van Velzen
2022-10-30Merge pull request #8638 from photonconvergence/fix/extras-typeBond-009
2022-10-28Backport pull request #8411 from jellyfin/release-10.8.zMaxr1998
Allow direct play even if no audio stream is available Original-merge: bf129ab9b831ee1dcc3d56ed7d3f0ec79a00fc27 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2022-10-27Fix extra type differentiationphotonconvergence
Change rules for Featurettes and Shorts so they don't both get classed as ExtraType.Clip. Fix test that these changes break
2022-10-11Merge branch 'jellyfin:master' into gzipadrez99
2022-10-07Merge pull request #8381 from 1hitsong/lyric-lrc-file-supportClaus Vium
2022-10-07Add hearing impaired subtitle stream indicator (#7379)Joe Rogers
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2022-10-07Merge pull request #8503 from Bond-009/ThrowIfNullClaus Vium
2022-10-06Fix minor warnings in MediaBrowser.Model/Configuration (#2149)Jan Sommer
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ```
2022-10-01Streams with CodecType "data" (like "epg" streams in DVBmarkus
recordings) get ignored. This results in wrong stream specifiers for all subsequent streams. This fix correctly handles "data" streams without any further processing.
2022-09-28Remove redundant using directivesHannes Braun
2022-09-23Backport pull request #8433 from jellyfin/release-10.8.zCody Robibero
Update to dotnet 6.0.9 Original-merge: 4ec82ec662834867742a08dff680c938c4a5542a Merged-by: Joshua M. Boniface <joshua@boniface.me> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2022-09-15Auto stash before merge of "lyric-lrc-file-support" and ↵1hitsong
"origin/lyric-lrc-file-support"
2022-09-11Create ILyricsProvider1hitsong
2022-09-05Merge pull request #8325 from nielsvanvelzen/uuid-userconfigurationCody Robibero
2022-08-27Use Guid type for UserConfiguration fieldsNiels van Velzen