@ -27,6 +27,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
@@ -27,6 +27,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- This mode is only used when the `Reset Playout` button is clicked on the Playouts page
- Use ffmpeg to resize images; this should help reduce ErsatzTV's memory use
- Use ffprobe to check for animated logos and watermarks; this should help reduce ErsatzTV's memory use
- Allow two decimals in channel numbers (e.g. `5.73`)
@ -119,7 +119,7 @@ public class CreateChannelHandler : IRequestHandler<CreateChannel, Either<BaseEr
@@ -119,7 +119,7 @@ public class CreateChannelHandler : IRequestHandler<CreateChannel, Either<BaseEr
returncreateChannel.Number;
}
returnBaseError.New("Invalid channel number; one decimal is allowed for subchannels");
returnBaseError.New("Invalid channel number; two decimals are allowed for subchannels");
@ -102,7 +102,7 @@ public class UpdateChannelHandler : IRequestHandler<UpdateChannel, Either<BaseEr
@@ -102,7 +102,7 @@ public class UpdateChannelHandler : IRequestHandler<UpdateChannel, Either<BaseEr
returnupdateChannel.Number;
}
returnBaseError.New("Invalid channel number; one decimal is allowed for subchannels");
returnBaseError.New("Invalid channel number; two decimals are allowed for subchannels");
}
returnBaseError.New("Channel number must be unique");
@ -10,7 +10,7 @@ public class ChannelEditViewModelValidator : AbstractValidator<ChannelEditViewMo
@@ -10,7 +10,7 @@ public class ChannelEditViewModelValidator : AbstractValidator<ChannelEditViewMo