aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/EmbyTV
AgeCommit message (Collapse)Author
2024-01-09Move LiveTv to separate projectPatrick Barron
2024-01-09Move GetRecordingStreamMediaSources to IMediaSourceManagerPatrick Barron
2023-12-21Move ProgressiveFileStream to ControllerPatrick Barron
2023-12-05Make IRecorder an IDisposablePatrick Barron
2023-12-05Use ConfigureAwait in DirectRecorderPatrick Barron
2023-12-05Fix disposable warnings in EmbyTVPatrick Barron
2023-12-05Use implementation types in LiveTvPatrick Barron
2023-10-11Multiple Stream changesBond_009
* Remove useless MemoryStream in DlnaHttpClient * Use HttpContent.ReadFromJsonAsync extension * Call ConfigureAwait for IAsyncDisposable * Use HttpContent.CopyToAsync where possible
2023-04-06Remove redundant 'else' keywordsStepan Goremykin
2023-04-06Inline out variable declarationStepan Goremykin
2023-03-25Convert Person.Type to use PersonKind enum (#9487)Cody Robibero
2023-01-03Merge pull request #8775 from SenorSmartyPants/DVRMetadataBond-009
Fixes https://github.com/jellyfin/jellyfin/issues/5178
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-11-27Call GetConfiguration just once in functionSenorSmartyPants
2022-11-22DVR: Prefer HD channels then earliest showing when handling duplicate ↵SenorSmartyPants
showings. (#8768) Co-authored-by: Bond-009 <bond.009@outlook.com>
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-19Don't cancel DVR recordings when adjusting settings (#8752)SenorSmartyPants
Fixes https://github.com/jellyfin/jellyfin/issues/3523
2022-10-11Fix some things that slipped through the cracksBond_009
2022-10-10Skip generic shows from duplicate removal actions (#8370)Aaron
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 Emby.Server.Implementations (#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-09-11Don't allow throwing System.Exception (#8378)Bond-009
2022-05-20Merge pull request #7544 from jaantaponen/long-filename-fixCody Robibero
(cherry picked from commit 8a1eca09138d50c033b100a63e5f51d18e3669bb) Signed-off-by: crobibero <cody@robibe.ro>
2022-04-07Merge pull request #7542 from 1337joe/make-recording-stopCody Robibero
Make recording stop at scheduled stop time (cherry picked from commit 132c85e554db0c80dab6e66ad17c504641431d5b) Signed-off-by: crobibero <cody@robibe.ro>
2022-02-21Optimize Guid comparisonsBond_009
* Use Guid.Equals(Guid) instead of the == override * Ban the usage of Guid.Equals(Object) to prevent accidental boxing * Compare to default(Guid) instead of Guid.Empty
2022-02-15Fix some warningsBond_009
2022-02-06Merge pull request #7241 from Bond-009/async5Cody Robibero
2022-01-22Flush to disk async where possibleBond_009
2022-01-22Always create TaskCompletionSource<T> with ↵Bond_009
TaskCreationOptions.RunContinuationsAsynchronously
2021-12-27More cleanupBond_009
2021-12-20Use our own Contains extensioncvium
2021-12-12Use BaseItemKind where possibleCody Robibero
2021-11-15Fix some warningsBond_009
2021-11-09Fix some warningsBond_009
down to 580
2021-11-09Merge pull request #5905 from BaronGreenback/TVFixClaus Vium
Fix for Livetv and DLNA when bind interfaces specified.
2021-11-09Fix some warningsBond_009
609 left
2021-11-08Merge branch 'master' into TVFixcvium
2021-10-09Merge pull request #6657 from Bond-009/dotnetbugClaus Vium
2021-10-03Fix warnings in EmbyTVPatrick Barron
2021-10-03Remove workaround for dotnet/runtime#42790Bond_009
2021-10-01Enable nullable for ItemDataProviderBond_009
2021-09-25Remove sync FileStream hackBond_009
2021-09-21Fix issue #6587Bond_009
2021-09-21Specify DateTimeStyles when possibleBond_009
2021-09-10Remove more unused argscvium
2021-09-10Kill ProgressiveFileCopier and seek to end for ongoing livetvcvium
2021-09-07Ignore published server url for local accesscvium