Skip to content

Commit

Permalink
Updated version of package, changelog and readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ervie committed Jul 31, 2019
1 parent de48dd7 commit 5152325
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 12 deletions.
19 changes: 19 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 31.07.2019 - Version 1.3.0 (newest)

- Integration with Jikan API v3.3.
- Features
- <b>[Search]</b> Improved searching for manga and anime
- Order by data (Title, score, etc.)
- Filter Producer (anime) or Magazine (manga)
- Improved multiple genre query.
- <b>[UserList]</b> Advanced User Lists (Anime/Manga) queries
- Usable by passing `UserListAnimeSearchConfig` to `GetUserAnimeList` and `UserListMangaSearchConfig`to `GetUserMangaList` methods
- Order by data: `OrderBy`, `OrderBy2` (Title, score, etc.)
- Sort by ascending/descending - `SortBy`
- Search user list: `Query` property
- New Anime filters: `Producer`, `Season`, `Year`, `AiringStatus`
- New Manga filters: `Magazine`, `PublishingStatus`
- Paging support: `Page` property
- Fixes
- <b>[AnimeEpisoded]</b> changed `Aired` property from `TimeSpan` (a pair of `DateTime`) to single `DateTime`

## 07.04.2019 - Version 1.2.5 (newest)

- Jikan.net now can be used with own instance of Jikan REST API. Read more [here](https://github.com/Ervie/jikan.net/wiki/Using-own-instance-of-Jikan).
Expand Down
8 changes: 4 additions & 4 deletions JikanDotNet/JikanDotNet/JikanDotNet.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.2.5</Version>
<Version>1.3.0</Version>
<Authors>Bartłomiej Buchała</Authors>
<Description>A dotnet wrapper for Jikan REST API, fetching data from MyAnimeList.</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
Expand All @@ -12,8 +12,8 @@
<PackageLicenseUrl>https://github.com/Ervie/jikan.net/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Ervie/jikan.net</PackageProjectUrl>
<PackageIconUrl>https://jikan.moe/assets/images/favicon/apple-touch-icon.png</PackageIconUrl>
<FileVersion>1.2.0.5</FileVersion>
<AssemblyVersion>1.2.0.5</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
26 changes: 18 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,24 @@ Then restore dependencies:

# Changelog

## 07.04.2019 - Version 1.2.5

- Jikan.net now can be used with own instance of Jikan REST API. Read more [here](https://github.com/Ervie/jikan.net/wiki/Using-own-instance-of-Jikan).
- New fields
- RelatedAnime
- `RelatedAnime` now has `AlternativeVersions`, `ParentStories` and `FullStories` fields.
- RelatedManga
- `RelatedManga` now has `AlternativeVersions`, `ParentStories` and `FullStories` fields.
## 31.07.2019 - Version 1.3.0

- Integration with Jikan API v3.3.
- Features
- <b>[Search]</b> Improved searching for manga and anime
- Order by data (Title, score, etc.)
- Filter Producer (anime) or Magazine (manga)
- Improved multiple genre query.
- <b>[UserList]</b> Advanced User Lists (Anime/Manga) queries
- Usable by passing `UserListAnimeSearchConfig` to `GetUserAnimeList` and `UserListMangaSearchConfig`to `GetUserMangaList` methods
- Order by data: `OrderBy`, `OrderBy2` (Title, score, etc.)
- Sort by ascending/descending - `SortBy`
- Search user list: `Query` property
- New Anime filters: `Producer`, `Season`, `Year`, `AiringStatus`
- New Manga filters: `Magazine`, `PublishingStatus`
- Paging support: `Page` property
- Fixes
- <b>[AnimeEpisoded]</b> changed `Aired` property from `TimeSpan` (a pair of `DateTime`) to single `DateTime`


**[Read More](https://github.com/Ervie/jikan.net/blob/master/Changelog.md)**
Expand Down

0 comments on commit 5152325

Please sign in to comment.