From 992fbb109af7abb5af32ef690664bf632ad7ec6a Mon Sep 17 00:00:00 2001 From: "K1llM@n" Date: Wed, 1 May 2024 14:00:51 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=B5=D1=80=D1=81=D0=B8=D1=8F=201.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ docs/source/api/branches/library.rst | 2 +- src/Configs/Common.xml | 2 +- src/Yandex.Music.Api/README.md | 8 +++++--- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 077d093..ae8e010 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # История изменений +## 1.10.0 +* Добавлено получение списка последних прослушиваний и лэндинга детского раздела. ([PrepConcedeITIS](https://github.com/PrepConcedeITIS)) +* Актуализированы модели. ## 1.9.0 * Добавлено получение информации по лейблам. ([PrepConcedeITIS](https://github.com/PrepConcedeITIS)) ## 1.8.0 diff --git a/docs/source/api/branches/library.rst b/docs/source/api/branches/library.rst index a4f34cb..85b8d90 100644 --- a/docs/source/api/branches/library.rst +++ b/docs/source/api/branches/library.rst @@ -97,6 +97,6 @@ YLibraryAPI .. code-block:: csharp - public async YResponse GetRecentlyListened(AuthStorage storage, IEnumerable contextTypes, int trackCount, int contextCount) + public async YResponse GetRecentlyListenedAsync(AuthStorage storage, IEnumerable contextTypes, int trackCount, int contextCount) Получение списка "Вы недавно слушали" \ No newline at end of file diff --git a/src/Configs/Common.xml b/src/Configs/Common.xml index f0425fa..ff29562 100644 --- a/src/Configs/Common.xml +++ b/src/Configs/Common.xml @@ -5,7 +5,7 @@ - 1.9.0 + 1.10.0 $(ApiVersion) $(ApiVersion) $(ApiVersion) diff --git a/src/Yandex.Music.Api/README.md b/src/Yandex.Music.Api/README.md index 22d3d2c..bcd1dd2 100644 --- a/src/Yandex.Music.Api/README.md +++ b/src/Yandex.Music.Api/README.md @@ -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) @@ -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 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)