From 928bb662337ff2eff40c888a02ef3fe2deb75295 Mon Sep 17 00:00:00 2001 From: Gyugyu94 Date: Mon, 27 May 2024 12:04:10 +0900 Subject: [PATCH 1/2] Updated the comments related to useLazyPreparation in ConcatenatingAudioSource --- just_audio/lib/just_audio.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/just_audio/lib/just_audio.dart b/just_audio/lib/just_audio.dart index 591fcf781..c03ce0983 100644 --- a/just_audio/lib/just_audio.dart +++ b/just_audio/lib/just_audio.dart @@ -2523,8 +2523,8 @@ class ConcatenatingAudioSource extends AudioSource { /// Creates a [ConcatenatingAudioSorce] with the specified [children]. If /// [useLazyPreparation] is `true`, children will be loaded/buffered as late - /// as possible before needed for playback (currently supported on Android - /// only). When [AudioPlayer.shuffleModeEnabled] is `true`, [shuffleOrder] + /// as possible before needed for playback (currently supported on Android, + /// iOS, MacOS). When [AudioPlayer.shuffleModeEnabled] is `true`, [shuffleOrder] /// will be used to determine the playback order (defaulting to /// [DefaultShuffleOrder]). ConcatenatingAudioSource({ From 4dfbee57e9e4c14042c47f35b0fd3afb0d64495c Mon Sep 17 00:00:00 2001 From: Ryan Heise Date: Wed, 30 Oct 2024 02:02:22 +1100 Subject: [PATCH 2/2] Wrap comments --- just_audio/lib/just_audio.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/just_audio/lib/just_audio.dart b/just_audio/lib/just_audio.dart index c03ce0983..a445db1de 100644 --- a/just_audio/lib/just_audio.dart +++ b/just_audio/lib/just_audio.dart @@ -2524,8 +2524,8 @@ class ConcatenatingAudioSource extends AudioSource { /// Creates a [ConcatenatingAudioSorce] with the specified [children]. If /// [useLazyPreparation] is `true`, children will be loaded/buffered as late /// as possible before needed for playback (currently supported on Android, - /// iOS, MacOS). When [AudioPlayer.shuffleModeEnabled] is `true`, [shuffleOrder] - /// will be used to determine the playback order (defaulting to + /// iOS, MacOS). When [AudioPlayer.shuffleModeEnabled] is `true`, + /// [shuffleOrder] will be used to determine the playback order (defaulting to /// [DefaultShuffleOrder]). ConcatenatingAudioSource({ required this.children,