CI's Formatting job failed: 19 touched files carried a BOM, which .editorconfig forbids (charset=utf-8). Pure encoding change — one byte per file, no semantic diff (verified: every hunk is `-namespace` -> `+namespace`). Self-inflicted. The patches that edited these legacy files wrote them back as utf-8-sig to "preserve the existing style", but the #311 fix-as-you-touch gate requires a file to be normalized when you touch it — that is the whole point of scoping the gate to changed files instead of reformatting the ~2500 legacy BOM files at once. dotnet format leaves the EF-generated Designer/snapshot files alone as generated code, and its verify skips them the same way, so they stay as ef emitted them. Two corrections to what I believed going in: - `dotnet format --include` does NOT no-op here. It reported `error CHARSET` for each file and exit 2, reproducing CI exactly, and fixed them in place. The note claiming otherwise is wrong for this invocation. - My first BOM check reported all files clean. The od pattern was wrong; reading the first three bytes directly found 19. A detector that can only say "ok" is worse than no detector. Core.Tests 565, ErsatzTV.Tests 1673, Architecture.Tests 5 — all passed. API artifacts still in sync. Refs #70 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
20 lines
479 B
C#
20 lines
479 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum PlaybackOrder
|
|
{
|
|
None = 0,
|
|
|
|
Chronological = 1,
|
|
Random = 2,
|
|
Shuffle = 3,
|
|
ShuffleInOrder = 4,
|
|
MultiEpisodeShuffle = 5,
|
|
SeasonEpisode = 6,
|
|
RandomRotation = 7,
|
|
Marathon = 8,
|
|
|
|
// weighted / fair-share distribution (#70); Classic schedule items only -- write-path validation
|
|
// rejects it elsewhere, because the other engines silently drop or substitute an unknown order
|
|
WeightedShuffle = 9
|
|
}
|