Skip to content

Commit 56478ff

Browse files
author
Lucas Pinheiro
committed
Updated README
1 parent 0835dea commit 56478ff

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ NOTE: Feel free to help with readme translations
3939
Add the following code to your `pubspec.yaml`:
4040
```yaml
4141
dependencies:
42-
on_audio_query: ^1.0.6
42+
on_audio_query: ^1.0.7
4343
```
4444
4545
#### Request Permission:
@@ -61,6 +61,7 @@ If you want to use the built-in request permission, will need add the following
6161
* Get all artists and artist-specific audios.
6262
* Get all playlists and playlists-specific audios.
6363
* Get all genres and genres-specific audios.
64+
* Get all folders and specific audios.
6465
* Get all query methods with specific keys [Search].
6566
* Create/Delete/Rename playlists.
6667
* Add/Remove/Move specific audios to playlists.
@@ -82,16 +83,18 @@ All types of methods on this plugin:
8283

8384
| Methods | Parameters | Return |
8485
|--------------|-----------------|-----------------|
85-
| [`querySongs`](#querysongs) | `(SortType, OrderType, UriType,RequestPermission)` | `List<SongModel>` | <br>
86+
| [`querySongs`](#querysongs) | `(SortType, OrderType, UriType, RequestPermission)` | `List<SongModel>` | <br>
8687
| [`queryAudio`]() | `(SortType, OrderType, UriType, RequestPermission)`. | `List<SongModel>` | <br>
8788
| [`queryAlbums`](#queryalbums) | `(SortType, OrderType, UriType, RequestPermission)` | `List<AlbumModel>` | <br>
8889
| [`queryArtists`](#queryartists) | `(SortType, OrderType, UriType, RequestPermission)` | `List<ArtistModel>` | <br>
8990
| [`queryPlaylists`](#queryplaylists) | `(SortType, OrderType, UriType, RequestPermission)` | `List<PlaylistModel>` | <br>
9091
| [`queryGenres`](#querygenres) | `(SortType, OrderType, UriType, RequestPermission)` | `List<GenreModel>` | <br>
9192
| [`queryAudiosFrom`]() | `(Type, Where, RequestPermission)` | `List<SongModel>` | <br>
92-
| [`queryAudiosOnly`]() | `(Type, Where, AudiosOnlyType, RequestPermission)` | `List<SongModel>` | <br>
93-
| [`queryWithFilters`]() | `(ArgsVal, WithFiltersType, Args, RequestPermission)` | `List<dynamic>` | <br>
94-
| [`queryArtworks`]() | `(Id, Type, Format, Size, RequestPermission)` | `Uint8List` | <br>
93+
| [`queryAudiosOnly`](#queryAudiosOnly) | `(Type, Where, AudiosOnlyType, RequestPermission)` | `List<SongModel>` | <br>
94+
| [`queryWithFilters`](#queryWithFilters) | `(ArgsVal, WithFiltersType, Args, RequestPermission)` | `List<dynamic>` | <br>
95+
| [`queryArtworks`](#queryArtworks) | `(Id, Type, Format, Size, RequestPermission)` | `Uint8List` | <br>
96+
| [`queryFromFolder`]() | `(Path, SortType, OrderType, UriType, RequestPermission)`. | `List<SongModel>` | <br>
97+
| [`queryAllPath`]() | | `List<String>` | <br>
9598
| [`createPlaylist`]() | `(PlaylistName, RequestPermission)` | `bool` | <br>
9699
| [`removePlaylist`]() | `(PlaylistId, RequestPermission)` | `bool` | <br>
97100
| [`addToPlaylist`]() | **[NT-BG]**`(PlaylistId, AudioId, RequestPermission)` | `bool` | <br>

README.pt-BR.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Se você quer usar a solicitação de permissões interna, irá precisar adicion
6262
* Pega todas as playlists e áudios específicos das playlists.
6363
* Pega todos os gêneros e áudios específicos dos gêneros.
6464
* Pega todos os métodos de query com keys específicas [Search/Busca].
65+
* Pega todos as pastas e áudios específicos das pastas.
6566
* Criar/Deletar/Renomear playlists.
6667
* Adicionar/Remover/Mover específicos áudios para playlists.
6768
* Específicos tipos de classificação para todos os métodos.
@@ -82,16 +83,18 @@ Todos os tipos de métodos nesse plugin:
8283

8384
| Métodos | Parâmetros | Return |
8485
|--------------|-----------------|-----------------|
85-
| [`querySongs`](#querysongs) | `(SortType, OrderType, UriType,RequestPermission)` | `List<SongModel>` | <br>
86+
| [`querySongs`](#querysongs) | `(SortType, OrderType, UriType, RequestPermission)` | `List<SongModel>` | <br>
8687
| [`queryAudio`]() | `(SortType, OrderType, UriType, RequestPermission)`. | `List<SongModel>` | <br>
8788
| [`queryAlbums`](#queryalbums) | `(SortType, OrderType, UriType, RequestPermission)` | `List<AlbumModel>` | <br>
8889
| [`queryArtists`](#queryartists) | `(SortType, OrderType, UriType, RequestPermission)` | `List<ArtistModel>` | <br>
8990
| [`queryPlaylists`](#queryplaylists) | `(SortType, OrderType, UriType, RequestPermission)` | `List<PlaylistModel>` | <br>
9091
| [`queryGenres`](#querygenres) | `(SortType, OrderType, UriType, RequestPermission)` | `List<GenreModel>` | <br>
9192
| [`queryAudiosFrom`]() | `(Type, Where, RequestPermission)` | `List<SongModel>` | <br>
92-
| [`queryAudiosOnly`]() | `(Type, Where, isOnly, RequestPermission)` | `List<SongModel>` | <br>
93-
| [`queryWithFilters`]() | `(ArgsVal, WithFiltersType, Args, RequestPermission)` | `List<dynamic>` | <br>
94-
| [`queryArtworks`]() | `(Id, Type, Format, Size, RequestPermission)` | `Uint8List` | <br>
93+
| [`queryAudiosOnly`](#queryAudiosOnly) | `(Type, Where, AudiosOnlyType, RequestPermission)` | `List<SongModel>` | <br>
94+
| [`queryWithFilters`](#queryWithFilters) | `(ArgsVal, WithFiltersType, Args, RequestPermission)` | `List<dynamic>` | <br>
95+
| [`queryArtworks`](#queryArtworks) | `(Id, Type, Format, Size, RequestPermission)` | `Uint8List` | <br>
96+
| [`queryFromFolder`]() | `(Path, SortType, OrderType, UriType, RequestPermission)`. | `List<SongModel>` | <br>
97+
| [`queryAllPath`]() | | `List<String>` | <br>
9598
| [`createPlaylist`]() | `(PlaylistName, RequestPermission)` | `bool` | <br>
9699
| [`removePlaylist`]() | `(PlaylistId, RequestPermission)` | `bool` | <br>
97100
| [`addToPlaylist`]() | **[NT-BG]**`(PlaylistId, AudioId, RequestPermission)` | `bool` | <br>

0 commit comments

Comments
 (0)