diff --git a/CHANGELOG.md b/CHANGELOG.md index 29489d1..690e124 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.1] - 2025-3-30 + +- For consistency, all asset audio files have been cleaned up to be at most 1 second long. + ## [1.2.0] - 2025-3-25 - Use custom openhiit_audioplayers and openhiit_audioplayers_darwin packages to prevent other background audio from stopping on iOS due to the background process audio. diff --git a/assets/audio/blank.mp3 b/assets/audio/blank.mp3 index 3654f4b..80761a8 100644 Binary files a/assets/audio/blank.mp3 and b/assets/audio/blank.mp3 differ diff --git a/assets/audio/countdown-beep.mp3 b/assets/audio/countdown-beep.mp3 index 3f4e814..2caa18a 100644 Binary files a/assets/audio/countdown-beep.mp3 and b/assets/audio/countdown-beep.mp3 differ diff --git a/assets/audio/ding-sequence.mp3 b/assets/audio/ding-sequence.mp3 index f0bac94..3039a8b 100644 Binary files a/assets/audio/ding-sequence.mp3 and b/assets/audio/ding-sequence.mp3 differ diff --git a/assets/audio/ding.mp3 b/assets/audio/ding.mp3 index 0898dbd..8328afe 100644 Binary files a/assets/audio/ding.mp3 and b/assets/audio/ding.mp3 differ diff --git a/assets/audio/halfway-beep2.mp3 b/assets/audio/halfway-beep2.mp3 index 2c65dcf..8650def 100644 Binary files a/assets/audio/halfway-beep2.mp3 and b/assets/audio/halfway-beep2.mp3 differ diff --git a/assets/audio/harsh-beep-sequence.mp3 b/assets/audio/harsh-beep-sequence.mp3 index 61081e6..9ca8bff 100644 Binary files a/assets/audio/harsh-beep-sequence.mp3 and b/assets/audio/harsh-beep-sequence.mp3 differ diff --git a/assets/audio/harsh-beep.mp3 b/assets/audio/harsh-beep.mp3 index 8a6b1bf..f24f365 100644 Binary files a/assets/audio/harsh-beep.mp3 and b/assets/audio/harsh-beep.mp3 differ diff --git a/assets/audio/horn-test.mp3 b/assets/audio/horn-test.mp3 deleted file mode 100644 index 42fbd90..0000000 Binary files a/assets/audio/horn-test.mp3 and /dev/null differ diff --git a/assets/audio/horn.mp3 b/assets/audio/horn.mp3 index e37673b..8d82090 100644 Binary files a/assets/audio/horn.mp3 and b/assets/audio/horn.mp3 differ diff --git a/assets/audio/long-halfway-beep.mp3 b/assets/audio/long-halfway-beep.mp3 index 4c5c3de..085950e 100644 Binary files a/assets/audio/long-halfway-beep.mp3 and b/assets/audio/long-halfway-beep.mp3 differ diff --git a/assets/audio/short-halfway-beep.mp3 b/assets/audio/short-halfway-beep.mp3 index 21408a4..7c9f5c7 100644 Binary files a/assets/audio/short-halfway-beep.mp3 and b/assets/audio/short-halfway-beep.mp3 differ diff --git a/assets/audio/short-rest-beep.mp3 b/assets/audio/short-rest-beep.mp3 index 4f68577..607d7b8 100644 Binary files a/assets/audio/short-rest-beep.mp3 and b/assets/audio/short-rest-beep.mp3 differ diff --git a/assets/audio/thunk.mp3 b/assets/audio/thunk.mp3 index 3435235..1910972 100644 Binary files a/assets/audio/thunk.mp3 and b/assets/audio/thunk.mp3 differ diff --git a/example/.gitignore b/example/.gitignore index 24476c5..6c31954 100644 --- a/example/.gitignore +++ b/example/.gitignore @@ -5,9 +5,11 @@ *.swp .DS_Store .atom/ +.build/ .buildlog/ .history .svn/ +.swiftpm/ migrate_working_dir/ # IntelliJ related diff --git a/example/pubspec.lock b/example/pubspec.lock index a675999..bcf6db0 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -38,15 +38,6 @@ packages: url: "https://pub.dev" source: hosted version: "2.11.0" - audioplayers: - dependency: transitive - description: - path: "packages/audioplayers" - ref: test3 - resolved-ref: c87f19822e07d5c98ed094088e15b499e6b5d2b3 - url: "https://github.com/a-mabe/audioplayers.git" - source: git - version: "6.4.0" audioplayers_android: dependency: transitive description: @@ -55,15 +46,6 @@ packages: url: "https://pub.dev" source: hosted version: "5.2.0" - audioplayers_darwin: - dependency: transitive - description: - path: "packages/audioplayers_darwin" - ref: test3 - resolved-ref: c87f19822e07d5c98ed094088e15b499e6b5d2b3 - url: "https://github.com/a-mabe/audioplayers.git" - source: git - version: "6.2.0" audioplayers_linux: dependency: transitive description: @@ -102,7 +84,7 @@ packages: path: ".." relative: true source: path - version: "1.1.0" + version: "1.2.0" boolean_selector: dependency: transitive description: @@ -456,6 +438,22 @@ packages: url: "https://pub.dev" source: hosted version: "2.0.2" + openhiit_audioplayers: + dependency: transitive + description: + name: openhiit_audioplayers + sha256: c5b765b9f3e8b9f2b6fe1323671a0eb0a363ac6ac173ed4b4240b49b681f83c0 + url: "https://pub.dev" + source: hosted + version: "1.0.1" + openhiit_audioplayers_darwin: + dependency: transitive + description: + name: openhiit_audioplayers_darwin + sha256: f11b1cd5f109ba9f4245b1c64c9b7828f76ca77062b3a8750acc01c72fedb413 + url: "https://pub.dev" + source: hosted + version: "1.0.8" package_config: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 1d1c858..71f5636 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: background_hiit_timer description: Flutter background timer package developed for HIIT timers. Designed to run in the background and play audio cues on Android and iOS. -version: 1.2.0 +version: 1.2.1 repository: https://github.com/a-mabe/background_hiit_timer funding: