Browse Source

update for release v0.5.0-beta [no ci]

pull/734/head v0.5.0-beta
Jason Dove 4 years ago
parent
commit
8764fb93fa
  1. 7
      CHANGELOG.md
  2. 2
      ErsatzTV/Pages/Index.razor
  3. 2
      ErsatzTV/Startup.cs
  4. 3
      README.md

7
CHANGELOG.md

@ -4,10 +4,12 @@ All notable changes to this project will be documented in this file. @@ -4,10 +4,12 @@ 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/).
## [Unreleased]
## [0.5.0-beta] - 2022-04-13
### Fixed
- Fix `HLS Segmenter` bug where it would drift off of the schedule if a playout was changed while the segmenter was running
- Ensure clients that use HDHomeRun emulation (like Plex) always get an `MPEG-TS` stream, regardless of the configured streaming mode
- Fix scheduling bug that caused some days to be skipped when fixed start times were used
- Fix scheduling bug that caused some days to be skipped when fixed start times were used with fallback filler
### Added
- Add `Preferred Subtitle Language` and `Subtitle Mode` to channel settings
@ -1066,7 +1068,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -1066,7 +1068,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Initial release to facilitate testing outside of Docker.
[Unreleased]: https://github.com/jasongdove/ErsatzTV/compare/v0.4.5-alpha...HEAD
[Unreleased]: https://github.com/jasongdove/ErsatzTV/compare/v0.5.0-beta...HEAD
[0.5.0-beta]: https://github.com/jasongdove/ErsatzTV/compare/v0.4.5-alpha...v0.5.0-beta
[0.4.5-alpha]: https://github.com/jasongdove/ErsatzTV/compare/v0.4.4-alpha...v0.4.5-alpha
[0.4.4-alpha]: https://github.com/jasongdove/ErsatzTV/compare/v0.4.3-alpha...v0.4.4-alpha
[0.4.3-alpha]: https://github.com/jasongdove/ErsatzTV/compare/v0.4.2-alpha...v0.4.3-alpha

2
ErsatzTV/Pages/Index.razor

@ -103,7 +103,7 @@ @@ -103,7 +103,7 @@
if (version != "develop")
{
string gitHubVersion = version.Split("-").Head() + "-alpha";
string gitHubVersion = version.Split("-").Head() + "-beta";
if (!gitHubVersion.StartsWith("v"))
{
gitHubVersion = $"v{gitHubVersion}";

2
ErsatzTV/Startup.cs

@ -162,7 +162,7 @@ public class Startup @@ -162,7 +162,7 @@ public class Startup
Assembly.GetEntryAssembly()?.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
?.InformationalVersion ?? "unknown");
Log.Logger.Warning("This is alpha software and is likely to be unstable");
Log.Logger.Warning("This is beta software and may be unstable");
Log.Logger.Warning(
"Give feedback at {GitHub} or {Discord}",
"https://github.com/jasongdove/ErsatzTV",

3
README.md

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
# ErsatzTV
**ErsatzTV** is alpha software for configuring and streaming custom live channels using your media library. The software is currently unstable and under active development.
**ErsatzTV** is beta software for configuring and streaming custom live channels using your media library. The software may be unstable and is under active development.
Documentation is available at [ersatztv.org](https://ersatztv.org/).
@ -19,6 +19,7 @@ Want to join the community or have a question? Join us on [Discord](https://disc @@ -19,6 +19,7 @@ Want to join the community or have a question? Join us on [Discord](https://disc
- [Emby](https://emby.media/) media and metadata
- Song and music video libraries
- Pre-roll, mid-roll, post-roll filler options
- Picture-based subtitle burn-in
## License

Loading…
Cancel
Save