Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Commit d02a69a

Browse files
committed
Minor update
1 parent 0536a42 commit d02a69a

File tree

4 files changed

+36
-30
lines changed

4 files changed

+36
-30
lines changed

AniAPI.NET/AniAPI.NET.csproj

Lines changed: 27 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<PackageId>AniAPI.NET</PackageId>
6-
<Version>1.0.3</Version>
7-
<Authors>Dazorn96</Authors>
8-
<Company>AnIAPI</Company>
9-
<PackageReleaseNotes>Added support for NSFW anime filter</PackageReleaseNotes>
10-
<PackageTags>aniapi anime api wrapper netcore</PackageTags>
11-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
12-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<PackageId>AniAPI.NET</PackageId>
6+
<Version>1.1.1</Version>
7+
<Authors>Dazorn96</Authors>
8+
<Company>AnIAPI</Company>
9+
<PackageReleaseNotes>Updated to AniAPI version 1.1.0</PackageReleaseNotes>
10+
<PackageTags>aniapi anime api wrapper netcore</PackageTags>
11+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
12+
<PackageIcon>aniapi_icon_dark.png</PackageIcon>
13+
<PackageProjectUrl>https://github.com/AniAPI-Team/AniAPI.NET</PackageProjectUrl>
14+
<PackageReadmeFile>README.md</PackageReadmeFile>
15+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
16+
</PropertyGroup>
1317

14-
<ItemGroup>
15-
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
16-
</ItemGroup>
18+
<ItemGroup>
19+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
20+
</ItemGroup>
21+
22+
<ItemGroup>
23+
<Folder Include="Images\" />
24+
</ItemGroup>
25+
26+
<ItemGroup>
27+
<None Include="Images\aniapi_icon_dark.png" Pack="true" PackagePath="\" />
28+
<None Include="../README.md" Pack="true" PackagePath="\" />
29+
<None Include="../LICENSE" Pack="true" PackagePath="" />
30+
</ItemGroup>
1731

1832
</Project>
14.1 KB
Loading

AniAPI.NET/Models/Episode.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,14 @@ public class Episode
2424
[JsonProperty("video")]
2525
public string Video { get; set; }
2626

27-
[JsonProperty("source")]
28-
public string Source { get; set; }
27+
[JsonProperty("quality")]
28+
public string Quality { get; set; }
29+
30+
[JsonProperty("format")]
31+
public string Format { get; set; }
32+
33+
[JsonProperty("is_dub")]
34+
public bool IsDub { get; set; }
2935

3036
[JsonProperty("locale")]
3137
public string Locale { get; set; }

README.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Build badge](https://img.shields.io/badge/build-passing-green)](#)
2-
[![Nuget badge](https://img.shields.io/badge/nuget-v1.0.1-blue)](https://www.nuget.org/packages/AniAPI.NET/1.0.1)
2+
[![Nuget badge](https://img.shields.io/badge/nuget-v1.1.1-blue)](https://www.nuget.org/packages/AniAPI.NET/1.1.1)
33

44
# AniAPI.NET
55

@@ -26,20 +26,6 @@ PM> Install-Package AniAPI.NET
2626
> dotnet add package AniAPI.NET
2727
```
2828

29-
## Changelog
30-
31-
### 23.07.2021 - Version 1.0.1 (latest)
32-
33-
#### Features
34-
35-
* Anime
36-
* Episode
37-
* Song
38-
* Resource
39-
* User
40-
* UserStory
41-
* OAuth
42-
4329
## Documentation
4430

4531
See [project wiki](https://github.com/AniAPI-Team/AniAPI.NET/wiki).

0 commit comments

Comments
 (0)