Skip to content

Commit

Permalink
Update 2.9.0 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucJosin committed May 15, 2023
1 parent ef0e51b commit 90e9ab8
Show file tree
Hide file tree
Showing 12 changed files with 78 additions and 47 deletions.
6 changes: 6 additions & 0 deletions packages/on_audio_query/CHANGELOG.md
@@ -1,3 +1,9 @@
## [[2.9.0](https://github.com/LucJosin/on_audio_query/releases/tag/2.9.0)]

### Features

- **Added** support to Dart 3.

## [[2.8.1](https://github.com/LucJosin/on_audio_query/releases/tag/2.8.1)]

### Fixes
Expand Down
18 changes: 2 additions & 16 deletions packages/on_audio_query/README.md
Expand Up @@ -56,7 +56,7 @@
Add the following code to your `pubspec.yaml`:
```yaml
dependencies:
on_audio_query: ^2.8.0
on_audio_query: ^2.9.0
```

### Request Permission:
Expand All @@ -80,7 +80,7 @@ To use this plugin add the following code to your [AndroidManifest.xml](https://

#### IOS:
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)
```plist
```
<dict>
<key>NSAppleMusicUsageDescription</key>
Expand All @@ -89,20 +89,6 @@ To use this plugin add the following code to your [Info.plist](https://github.co
</dict>
```

#### Web:
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`.

```yaml
# You don't need add every audio file path, just define the folder.
assets:
- assets/
# If your files are in another folder inside the `assets`:
- assets/audios/
# - assets/audios/animals/
# - assets/audios/animals/cat/
# ...
```

## Some Features:

* Optional and Built-in storage `READ` and `WRITE` permission request
Expand Down
29 changes: 19 additions & 10 deletions packages/on_audio_query/pubspec.yaml
@@ -1,24 +1,33 @@
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/
# ========
name: on_audio_query
description: Flutter Plugin used to query audios/songs infos [title, artist, album, etc..] from device storage.
version: 2.8.1
version: 2.9.0
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query
issue_tracker: https://github.com/LucJosin/on_audio_query/issues
# pub.dev: https://pub.dev/packages/on_audio_query
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/
topics:
- audio
- song
- audioquery
- on-audio-query
- storage
- mediastore
- mpmediaquery

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=1.20.0"

dependencies:
# on_audio_query
on_audio_query_platform_interface: ^1.6.1
on_audio_query_web: ^1.5.1
on_audio_query_ios: ^1.0.1
on_audio_query_android: ^1.0.1
on_audio_query_platform_interface: ^1.7.0
on_audio_query_web: ^1.6.0
on_audio_query_ios: ^1.1.0
on_audio_query_android: ^1.1.0

# Flutter
flutter:
Expand Down
4 changes: 4 additions & 0 deletions packages/on_audio_query_android/CHANGELOG.md
@@ -1,3 +1,7 @@
## 1.1.0

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

## 1.0.1

- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
Expand Down
15 changes: 8 additions & 7 deletions packages/on_audio_query_android/pubspec.yaml
@@ -1,21 +1,22 @@
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/
# ========
name: on_audio_query_android
description: Android implementation of the on_audio_query plugin.
version: 1.0.1
version: 1.1.0
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_android
# pub.dev: https://pub.dev/packages/on_audio_query
# pub.dev (Android): https://pub.dev/packages/on_audio_query_android
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=2.5.0"

dependencies:
# on_audio_query
on_audio_query_platform_interface: ^1.6.1
on_audio_query_platform_interface: ^1.7.0

# Flutter
flutter:
Expand Down
4 changes: 4 additions & 0 deletions packages/on_audio_query_ios/CHANGELOG.md
@@ -1,3 +1,7 @@
## 1.1.0

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

## 1.0.1

- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
Expand Down
15 changes: 8 additions & 7 deletions packages/on_audio_query_ios/pubspec.yaml
@@ -1,21 +1,22 @@
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/
# ========
name: on_audio_query_ios
description: iOS implementation of the on_audio_query plugin.
version: 1.0.1
version: 1.1.0
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_ios
# pub.dev: https://pub.dev/packages/on_audio_query
# pub.dev (iOS): https://pub.dev/packages/on_audio_query_ios
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=2.5.0"

dependencies:
# on_audio_query
on_audio_query_platform_interface: ^1.6.1
on_audio_query_platform_interface: ^1.7.0

# Flutter
flutter:
Expand Down
4 changes: 4 additions & 0 deletions packages/on_audio_query_platform_interface/CHANGELOG.md
@@ -1,3 +1,7 @@
## 1.7.0

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

## 1.6.1

- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
Expand Down
9 changes: 7 additions & 2 deletions packages/on_audio_query_platform_interface/pubspec.yaml
@@ -1,12 +1,17 @@
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/
# ========
name: on_audio_query_platform_interface
description: A common platform interface for the [on_audio_query] plugin.
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_platform_interface
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 1.6.1
version: 1.7.0

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=2.0.0"

dependencies:
Expand Down
4 changes: 4 additions & 0 deletions packages/on_audio_query_web/CHANGELOG.md
@@ -1,3 +1,7 @@
## 1.6.0

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

## 1.5.1

- See more [on_audio_query - CHANGELOG](https://github.com/LucJosin/on_audio_query/blob/main/on_audio_query/CHANGELOG.md).
Expand Down
13 changes: 10 additions & 3 deletions packages/on_audio_query_web/pubspec.yaml
@@ -1,15 +1,22 @@
# ========
# author: Lucas Josino
# github: https://github.com/LucJosin
# website: https://www.lucasjosino.com/
# ========
name: on_audio_query_web
description: The web implementation of [on_audio_query].
version: 1.5.1
version: 1.6.0
homepage: https://github.com/LucJosin/on_audio_query/tree/main/packages/on_audio_query_web
# pub.dev: https://pub.dev/packages/on_audio_query
# pub.dev (Web): https://pub.dev/packages/on_audio_query_web

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=1.20.0"

dependencies:
# on_audio_query
on_audio_query_platform_interface: ^1.6.1
on_audio_query_platform_interface: ^1.7.0

# Others
path: ^1.8.0
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
@@ -1,7 +1,7 @@
name: on_audio_query_workspace

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.17.0 <4.0.0"

dev_dependencies:
melos: ^3.0.1

0 comments on commit 90e9ab8

Please sign in to comment.