aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data
AgeCommit message (Collapse)Author
2023-07-03Merge pull request #8914 from bradbeattie/augmented-tag-searchingClaus Vium
Augment tag searching to consider individual ItemValues instead of the delimited tags field
2023-06-05Source SQLite cache_size from an Environment Variable (#9666)Mark Lopez
2023-06-02Merge pull request #9667 from Silvenga/restore-default-journal-sizeBond-009
2023-05-15Audio normalization (#9222)TelepathicWalrus
Co-authored-by: Joe Rogers <1337joe@users.noreply.github.com> Co-authored-by: Bond-009 <bond.009@outlook.com>
2023-05-04nameof instead of GetType().NameBond_009
2023-04-24Increased the max journal_size_limit to reduce the number of truncation ↵Mark Lopez
operations.
2023-04-24Dispose BlockingCollectionBond_009
2023-04-21Change number of read connections based on # of threads and add commentsBond_009
2023-04-21Get write connection for vacuumBond_009
2023-04-21Use BlockingCollectionBond_009
2023-04-21POC sql connection poolBond_009
2023-04-16Fix null parental rating comparison (#9618)Brad Beattie
2023-04-13Properly dispose prepared statementsBond_009
2023-04-10Merge pull request #9607 from goremykin/fix_analyzers_warnings_and_suggestionsBond-009
2023-04-07Augment similarity with person matchesBrad Beattie
The code comment says "genres, tags, studios, _person_, year?", but does no matching on common people between films. This PR augments similarity score treating people similar to tags.
2023-04-06Remove redundant 'else' keywordsStepan Goremykin
2023-04-06Remove redundant castsStepan Goremykin
2023-03-25Convert Person.Type to use PersonKind enum (#9487)Cody Robibero
2023-03-01Allocate less ListsBond_009
2023-02-20Apply review suggestionShadowghost
2023-02-20Build ratingClause with StringBuilderShadowghost
2023-02-20Apply review suggestionsShadowghost
2023-02-20Properly build where clause for rating checksShadowghost
2023-02-19Optimize tryparseBond_009
* Don't check for null before * Don't try different formats when not needed (NumberFormat.Integer is the fast path)
2023-02-12Merge pull request #9297 from crobibero/livetv-tweaksClaus Vium
LiveTV fixes
2023-02-11LiveTV fixesCody Robibero
2023-01-20Add "Allowed Tags" to Parental ControlsJpuc1143
2023-01-14Remove AddPeopleQueryIndex migrationBond_009
2023-01-14Set journal_size_limitBond_009
2023-01-14Change synchronous_mode to normalBond_009
2023-01-14Fine tune DB settingsBond_009
2023-01-07Fixing similar parental rating calculation (#8959)Brad Beattie
2022-12-28Augment tag searching to consider all ItemValuesBrad Beattie
2022-12-14Improve DB perf for everyone not using debug logging (#8827)Bond-009
2022-12-11Merge pull request #8842 from bradbeattie/masterBond-009
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-05Search tags as wellBrad Beattie
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-12-05Fix build (#8859)Bond-009
2022-11-27Minor search update - full word titles matches first (#8757)SteveTheGrey
2022-10-31Backport pull request #8662 from jellyfin/release-10.8.zcvium
fix: use a combination of ParentIndexNumber and IndexNumber to determine next up episodes Original-merge: 45f3fb1cfc54f4dced7f6e02b7fc433056678634 Merged-by: Joshua M. Boniface <joshua@boniface.me> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2022-10-28Backport pull request #8501 from jellyfin/release-10.8.zcvium
fix: set MinIndexNumber for the next up query Original-merge: 679e83082f76b0d6c54d0aa4b8fe1138c1a10ccd Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2022-10-07Fix localization lookupJoe Rogers
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 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-07-24Backport pull request #8166 from jellyfin/release-10.8.zJoshua Boniface
Bind @userid only when it's in the statement Authored-by: Joseph <1315585+joseph39@users.noreply.github.com> Merged-by: Claus Vium <cvium@users.noreply.github.com> Original-merge: 057e8ef24061a969d4ca31b5b115e14d5ba76fe4
2022-06-29Merge pull request #7964 from jellyfin/dovi-side-dataJoshua M. Boniface
(cherry picked from commit 39d185c7b19ed2da1ae46566152fb1cf182266cd) Signed-off-by: Joshua Boniface <joshua@boniface.me>