aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTORS.md
AgeCommit message (Collapse)Author
2025-08-06Revert "Merge pull request #13604 from Jxiced/master"Bond_009
This reverts commit ce78af2ed4f203690a0f9ef87b08b27a6bd43f63, reversing changes made to db7465e83d9cc07134a0bffad7ed17b1c7b873da.
2025-08-03Merge pull request #14540 from TokerX/issue-8641Joshua M. Boniface
Improve extra rule resolution and file handling
2025-08-03Merge branch 'master' into masterJoshua M. Boniface
2025-08-01Merge pull request #14467 from ↵Bond-009
jkhsjdhjs/keyframe-only-trickplay-extraction-fallback Add fallback for keyframe-only trickplay extraction
2025-07-26Enhance extra rules for video and audio file naming; update tests for new ↵Sven Cazier
naming conventions
2025-07-22Fix issue with EncodedRecorder streams not showing up under "Active ↵Dan Watson
Recordings" (#14357)
2025-07-14Add myself to CONTRIBUTORS.mdjkhsjdhjs
I have contributed previously, but forgot to add myself last time.
2025-06-19fix(devcontainer): correct apt-packages path (#14235)Shoham Peller
Feature path was incorrect, which failed the creation of the devcontainer
2025-06-10Fix existing media segments not being handled on scan (#14218)ThunderClapLP
2025-06-09fix(collection): Do not lock newly created collections (#14259)Dario Ackermann
2025-05-15Merge pull request #14094 from allesmi/fix/ancestor-ids-parent-child-relationAlexander Miller
Translate query by AncestorIds correctly
2025-05-03added parental ratings as per Indian Central Board of Film Certification ↵SoumyadipAuddy
norms (#14050)
2025-03-27Fix for Issue #12142: Fix ExtraRuleResolver filtering out top level folders ↵Michael McElroy
(#12170) * Fix ExtraRuleResolver to stop filtering out libraries where the name of the base folder matches an 'videos extras' rule with an ExtraRuleType of DirectoryName Currently the ExtraRuleResolver code doesn't know anything about the root folder of the current library. As a result, when we're attempting to add items in a library where the root folder has a name with a match in Emby.Naming.Common.NamingOptions.VideoExtraRules, the entire library is being ignored as a Video Extras folder. Need to pass in the root folder of the current library to compare to the path of the current item being evaluated, and if we match the current item's folder to the root folder, then we ignore the ExtraRules with a type of DirectoryName and we continue to scan deeper in the library. Filters still apply to subfolders within the library itself. * Update CONTRIBUTORS.md * Update Emby.Naming/Video/ExtraRuleResolver.cs * Update ExtraTests.cs Add tests for this fix. Also add missing tests in TestKodiExtras, TestExpandedExtras, and TestSample, and expanded TestDirectories into TestDirectoriesAudioExtras and TestDirectoriesVideoExtras. There were no checks for the theme-music folder name previously. * Update ExtraTests.cs Removed unnecessary "using System" * In MediaBrowser.Model, upgrade System.Text.Json from 8.0.3 (vulnerable - high risk) to 8.0.4 * Update ExtraTests.cs Remove empty lines in usings * Revert "In MediaBrowser.Model, upgrade System.Text.Json from 8.0.3 (vulnerable - high risk) to 8.0.4"
2025-02-22Update contributors.Jxiced
2025-01-12added myself to CONTRIBUTORS.mdreuterma24
2024-11-30Added test for ListsingsManager.DeleteListingsProvider(). (#12793)Kenneth Cochran
* Added test for DeleteListingsProvider(). * Added myself to CONTRIBUTORS.md * Removed unintentionally committed test SaveListingProvider_SavesProviderAndReturnsInfo() * Cleaned up test in response to PR feedback.
2024-11-03Backport pull request #12909 from jellyfin/release-10.10.zrevam
Don't try to prune images for virtual episodes. Original-merge: f99e0407fd67358fc07c30ac4cbfa736be5f4daa Merged-by: crobibero <cody@robibe.ro> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2024-11-03Backport pull request #12891 from jellyfin/release-10.10.zbenedikt257
Fix TMDB import failing when no IMDB ID is set for a movie Original-merge: c6629aebf871af861b42f711f12ff920117f4bce Merged-by: crobibero <cody@robibe.ro> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2024-09-22Allow Playlists access for users with allowed tags configured (#12686)elfalem
2024-09-11Add @oxixes to contributorsoxixes
2024-09-11Add @heartles to CONTRIBUTORS.mdjaina heartles
2024-09-07Feature/media segments plugin api (#12359)JPVenson
2024-09-06Add subtitle parser errors to log if available (#12479)Łukasz
2024-07-30Fix: parsing of xbmc style multi episode nfo files (#12268)TheMelmacian
2024-07-15Improve LibraryManager.Sort when using "Random" order (#12165)ItsAllAboutTheCode
Co-authored-by: Cody Robibero <cody@robibe.ro>
2024-07-09Add entry to CONTRIBUTORS.mdhonestlywhoknows
Add my entry to CONTRIBUTORS.md
2024-05-25Backport pull request #11790 from jellyfin/release-10.9.zNotSaifA
Trickplay: kill ffmpeg when task is cancelled Original-merge: 4a344bebc08303edf888000bf52e64b1a4e8036f Merged-by: crobibero <cody@robibe.ro> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2024-05-17Backport pull request #11621 from jellyfin/release-10.9.znfmccrina
Handle exception for unexpected audio file YEAR tag values Original-merge: d5dc4435d9d0e2a1bbbb64a9133134afa9655da6 Merged-by: crobibero <cody@robibe.ro> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2024-03-23Add new VideoRangeTypes to fully support DoVi on webOS (#10469)vedant
2024-03-17Add ability to enable/disable libraries (#11037)btopherjohnson
Co-authored-by: Bond-009 <bond.009@outlook.com> Co-authored-by: Cody Robibero <cody@robibe.ro>
2024-02-15Add missing MIME types for comicbook formats (#11010)Robert Lützner
* Correct MIME types for comicbook file extensions cb7, cba, cbr, cbt and cbz all refer to different types of digital comicbooks. The last letter of the extension indicates the compression algorithm that was used: 7zip, arc, rar, tar or zip. All these filetypes used to have the `application/x-cbr` MIME type assigned to them. However, that has since been deprecated and was replaced with - `application/vnd.comicbook-rar` for rar compressed files and - `application/vnd.comicbook+zip` for rar compressed files. Only these two are officially listed by IANA https://www.iana.org/assignments/media-types/application/vnd.comicbook+zip . cbr and cbz are by far the most common file extensions for comicbooks. There's no official MIME type for cb7, cba or cbt files. However, with rar being a proprietary compression algorithm, FOSS applications will often refuse to handle files that identify themselves as `application/x-cbr`, so I decided to assign extension specific MIME types to them. I've seen these being used by other applications, specifically comic book readers. I've read through the docs on iana.org, but haven't figured out why they chose `-rar`, but `+zip`. * Add conversions from MIME type to file extensions for comicbook formats cb7, cba, cbr, cbt and cbz all refer to different types of digital comicbooks. The last letter of the extension indicates the compression algorithm that was used: 7zip, arc, rar, tar or zip. All these filetypes used to have the `application/x-cbr` MIME type assigned to them. However, that has since been deprecated and was replaced with - `application/vnd.comicbook-rar` for rar compressed files and - `application/vnd.comicbook+zip` for rar compressed files. Only these two are officially listed by IANA https://www.iana.org/assignments/media-types/application/vnd.comicbook+zip . cbr and cbz are by far the most common file extensions for comicbooks. There's no official MIME type for cb7, cba or cbt files. However, with rar being a proprietary compression algorithm, FOSS applications will often refuse to handle files that identify themselves as `application/x-cbr`, so I decided to assign extension specific MIME types to them. I've seen these being used by other applications, specifically comic book readers. * Update CONTRIBUTORS.md
2024-02-10Correct m4b mimetype (#10980)felix920506
2024-02-03Merge changesMark Cilia Vincenti
2024-02-02Merge pull request #10884 from alltilla/extract-all-subtitlesCody Robibero
Extract all subtitle streams simultaneously
2024-01-31Add alltilla to CONTRIBUTORS.mdAttila Szakacs
Signed-off-by: Attila Szakacs <szakacs.attila96@gmail.com>
2024-01-18Merge branch 'master' into fix-trailers_urlsMartin Vandenbussche
2024-01-17Refactor Dockerfile and build (#10603)Gauvino
* Fix fedora * Fix RID Linux * Fix package and image versions * Fix buildling and optimize docker images ``` * Removed find obj * Changed curl command and added gpg * Added to Contributors * Removed apt-transport-https package * Removed RASPI * Update Intel drivers version * Update Dockerfile for CentOS, Fedora, and portable deployments - Changed Jammy docker image to Built-in Jammy Microsoft .NET SDK image - Switched from using "Yum" to "Dnf" for CentOS and Fedora - Added "dnf clean all" and "rm -rf /var/cache/dnf" to the end of CentOS and Fedora Dockerfiles - Added "apt-get clean", "apt-get autoremove", "rm -rf /var/lib/apt/lists/*" to the end of the Debian/Ubuntu Dockerfiles - Added ${DOTNET_VERSION} in every Dockerfile except CentOS/Fedora - Removed previous warning comment for dotnet publish build in parallel - Arranged package installation * Re-arranged Dockerfile package installation * Re-align * Remove curl * Remove curl
2024-01-15Updating CONTRIBUTORS.mdMartin Vandenbussche
2024-01-14Updated contributors, upgraded to AsyncKeyedLocker 6.3.0 which now supports ↵Mark Cilia Vincenti
non-keyed locking using a similar interface and changed SemaphoreSlim-based locks to using AsyncNonKeyedLocker.
2024-01-06Detect audio spatial format (#9996)Mohamed Akram
* Detect audio spatial format * Update MediaBrowser.Model/Entities/MediaStream.cs * Update MediaStream.cs --------- Co-authored-by: Cody Robibero <cody@robibe.ro>
2023-11-26Fix:Plugin Installed Alerts missing from Admin Dashboard #10620Çağrı Sakaoğlu
2023-11-13Merge branch 'master' into feat/book-personsPithaya
2023-11-10Validate AuthenticationProviderId and PasswordResetProviderId (#10553)Chris H
2023-11-08Merge pull request #10078 from scampower3/masterBond-009
Combine Title and Overview for multi-episodes files for the TMDB provider
2023-10-18Merge branch 'master' into trickplayNick
2023-10-08Update CONTRIBUTORS.mdPithaya
2023-08-20Added handling of FFmpeg:probesize variablenull
2023-08-10Merge branch 'master' into masterscampower3
2023-08-05Added me to CONTRIBUTORS.mdLJQ
2023-08-02Add contributorsleepycatcoding