Browse Source

add 640x480 resolution (#898)

* update dependencies

* add 640x480 resolution
pull/899/head
Jason Dove 4 years ago committed by GitHub
parent
commit
de2ef959fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 4294
      ErsatzTV.Infrastructure/Migrations/20220724105720_Add_Resolution640480.Designer.cs
  3. 17
      ErsatzTV.Infrastructure/Migrations/20220724105720_Add_Resolution640480.cs
  4. 2
      ErsatzTV.Infrastructure/Migrations/TvContextModelSnapshot.cs
  5. 4
      ErsatzTV/ErsatzTV.csproj

3
CHANGELOG.md

@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Fix subtitle stream selection when subtitle language is different than audio language
- Fix bug with unsupported AAC channel layouts
### Added
- Add `640x480` resolution
## [0.6.3-beta] - 2022-07-04
### Fixed
- Maintain stream continuity when playout is rebuilt for a channel that is actively being streamed

4294
ErsatzTV.Infrastructure/Migrations/20220724105720_Add_Resolution640480.Designer.cs generated

File diff suppressed because it is too large Load Diff

17
ErsatzTV.Infrastructure/Migrations/20220724105720_Add_Resolution640480.cs

@ -0,0 +1,17 @@ @@ -0,0 +1,17 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.Migrations;
public partial class Add_Resolution640480 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql("INSERT INTO Resolution (Id, Height, Width, Name) VALUES (0, 480, 640, '640x480')");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}

2
ErsatzTV.Infrastructure/Migrations/TvContextModelSnapshot.cs

@ -15,7 +15,7 @@ namespace ErsatzTV.Infrastructure.Migrations @@ -15,7 +15,7 @@ namespace ErsatzTV.Infrastructure.Migrations
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "6.0.5");
modelBuilder.HasAnnotation("ProductVersion", "6.0.7");
modelBuilder.Entity("ErsatzTV.Core.Domain.Actor", b =>
{

4
ErsatzTV/ErsatzTV.csproj

@ -72,12 +72,12 @@ @@ -72,12 +72,12 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MudBlazor" Version="6.0.11" />
<PackageReference Include="MudBlazor" Version="6.0.12" />
<PackageReference Include="NaturalSort.Extension" Version="3.2.0" />
<PackageReference Include="PPioli.FluentValidation.Blazor" Version="11.1.0" />
<PackageReference Include="Refit.HttpClientFactory" Version="6.3.2" />
<PackageReference Include="Serilog" Version="2.11.0" />
<PackageReference Include="Serilog.AspNetCore" Version="5.0.0" />
<PackageReference Include="Serilog.AspNetCore" Version="6.0.1" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
<PackageReference Include="Serilog.Sinks.SQLite" Version="6.0.1" />
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />

Loading…
Cancel
Save