parent
f6abe81876
commit
be41ef6226
@ -15,8 +15,10 @@
|
||||
* Warning: Using a value that is too high will result in system instability
|
||||
* Remove restart requirement to change auto skip setting
|
||||
* Rewrite startup enqueue
|
||||
* Fix deadlock issue on Windows (nyanmisaka)
|
||||
* Improve skip intro button styling & positioning (Fallenbagel)
|
||||
* Fix deadlock issue on Windows (#23 by @nyanmisaka)
|
||||
* Improve skip intro button styling & positioning (ConfusedPolarBear/jellyfin-web#91 by @Fallenbagel)
|
||||
* Order episodes by `IndexNumber` (#25 reported by @Flo56958)
|
||||
|
||||
|
||||
## v0.1.0.0 (2022-06-09)
|
||||
* Add option to automatically skip intros
|
||||
|
@ -108,7 +108,7 @@ public class Entrypoint : IServerEntryPoint
|
||||
var query = new InternalItemsQuery()
|
||||
{
|
||||
ParentId = Guid.Parse(rawId),
|
||||
OrderBy = new[] { ("SortName", SortOrder.Ascending) },
|
||||
OrderBy = new[] { ("IndexNumber", SortOrder.Ascending) },
|
||||
IncludeItemTypes = new BaseItemKind[] { BaseItemKind.Episode },
|
||||
Recursive = true,
|
||||
};
|
||||
|
@ -173,7 +173,7 @@ public class FingerprinterTask : IScheduledTask
|
||||
return;
|
||||
}
|
||||
|
||||
_logger.LogInformation(
|
||||
_logger.LogDebug(
|
||||
"Analyzing {Count} episodes from {Name} season {Season}",
|
||||
season.Value.Count,
|
||||
first.SeriesName,
|
||||
|
Loading…
x
Reference in New Issue
Block a user