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