From f1a5493aeb74b1b7f4651d2ebdf0e6d4528a994c Mon Sep 17 00:00:00 2001 From: edde746 <86283021+edde746@users.noreply.github.com> Date: Tue, 4 Nov 2025 08:52:37 +0100 Subject: [PATCH] feat: higher playback speed options add 2.5x and 3x speed options --- lib/widgets/plex_video_controls.dart | 2 +- pubspec.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/widgets/plex_video_controls.dart b/lib/widgets/plex_video_controls.dart index a10db77c..80d9fbd8 100644 --- a/lib/widgets/plex_video_controls.dart +++ b/lib/widgets/plex_video_controls.dart @@ -1585,7 +1585,7 @@ class _PlexVideoControlsState extends State final currentRate = snapshot.data ?? 1.0; // Define available playback speeds - final speeds = [0.5, 0.75, 1.0, 1.25, 1.5, 2.0]; + final speeds = [0.5, 0.75, 1.0, 1.25, 1.5, 2.0, 2.5, 3.0]; return SafeArea( child: SizedBox( diff --git a/pubspec.yaml b/pubspec.yaml index 908a9616..5377e090 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -44,6 +44,7 @@ flutter: assets: - lib/data/iso_639_codes.json - assets/plezy.png + - assets/droid-sans.ttf flutter_launcher_icons: android: true