fix(scrcpy): fix default client version for 3.3.2

This commit is contained in:
Simon Chan 2025-09-09 23:38:48 +08:00
parent 565df69b64
commit 4a228d1fb4
No known key found for this signature in database
GPG key ID: A8B69F750B9BCEDD
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"@yume-chan/adb-scrcpy": patch
---
Fix default version for client version 3.3.2

View file

@ -27,7 +27,7 @@ export class AdbScrcpyOptions3_3_2<TVideo extends boolean>
) {
super(init);
this.version = clientOptions?.version ?? "3.3.1";
this.version = clientOptions?.version ?? "3.3.2";
this.spawner = clientOptions?.spawner;
}