Browse Source

update changelog for release v0.5.8-beta [no ci]

pull/816/head v0.5.8-beta
Jason Dove 3 years ago
parent
commit
9742e1eef7
  1. 5
      CHANGELOG.md
  2. 2
      ErsatzTV.Core/FFmpeg/FFmpegPlaybackSettingsCalculator.cs
  3. 2
      ErsatzTV.Core/FFmpeg/FFmpegProcessBuilder.cs
  4. 2
      ErsatzTV.Core/Scheduling/PlayoutBuilder.cs
  5. 2
      LICENSE

5
CHANGELOG.md

@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased] ## [Unreleased]
## [0.5.8-beta] - 2022-05-20
### Fixed ### Fixed
- Fix error display with `HLS Segmenter` and `MPEG-TS` streaming modes - Fix error display with `HLS Segmenter` and `MPEG-TS` streaming modes
- Remove erroneous log messages about normalizing framerate on channels where framerate normalization is disabled - Remove erroneous log messages about normalizing framerate on channels where framerate normalization is disabled
@ -1208,7 +1210,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Initial release to facilitate testing outside of Docker. - Initial release to facilitate testing outside of Docker.
[Unreleased]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.7-beta...HEAD [Unreleased]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.8-beta...HEAD
[0.5.8-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.7-beta...v0.5.8-beta
[0.5.7-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.6-beta...v0.5.7-beta [0.5.7-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.6-beta...v0.5.7-beta
[0.5.6-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.5-beta...v0.5.6-beta [0.5.6-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.5-beta...v0.5.6-beta
[0.5.5-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.4-beta...v0.5.5-beta [0.5.5-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.4-beta...v0.5.5-beta

2
ErsatzTV.Core/FFmpeg/FFmpegPlaybackSettingsCalculator.cs

@ -1,6 +1,6 @@
// zlib License // zlib License
// //
// Copyright (c) 2021 Dan Ferguson, Victor Hugo Soliz Kuncar, Jason Dove // Copyright (c) 2022 Dan Ferguson, Victor Hugo Soliz Kuncar, Jason Dove
// //
// This software is provided 'as-is', without any express or implied // This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages // warranty. In no event will the authors be held liable for any damages

2
ErsatzTV.Core/FFmpeg/FFmpegProcessBuilder.cs

@ -1,6 +1,6 @@
// zlib License // zlib License
// //
// Copyright (c) 2021 Dan Ferguson, Victor Hugo Soliz Kuncar, Jason Dove // Copyright (c) 2022 Dan Ferguson, Victor Hugo Soliz Kuncar, Jason Dove
// //
// This software is provided 'as-is', without any express or implied // This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages // warranty. In no event will the authors be held liable for any damages

2
ErsatzTV.Core/Scheduling/PlayoutBuilder.cs

@ -426,7 +426,7 @@ public class PlayoutBuilder : IPlayoutBuilder
// loop until we're done filling the desired amount of time // loop until we're done filling the desired amount of time
while (playoutBuilderState.CurrentTime < playoutFinish) while (playoutBuilderState.CurrentTime < playoutFinish)
{ {
_logger.LogDebug("Playout time is {CurrentTime}", playoutBuilderState.CurrentTime); // _logger.LogDebug("Playout time is {CurrentTime}", playoutBuilderState.CurrentTime);
// get the schedule item out of the sorted list // get the schedule item out of the sorted list
ProgramScheduleItem scheduleItem = playoutBuilderState.ScheduleItemsEnumerator.Current; ProgramScheduleItem scheduleItem = playoutBuilderState.ScheduleItemsEnumerator.Current;

2
LICENSE

@ -1,6 +1,6 @@
zlib License zlib License
Copyright (c) 2021 Jason Dove Copyright (c) 2022 Jason Dove
This software is provided 'as-is', without any express or implied This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages warranty. In no event will the authors be held liable for any damages

Loading…
Cancel
Save