Skip to content

Commit

Permalink
Версия 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
K1llMan committed May 1, 2024
1 parent a992c23 commit 992fbb1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# История изменений

## 1.10.0
* Добавлено получение списка последних прослушиваний и лэндинга детского раздела. ([PrepConcedeITIS](https://github.com/PrepConcedeITIS))
* Актуализированы модели.
## 1.9.0
* Добавлено получение информации по лейблам. ([PrepConcedeITIS](https://github.com/PrepConcedeITIS))
## 1.8.0
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api/branches/library.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ YLibraryAPI

.. code-block:: csharp
public async YResponse<YRecentlyListenedContext> GetRecentlyListened(AuthStorage storage, IEnumerable<YPlayContextType> contextTypes, int trackCount, int contextCount)
public async YResponse<YRecentlyListenedContext> GetRecentlyListenedAsync(AuthStorage storage, IEnumerable<YPlayContextType> contextTypes, int trackCount, int contextCount)
Получение списка "Вы недавно слушали"
2 changes: 1 addition & 1 deletion src/Configs/Common.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<ApiVersion>1.9.0</ApiVersion>
<ApiVersion>1.10.0</ApiVersion>
<Version>$(ApiVersion)</Version>
<AssemblyVersion>$(ApiVersion)</AssemblyVersion>
<FileVersion>$(ApiVersion)</FileVersion>
Expand Down
8 changes: 5 additions & 3 deletions src/Yandex.Music.Api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ YandexMusicApi
│   └── GetArtistsByLabel / Async (AuthStorage storage, YLabel label, int page)
├── Landing
│   ├── Get / Async (AuthStorage storage, params YLandingBlockType[] blocks)
│   └── Feed / Async (AuthStorage storage)
│   ├── Feed / Async (AuthStorage storage)
│   └── GetChildrenLanding / Async (AuthStorage storage)
├── Playlist
│   ├── Get / Async (AuthStorage storage, string user, string kinds)
│   ├── Get / Async (AuthStorage storage, IEnumerable<(string user, string kind)> ids)
Expand Down Expand Up @@ -98,8 +99,9 @@ YandexMusicApi
│   ├── RemoveAlbumLike / Async (AuthStorage storage, YAlbum album)
│   ├── AddArtistLike / Async (AuthStorage storage, YArtist artist)
│   ├── RemoveArtistLike / Async (AuthStorage storage, YArtist artist)
│   ├── AddPlaylistLike / Async(AuthStorage storage, YPlaylist playlist)
│   └── RemovePlaylistLike / Async(AuthStorage storage, YPlaylist playlist)
│   ├── AddPlaylistLike / Async (AuthStorage storage, YPlaylist playlist)
│   ├── RemovePlaylistLike / Async (AuthStorage storage, YPlaylist playlist)
│   └── GetRecentlyListened / Async (AuthStorage storage, IEnumerable<YPlayContextType> contextTypes, int trackCount, int contextCount)
├── Search
│   ├── Track / Async (AuthStorage storage, string trackName, int pageNumber = 0, int pageSize = 20)
│   ├── Albums / Async (AuthStorage storage, string albumName, int pageNumber = 0, int pageSize = 20)
Expand Down

0 comments on commit 992fbb1

Please sign in to comment.