Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
/></a>
<a title="Flutter" href="https://flutter.dev/"><img src="https://img.shields.io/badge/Flutter-%2302569B.svg?style=for-the-badge&logo=Flutter&logoColor=white"
alt="Flutter"/></a>
<a title="Latest supported scrcpy version" href="https://github.com/Genymobile/scrcpy/releases"><img src="https://img.shields.io/badge/scrcpy-v4.0-green?style=flat-square"
alt="scrcpy v4.0"/></a>
<a title="Latest supported scrcpy version" href="https://github.com/Genymobile/scrcpy/releases"><img src="https://img.shields.io/badge/scrcpy-v4.1-green?style=flat-square"
alt="scrcpy v4.1"/></a>
<a title="Snap Store" href="https://snapcraft.io/scrcpy-buddy"><img alt="scrcpy-buddy" src="https://snapcraft.io/scrcpy-buddy/badge.svg" /></a>
<a title="Trending on snap store" href="https://snapcraft.io/scrcpy-buddy"><img alt="scrcpy-buddy" src="https://snapcraft.io/scrcpy-buddy/trending.svg?name=0" /></a>
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ class VideoCodec extends ScrcpyCliArgument<String> {
final String label = 'video.codec';

@override
final List<String>? values = ['h264', 'h265', 'av1'];
final List<String>? values = ['h264', 'h265', 'av1', 'vp8', 'vp9'];
}
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import 'package:window_manager/window_manager.dart';

import 'injector.dart';

const supportedScrcpyVersion = "4.0";
const supportedScrcpyVersion = "4.1";

const scrcpyArg = ScrcpyArg();

Expand Down
Loading