Skip to content

Commit

Permalink
Updated C# client to v1.200.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitmovin OpenApi Bot committed Jul 23, 2024
1 parent 9fdc8fe commit 98158e7
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ Add this dependency to your project:

Package Manager
```shell
Install-Package Bitmovin.Api.Sdk -Version 1.199.0
Install-Package Bitmovin.Api.Sdk -Version 1.200.0
```

.NET CLI

```shell
dotnet add package Bitmovin.Api.Sdk --version 1.199.0
dotnet add package Bitmovin.Api.Sdk --version 1.200.0
```

## Initialization
Expand Down
4 changes: 2 additions & 2 deletions docs/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ <h2 id="installation">Installation</h2>
<h3 id="nuget">Nuget</h3>
<p>Add this dependency to your project:</p>
<p>Package Manager</p>
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.199.0
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.200.0
</code></pre>
<p>.NET CLI</p>
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.199.0
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.200.0
</code></pre>
<h2 id="initialization">Initialization</h2>
<pre><code class="lang-csharp"> using Bitmovin.Api;
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ <h2 id="installation">Installation</h2>
<h3 id="nuget">Nuget</h3>
<p>Add this dependency to your project:</p>
<p>Package Manager</p>
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.199.0
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.200.0
</code></pre>
<p>.NET CLI</p>
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.199.0
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.200.0
</code></pre>
<h2 id="initialization">Initialization</h2>
<pre><code class="lang-csharp"> using Bitmovin.Api;
Expand Down
4 changes: 2 additions & 2 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"output": {
".html": {
"relative_path": "README.html",
"hash": "zttOByAFxHZruTv7E4UJTQ=="
"hash": "X0jk6B6ylkSDMEDskUt/WA=="
}
},
"is_incremental": false,
Expand All @@ -27,7 +27,7 @@
"output": {
".html": {
"relative_path": "index.html",
"hash": "Uz9VoB0HIW+k5im7+0Ml0w=="
"hash": "tis/lJu5lXPhqjS1pm+AKQ=="
}
},
"is_incremental": false,
Expand Down
2 changes: 1 addition & 1 deletion src/Bitmovin.Api.Sdk/Bitmovin.Api.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<PackageVersion>1.199.0</PackageVersion>
<PackageVersion>1.200.0</PackageVersion>
<Title>Bitmovin C# API Client</Title>
<Authors>Bitmovin Inc</Authors>
<Description>C#-Client which enables you to seamlessly integrate the Bitmovin API into your projects. Using this API client requires an active account.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Bitmovin.Api.Sdk/Common/BitmovinApiClientFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected virtual Dictionary<string, string> GetHeaders()
var headers = new Dictionary<string, string>
{
{"X-Api-Client", "bitmovin-api-sdk-dotnet"},
{"X-Api-Client-Version", "1.199.0"}
{"X-Api-Client-Version", "1.200.0"}
};

if (!string.IsNullOrEmpty(ApiKey))
Expand Down
6 changes: 6 additions & 0 deletions src/Bitmovin.Api.Sdk/Models/DolbyVisionProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ public enum DolbyVisionProfile
[EnumMember(Value = "DVHE_07")]
DVHE_07,

/// <summary>
/// Dolby Vision Profile 8.1 (HDR10 cross-compatibility)
/// </summary>
[EnumMember(Value = "DVHE_08_1")]
DVHE_08_1,

/// <summary>
/// hev1.08
/// </summary>
Expand Down

0 comments on commit 98158e7

Please sign in to comment.