Skip to content

Commit

Permalink
FSB-3314: ActiveOriginalFocusPoint defined as double instead of int (#72
Browse files Browse the repository at this point in the history
)

* test coveralls

* test path

* Update run-tests.yml

* Update run-tests.yml

* Update run-tests.yml

* Update run-tests.yml

* Update run-tests.yml

* test

* update tests

* formatting and badge

- status badge for coverage
- formatting and naming cleanup

* syntax fix

* syntax fix

* test

* test

* test

* test

* coverlet

* correct path

* working changes

* tests

* path correction

* test

* coveralls repo token

* cat coverage file

* coverage results from lcov

* remove the accidental workspace push

* add badges for downloads and versions

* test cat coverage report

* prune cat coverage after sanity check

* add badges

- current badge sometimes takes a long time to load. This new one doesn't.

* test print

* test

* test

* remove cat

* check

* Update run-tests.yml

* fix breaking double ActiveOriginalFocusPoint

* update release notes and version
  • Loading branch information
Arpit-Sharma-USC authored Jan 19, 2022
1 parent d1480c6 commit bf704f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Bynder/Sdk/Bynder.Sdk.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net48</TargetFrameworks>
<AssemblyVersion>2.2.10.0</AssemblyVersion>
<FileVersion>2.2.10.0</FileVersion>
<AssemblyVersion>2.2.11.0</AssemblyVersion>
<FileVersion>2.2.11.0</FileVersion>
<Company>Bynder</Company>
<Product>Bynder.Sdk</Product>
<Copyright>Copyright © Bynder</Copyright>
<PackOnBuild>true</PackOnBuild>
<PackageVersion>2.2.10</PackageVersion>
<PackageVersion>2.2.11</PackageVersion>
<Authors>BynderDevops</Authors>
<Description>The main goal of this SDK is to speed up the integration of Bynder customers who use C# making it easier to connect to the Bynder API (http://docs.bynder.apiary.io/) and executing requests on it.</Description>
<PackageIcon>BynderLogo.png</PackageIcon>
Expand All @@ -17,7 +17,7 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Owners>BynderDevops</Owners>
<PackageProjectUrl>https://github.com/Bynder/bynder-c-sharp-sdk</PackageProjectUrl>
<PackageReleaseNotes>Added "transformBaseUrl" field to Media model. Added functionality to create and delete asset usage records. Added functionality to pass metaproperty options during save &amp; modify media.</PackageReleaseNotes>
<PackageReleaseNotes>Fixes the data-type for property representing active focus point in the original media item.</PackageReleaseNotes>
<Summary>The main goal of this SDK is to speed up the integration of Bynder customers who use C# making it easier to connect to the Bynder API (http://docs.bynder.apiary.io/) and executing requests on it.</Summary>
<PackageTags>Bynder API C# SDK</PackageTags>
<Title>Bynder.Sdk</Title>
Expand Down
2 changes: 1 addition & 1 deletion Bynder/Sdk/Model/Media.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Media
/// by an x,y coordinate.
/// </summary>
[JsonProperty("activeOriginalFocusPoint")]
public IDictionary<string, double> ActiveOriginalFocusPoint { get; set; }
public IDictionary<string, int> ActiveOriginalFocusPoint { get; set; }

/// <summary>
/// Number of times the media has been downloaded
Expand Down

0 comments on commit bf704f9

Please sign in to comment.