aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-23Don't write tagline in <outline> in nfo filesDavid
2021-01-23Merge pull request #5047 from jellyfin/dependabot/nuget/Moq-4.16.0Bond-009
Bump Moq from 4.15.2 to 4.16.0
2021-01-23Bump Moq from 4.15.2 to 4.16.0dependabot[bot]
Bumps [Moq](https://github.com/moq/moq4) from 4.15.2 to 4.16.0. - [Release notes](https://github.com/moq/moq4/releases) - [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md) - [Commits](https://github.com/moq/moq4/compare/v4.15.2...v4.16.0) Signed-off-by: dependabot[bot] <support@github.com>
2021-01-23Merge pull request #5053 from jellyfin/dependabot/nuget/coverlet.collector-3.0.1Bond-009
Bump coverlet.collector from 3.0.0 to 3.0.1
2021-01-23Merge pull request #5055 from jellyfin/dependabot/nuget/sharpcompress-0.27.1Bond-009
Bump sharpcompress from 0.26.0 to 0.27.1
2021-01-23Merge pull request #5068 from Ullmie02/nfo-testsBond-009
2021-01-23Fix indentationDavid
2021-01-22Translated using Weblate (Kazakh)WWWesten
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/kk/
2021-01-22Translated using Weblate (Chinese (Hong Kong))Wong To Han, Toby
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/zh_Hant_HK/
2021-01-21Translated using Weblate (Persian)Arian Ar
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fa/
2021-01-21Translated using Weblate (Filipino)Rodlan Bernabe
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fil/
2021-01-21100% branch coverage for Jellyfin.NamingBond_009
2021-01-21Apply suggestions from code reviewCody Robibero
Co-authored-by: dkanada <dkanada@users.noreply.github.com>
2021-01-21fix returnBaronGreenback
2021-01-20Add ability to mark query parameter as obsolete.crobibero
2021-01-20Translated using Weblate (Spanish (Latin America))ImSoSx
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es_419/
2021-01-20Check rating name for "audience"David
2021-01-20Add music album nfo parser testDavid
2021-01-20Add season nfo parser testDavid
2021-01-20Add episode nfo parser testDavid
2021-01-20Move existing tests to correct namespaceDavid
2021-01-20Translated using Weblate (German)David
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/de/
2021-01-20Translated using Weblate (Bulgarian)AdmiralAnimE
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/bg/
2021-01-20Translated using Weblate (Bulgarian)AdmiralAnimE
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/bg/
2021-01-19Bug fixesBaronGreenback
2021-01-19Merge pull request #4978 from BaronGreenback/MultipeProxiesClaus Vium
2021-01-19renamed func in testBaronGreenback
2021-01-19renamed.BaronGreenback
2021-01-19revertedBaronGreenback
2021-01-19Removed systemIp6 functionality.BaronGreenback
2021-01-19Changed mapping logicBaronGreenback
2021-01-19Changed testBaronGreenback
2021-01-19Simplified CodeBaronGreenback
2021-01-19Removed duplicationBaronGreenback
2021-01-18fix delete log taskcrobibero
2021-01-18Merge pull request #5027 from crobibero/episode-first-upClaus Vium
2021-01-18Remove commented codecrobibero
2021-01-18Merge pull request #5025 from BaronGreenback/DlnaFixClaus Vium
2021-01-18Moved InternalsVisibleToBaronGreenback
2021-01-18revertedBaronGreenback
2021-01-18Bump sharpcompress from 0.26.0 to 0.27.1dependabot[bot]
Bumps [sharpcompress](https://github.com/adamhathcock/sharpcompress) from 0.26.0 to 0.27.1. - [Release notes](https://github.com/adamhathcock/sharpcompress/releases) - [Commits](https://github.com/adamhathcock/sharpcompress/compare/0.26...0.27.1) Signed-off-by: dependabot[bot] <support@github.com>
2021-01-18Bump coverlet.collector from 3.0.0 to 3.0.1dependabot[bot]
Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/coverlet-coverage/coverlet/releases) - [Commits](https://github.com/coverlet-coverage/coverlet/commits) Signed-off-by: dependabot[bot] <support@github.com>
2021-01-17Translated using Weblate (Catalan)Oriol Serra
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ca/
2021-01-17rollbackBaronGreenback
2021-01-17Fix bug in GetItemIdBaronGreenback
2021-01-17adjust episode path expression to allow digits in series namessenritsu
The previous expression was too greedy to consume digits, because the hyphen was optional. This lead to incorrect episode numbers for certain series with digits in their names, in those cases each episode was recognized as the same episode number (the digit from the series name). The rule, which matches most standard anime filenames, also had a lower priority than one of the Kodi rules, leading to incorrect recognition for absolute numbered episodes with triple digits and higher (first digit was used as season number, rest of digits as episode number). This also resolves one of the TODO test cases. Additional test cases were added to ensure that both hyphens in different parts of the filename, as well as names without hyphens, still work correctly. All previous test cases still pass. Unfortunately another TODO (EpisodeNumberTests.cs@L76, Uchuu Senkan Yamato 2199) with the same issue (digits in the series name) could not be trivially fixed in the same change, due to the significantly different formatting. Attempts to resolve this case did not work out for now.
2021-01-17Translated using Weblate (Turkish)Sinan
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/tr/
2021-01-17revertedBaronGreenback
2021-01-17Moved internalVisibleToAttribute to .csjBaronGreenback
2021-01-16Merge pull request #5007 from jellyfin/createJoshua M. Boniface