Skip to content

Commit 90e9ab8

Browse files
authored
Update 2.9.0 (#120)
1 parent ef0e51b commit 90e9ab8

File tree

12 files changed

+78
-47
lines changed

12 files changed

+78
-47
lines changed

packages/on_audio_query/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [[2.9.0](https://github.com/LucJosin/on_audio_query/releases/tag/2.9.0)]
2+
3+
### Features
4+
5+
- **Added** support to Dart 3.
6+
17
## [[2.8.1](https://github.com/LucJosin/on_audio_query/releases/tag/2.8.1)]
28

39
### Fixes

packages/on_audio_query/README.md

+2-16
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
Add the following code to your `pubspec.yaml`:
5757
```yaml
5858
dependencies:
59-
on_audio_query: ^2.8.0
59+
on_audio_query: ^2.9.0
6060
```
6161
6262
### Request Permission:
@@ -80,7 +80,7 @@ To use this plugin add the following code to your [AndroidManifest.xml](https://
8080

8181
#### IOS:
8282
To use this plugin add the following code to your [Info.plist](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/example/ios/Runner/Info.plist)
83-
```plist
83+
```
8484
<dict>
8585
8686
<key>NSAppleMusicUsageDescription</key>
@@ -89,20 +89,6 @@ To use this plugin add the following code to your [Info.plist](https://github.co
8989
</dict>
9090
```
9191

92-
#### Web:
93-
Since Web Browsers **don't** offer direct access to their user's `file system`, this plugin will use the `assets` folder to "query" the audios files. So, will totally depend of the `developer`.
94-
95-
```yaml
96-
# You don't need add every audio file path, just define the folder.
97-
assets:
98-
- assets/
99-
# If your files are in another folder inside the `assets`:
100-
- assets/audios/
101-
# - assets/audios/animals/
102-
# - assets/audios/animals/cat/
103-
# ...
104-
```
105-
10692
## Some Features:
10793

10894
* Optional and Built-in storage `READ` and `WRITE` permission request

packages/on_audio_query/pubspec.yaml

+19-10
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,33 @@
1+
# ========
2+
# author: Lucas Josino
3+
# github: https://github.com/LucJosin
4+
# website: https://www.lucasjosino.com/
5+
# ========
16
name: on_audio_query
27
description: Flutter Plugin used to query audios/songs infos [title, artist, album, etc..] from device storage.
3-
version: 2.8.1
8+
version: 2.9.0
49
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query
510
issue_tracker: https://github.com/LucJosin/on_audio_query/issues
611
# pub.dev: https://pub.dev/packages/on_audio_query
7-
# ========
8-
# author: Lucas Josino
9-
# github: https://github.com/LucJosin
10-
# website: https://www.lucasjosino.com/
12+
topics:
13+
- audio
14+
- song
15+
- audioquery
16+
- on-audio-query
17+
- storage
18+
- mediastore
19+
- mpmediaquery
1120

1221
environment:
13-
sdk: ">=2.17.0 <3.0.0"
22+
sdk: ">=2.17.0 <4.0.0"
1423
flutter: ">=1.20.0"
1524

1625
dependencies:
1726
# on_audio_query
18-
on_audio_query_platform_interface: ^1.6.1
19-
on_audio_query_web: ^1.5.1
20-
on_audio_query_ios: ^1.0.1
21-
on_audio_query_android: ^1.0.1
27+
on_audio_query_platform_interface: ^1.7.0
28+
on_audio_query_web: ^1.6.0
29+
on_audio_query_ios: ^1.1.0
30+
on_audio_query_android: ^1.1.0
2231

2332
# Flutter
2433
flutter:

packages/on_audio_query_android/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.0
2+
3+
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
4+
15
## 1.0.1
26

37
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).

packages/on_audio_query_android/pubspec.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1+
# ========
2+
# author: Lucas Josino
3+
# github: https://github.com/LucJosin
4+
# website: https://www.lucasjosino.com/
5+
# ========
16
name: on_audio_query_android
27
description: Android implementation of the on_audio_query plugin.
3-
version: 1.0.1
8+
version: 1.1.0
49
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_android
510
# pub.dev: https://pub.dev/packages/on_audio_query
611
# pub.dev (Android): https://pub.dev/packages/on_audio_query_android
7-
# ========
8-
# author: Lucas Josino
9-
# github: https://github.com/LucJosin
10-
# website: https://www.lucasjosino.com/
1112

1213
environment:
13-
sdk: ">=2.17.0 <3.0.0"
14+
sdk: ">=2.17.0 <4.0.0"
1415
flutter: ">=2.5.0"
1516

1617
dependencies:
1718
# on_audio_query
18-
on_audio_query_platform_interface: ^1.6.1
19+
on_audio_query_platform_interface: ^1.7.0
1920

2021
# Flutter
2122
flutter:

packages/on_audio_query_ios/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.0
2+
3+
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
4+
15
## 1.0.1
26

37
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).

packages/on_audio_query_ios/pubspec.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1+
# ========
2+
# author: Lucas Josino
3+
# github: https://github.com/LucJosin
4+
# website: https://www.lucasjosino.com/
5+
# ========
16
name: on_audio_query_ios
27
description: iOS implementation of the on_audio_query plugin.
3-
version: 1.0.1
8+
version: 1.1.0
49
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_ios
510
# pub.dev: https://pub.dev/packages/on_audio_query
611
# pub.dev (iOS): https://pub.dev/packages/on_audio_query_ios
7-
# ========
8-
# author: Lucas Josino
9-
# github: https://github.com/LucJosin
10-
# website: https://www.lucasjosino.com/
1112

1213
environment:
13-
sdk: ">=2.17.0 <3.0.0"
14+
sdk: ">=2.17.0 <4.0.0"
1415
flutter: ">=2.5.0"
1516

1617
dependencies:
1718
# on_audio_query
18-
on_audio_query_platform_interface: ^1.6.1
19+
on_audio_query_platform_interface: ^1.7.0
1920

2021
# Flutter
2122
flutter:

packages/on_audio_query_platform_interface/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.7.0
2+
3+
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
4+
15
## 1.6.1
26

37
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).

packages/on_audio_query_platform_interface/pubspec.yaml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1+
# ========
2+
# author: Lucas Josino
3+
# github: https://github.com/LucJosin
4+
# website: https://www.lucasjosino.com/
5+
# ========
16
name: on_audio_query_platform_interface
27
description: A common platform interface for the [on_audio_query] plugin.
38
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_platform_interface
49
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
510
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
6-
version: 1.6.1
11+
version: 1.7.0
712

813
environment:
9-
sdk: ">=2.17.0 <3.0.0"
14+
sdk: ">=2.17.0 <4.0.0"
1015
flutter: ">=2.0.0"
1116

1217
dependencies:

packages/on_audio_query_web/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.6.0
2+
3+
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
4+
15
## 1.5.1
26

37
- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).

packages/on_audio_query_web/pubspec.yaml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
1+
# ========
2+
# author: Lucas Josino
3+
# github: https://github.com/LucJosin
4+
# website: https://www.lucasjosino.com/
5+
# ========
16
name: on_audio_query_web
27
description: The web implementation of [on_audio_query].
3-
version: 1.5.1
8+
version: 1.6.0
49
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_web
10+
# pub.dev: https://pub.dev/packages/on_audio_query
11+
# pub.dev (Web): https://pub.dev/packages/on_audio_query_web
512

613
environment:
7-
sdk: ">=2.17.0 <3.0.0"
14+
sdk: ">=2.17.0 <4.0.0"
815
flutter: ">=1.20.0"
916

1017
dependencies:
1118
# on_audio_query
12-
on_audio_query_platform_interface: ^1.6.1
19+
on_audio_query_platform_interface: ^1.7.0
1320

1421
# Others
1522
path: ^1.8.0

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: on_audio_query_workspace
22

33
environment:
4-
sdk: ">=2.17.0 <3.0.0"
5-
4+
sdk: ">=2.17.0 <4.0.0"
5+
66
dev_dependencies:
77
melos: ^3.0.1

0 commit comments

Comments
 (0)