Skip to content

Commit

Permalink
Version 8.9.1
Browse files Browse the repository at this point in the history
* [iOS] Adds Privacy Manifest
* [iOS] Adds support for Swift Package Manager
  • Loading branch information
781flyingdutchman committed Jan 12, 2025
1 parent 04525ba commit 90f6a36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 8.9.1
* [iOS] Adds Privacy Manifest
* [iOS] Adds support for Swift Package Manager

## 8.9.0
* Adds `options` field to Task, which take a `TaskOptions` object to configure less common task specific options - currently `onTaskStart`, `onTaskFinished` and `auth`
- `onTaskStart` is a callback with signature`Future<Task?> Function(Task original)`, called just before the task starts executing. Your callback receives the `original` task about to start, and can modify this task if necessary. If you make modifications, you return the modified task - otherwise return null to continue execution with the original task. You can only change the task's `url` (including query parameters) and `headers` properties - making changes to any other property may lead to undefined behavior.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: background_downloader
description: A multi-platform background file downloader and uploader. Define the task, enqueue and monitor progress

version: 8.9.0
version: 8.9.1
repository: https://github.com/781flyingdutchman/background_downloader

environment:
Expand Down

0 comments on commit 90f6a36

Please sign in to comment.