Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 2.9.0 #120

Merged
merged 5 commits into from
May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/on_audio_query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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