Brad Beattie 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ac9b7142cc 
							
						 
					 
					
						
						
							
							Fixing similar parental rating calculation ( #8959 )  
						
						
						
						
					 
					
						2023-01-07 11:31:33 -07:00 
						 
				 
			
				
					
						
							
							
								Brad Beattie 
							
						 
					 
					
						
						
						
						
							
						
						
							f0376cdad9 
							
						 
					 
					
						
						
							
							Augment tag searching to consider all ItemValues  
						
						
						
						
					 
					
						2022-12-28 16:13:36 -08:00 
						 
				 
			
				
					
						
							
							
								Bond-009 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3f82c90c48 
							
						 
					 
					
						
						
							
							Improve DB perf for everyone not using debug logging ( #8827 )  
						
						
						
						
					 
					
						2022-12-14 22:03:38 +01:00 
						 
				 
			
				
					
						
							
							
								Bond-009 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d34ded211e 
							
						 
					 
					
						
						
							
							Merge pull request  #8842  from bradbeattie/master  
						
						
						
						
					 
					
						2022-12-11 20:27:44 +01:00 
						 
				 
			
				
					
						
							
							
								Brad Beattie 
							
						 
					 
					
						
						
						
						
							
						
						
							ab145c5ddc 
							
						 
					 
					
						
						
							
							Search tags as well  
						
						
						
						
					 
					
						2022-12-05 17:38:51 -08:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							52194f56b5 
							
						 
					 
					
						
						
							
							Replace != null with is not null  
						
						
						
						
					 
					
						2022-12-05 15:01:13 +01:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							c7d50d640e 
							
						 
					 
					
						
						
							
							Replace == null with is null  
						
						
						
						
					 
					
						2022-12-05 15:00:20 +01:00 
						 
				 
			
				
					
						
							
							
								Bond-009 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b2def4c9ea 
							
						 
					 
					
						
						
							
							Fix build ( #8859 )  
						
						
						
						
					 
					
						2022-12-05 14:56:58 +01:00 
						 
				 
			
				
					
						
							
							
								SteveTheGrey 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							87d4ef7403 
							
						 
					 
					
						
						
							
							Minor search update - full word titles matches first ( #8757 )  
						
						
						
						
					 
					
						2022-11-27 09:03:28 -07:00 
						 
				 
			
				
					
						
							
							
								cvium 
							
						 
					 
					
						
						
						
						
							
						
						
							08d2acba20 
							
						 
					 
					
						
						
							
							Backport pull request  #8662  from jellyfin/release-10.8.z  
						
						... 
						
						
						
						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-31 23:08:42 -04:00 
						 
				 
			
				
					
						
							
							
								cvium 
							
						 
					 
					
						
						
						
						
							
						
						
							812a4170ee 
							
						 
					 
					
						
						
							
							Backport pull request  #8501  from jellyfin/release-10.8.z  
						
						... 
						
						
						
						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-28 22:38:58 -04:00 
						 
				 
			
				
					
						
							
							
								Joe Rogers 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							62799697a1 
							
						 
					 
					
						
						
							
							Fix localization lookup  
						
						
						
						
					 
					
						2022-10-07 07:48:31 -04:00 
						 
				 
			
				
					
						
							
							
								Joe Rogers 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2e4db18ebe 
							
						 
					 
					
						
						
							
							Add hearing impaired subtitle stream indicator ( #7379 )  
						
						... 
						
						
						
						Co-authored-by: Claus Vium <cvium@users.noreply.github.com> 
						
						
					 
					
						2022-10-07 12:38:05 +02:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							a9a5fcde81 
							
						 
					 
					
						
						
							
							Use ArgumentNullException.ThrowIfNull helper method  
						
						... 
						
						
						
						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-06 20:21:23 +02:00 
						 
				 
			
				
					
						
							
							
								Joshua Boniface 
							
						 
					 
					
						
						
						
						
							
						
						
							bffda19bbc 
							
						 
					 
					
						
						
							
							Backport pull request  #8166  from jellyfin/release-10.8.z  
						
						... 
						
						
						
						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-07-24 12:35:47 -04:00 
						 
				 
			
				
					
						
							
							
								Joshua M. Boniface 
							
						 
					 
					
						
						
						
						
							
						
						
							fe32b5e333 
							
						 
					 
					
						
						
							
							Merge pull request  #7964  from jellyfin/dovi-side-data  
						
						... 
						
						
						
						(cherry picked from commit 39d185c7b19ed2da1ae46566152fb1cf182266cd)
Signed-off-by: Joshua Boniface <joshua@boniface.me> 
						
						
					 
					
						2022-06-29 01:26:15 -04:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							5b0af106c2 
							
						 
					 
					
						
						
							
							Merge pull request  #7940  from Shadowghost/fix-recommendations  
						
						... 
						
						
						
						(cherry picked from commit 674931324926368791a47d7bd7ce59b4248f5a71)
Signed-off-by: Joshua Boniface <joshua@boniface.me> 
						
						
					 
					
						2022-06-29 01:26:14 -04:00 
						 
				 
			
				
					
						
							
							
								Bond-009 
							
						 
					 
					
						
						
						
						
							
						
						
							2b1a915ead 
							
						 
					 
					
						
						
							
							Merge pull request  #7604  from Jellifi007/fixes-diactritics  
						
						... 
						
						
						
						Co-authored-by: Cody Robibero <cody@robibe.ro>
(cherry picked from commit 8d1d9734381472b301deb0118bbb8da2a769a65e)
Signed-off-by: crobibero <cody@robibe.ro> 
						
						
					 
					
						2022-05-20 18:30:56 -04:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							efcdab116f 
							
						 
					 
					
						
						
							
							Merge pull request  #7529  from Shadowghost/strm-ffprobe-external-fix  
						
						... 
						
						
						
						(cherry picked from commit 60affd096595d68728506149d0ffce6e84b6b015)
Signed-off-by: crobibero <cody@robibe.ro> 
						
						
					 
					
						2022-05-20 18:30:56 -04:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							78a8c26690 
							
						 
					 
					
						
						
							
							Don't allow unknown sort-by  
						
						
						
						
					 
					
						2022-03-25 09:18:18 -06:00 
						 
				 
			
				
					
						
							
							
								Joe Rogers 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1a307db7eb 
							
						 
					 
					
						
						
							
							Add label for external audio/sub tracks  
						
						
						
						
					 
					
						2022-03-10 22:20:35 +01:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							23ea14aa27 
							
						 
					 
					
						
						
							
							Clean up SqliteItemRepository  
						
						... 
						
						
						
						* remove dead code
* reduce allocations 
						
						
					 
					
						2022-02-15 22:27:38 +01:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							1c14c86b20 
							
						 
					 
					
						
						
							
							Fix some warnings  
						
						
						
						
					 
					
						2022-02-14 14:46:04 +01:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							a60cb280a3 
							
						 
					 
					
						
						
							
							Properly populate QueryResult  
						
						
						
						
					 
					
						2022-01-20 08:53:06 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							7d63377194 
							
						 
					 
					
						
						
							
							Use provided SortOrder  
						
						
						
						
					 
					
						2022-01-04 13:07:51 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							f802763e8f 
							
						 
					 
					
						
						
							
							Reverse all order-by  
						
						
						
						
					 
					
						2022-01-03 07:59:50 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							c3071f8996 
							
						 
					 
					
						
						
							
							Fix orderby query  
						
						
						
						
					 
					
						2021-12-31 08:03:08 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							7bfc6b5679 
							
						 
					 
					
						
						
							
							Remove more warnings  
						
						
						
						
					 
					
						2021-12-27 07:38:06 -07:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							ea8f40e84a 
							
						 
					 
					
						
						
							
							More cleanup  
						
						
						
						
					 
					
						2021-12-27 14:20:05 +00:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							cbfa355e31 
							
						 
					 
					
						
						
							
							Update StyleCop  
						
						
						
						
					 
					
						2021-12-24 18:28:27 +01:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							8ddba55214 
							
						 
					 
					
						
						
							
							Use string builder instead of string interpolation  
						
						
						
						
					 
					
						2021-12-16 09:18:51 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							0dd304f86c 
							
						 
					 
					
						
						
							
							Log warning for unknown BaseItemKind to Type mapping  
						
						
						
						
					 
					
						2021-12-16 07:54:22 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							249a1ca955 
							
						 
					 
					
						
						
							
							Add mapping from BaseItemKind to Type.FullName for querying  
						
						
						
						
					 
					
						2021-12-15 17:57:39 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							87439665d7 
							
						 
					 
					
						
						
							
							Use array instead of HashSet  
						
						
						
						
					 
					
						2021-12-14 15:10:40 -07:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							32629cd7da 
							
						 
					 
					
						
						
							
							Use BaseItemKind where possible  
						
						
						
						
					 
					
						2021-12-12 06:11:27 -07:00 
						 
				 
			
				
					
						
							
							
								Patrick Barron 
							
						 
					 
					
						
						
						
						
							
						
						
							21007aec20 
							
						 
					 
					
						
						
							
							Fix warnings in Data  
						
						
						
						
					 
					
						2021-10-02 13:03:04 -04:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							5fd315b17c 
							
						 
					 
					
						
						
							
							Address comments  
						
						
						
						
					 
					
						2021-09-24 20:15:46 +02:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							4d1d9f23d5 
							
						 
					 
					
						
						
							
							Use new Enum.TryParse(ReadOnlySpan<char>) overload  
						
						
						
						
					 
					
						2021-09-24 20:15:46 +02:00 
						 
				 
			
				
					
						
							
							
								Fernando Fernández 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3d0b1ccae6 
							
						 
					 
					
						
						
							
							Remove all unused usings  
						
						
						
						
					 
					
						2021-09-06 21:15:30 +02:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							637e86478f 
							
						 
					 
					
						
						
							
							Fix some warnings  
						
						
						
						
					 
					
						2021-09-03 19:32:11 +02:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							ec13412155 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'upstream/master' into warn-259810  
						
						
						
						
					 
					
						2021-09-03 06:56:45 -06:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							286dabdc4b 
							
						 
					 
					
						
						
							
							Add SqliteItemRepository.ItemImageInfoFromValueString as a fuzzing  
						
						... 
						
						
						
						target
and add test cases 
						
						
					 
					
						2021-09-02 21:28:00 +02:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							ecb4b8e0aa 
							
						 
					 
					
						
						
							
							Apply suggestions from code review  
						
						... 
						
						
						
						Co-authored-by: Bond-009 <bond.009@outlook.com> 
						
						
					 
					
						2021-08-30 07:11:34 -06:00 
						 
				 
			
				
					
						
							
							
								Cody Robibero 
							
						 
					 
					
						
						
						
						
							
						
						
							cba07b1ca6 
							
						 
					 
					
						
						
							
							Remove more and more warnings  
						
						
						
						
					 
					
						2021-08-28 16:32:50 -06:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							981cf4cfa0 
							
						 
					 
					
						
						
							
							Remove our own RemoveDiacritcs string extension in favor of Diacritics.Net  
						
						
						
						
					 
					
						2021-06-22 09:48:40 +02:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							6f8ccab788 
							
						 
					 
					
						
						
							
							Move non-jellyfin extensions to separate project  
						
						
						
						
					 
					
						2021-06-19 18:04:46 +02:00 
						 
				 
			
				
					
						
							
							
								Bond_009 
							
						 
					 
					
						
						
						
						
							
						
						
							5fb72951a0 
							
						 
					 
					
						
						
							
							Add test for ReadOnlySpan.Count extension  
						
						
						
						
					 
					
						2021-06-12 00:56:09 +02:00 
						 
				 
			
				
					
						
							
							
								cvium 
							
						 
					 
					
						
						
						
						
							
						
						
							9111730a0a 
							
						 
					 
					
						
						
							
							More review  
						
						
						
						
					 
					
						2021-06-05 20:16:04 +02:00 
						 
				 
			
				
					
						
							
							
								cvium 
							
						 
					 
					
						
						
						
						
							
						
						
							0835b26889 
							
						 
					 
					
						
						
							
							review  
						
						
						
						
					 
					
						2021-05-31 13:55:54 +02:00 
						 
				 
			
				
					
						
							
							
								cvium 
							
						 
					 
					
						
						
						
						
							
						
						
							42a2cc1747 
							
						 
					 
					
						
						
							
							Remove some unnecessary allocations  
						
						
						
						
					 
					
						2021-05-24 00:30:41 +02:00