Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 8c5b3c26 authored by Simon Chan's avatar Simon Chan
Browse files

feat(scrcpy): add support for Scrcpy 3.1

parent cb44b638
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
---
"@yume-chan/scrcpy": minor
---

Add support for Scrcpy 3.1
+8 −0
Original line number Diff line number Diff line
import type { Init } from "./init.js";
import { PrevImpl } from "./prev.js";

export const Defaults = /* #__PURE__ */ (() =>
    ({
        ...PrevImpl.Defaults,
        vdDestroyContent: false,
    }) as const satisfies Required<Init>)();
+7 −0
Original line number Diff line number Diff line
export * from "../../3_0/impl/index.js";
export { Defaults } from "./defaults.js";
export type { Init } from "./init.js";
export {
    serializeUHidCreateControlMessage,
    UHidCreateControlMessage,
} from "./serialize-uhid-create.js";
+5 −0
Original line number Diff line number Diff line
import type { PrevImpl } from "./prev.js";

export interface Init extends PrevImpl.Init {
    vdDestroyContent?: boolean;
}
+1 −0
Original line number Diff line number Diff line
export * as PrevImpl from "../../3_0/impl/index.js";
Loading