-
-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(scrcpy): move
version
info to option classes
- Loading branch information
Showing
36 changed files
with
189 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@yume-chan/adb-scrcpy": minor | ||
"@yume-chan/scrcpy": minor | ||
--- | ||
|
||
Move `version` info to option classes and provide default values |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
export { | ||
ScrcpyOptions1_15 as ScrcpyOptions1_15_1, | ||
ScrcpyOptions1_15Impl as ScrcpyOptions1_15_1Impl, | ||
} from "./1_15/index.js"; | ||
import { ScrcpyOptions1_15 } from "./1_15/index.js"; | ||
|
||
export class ScrcpyOptions1_15_1 extends ScrcpyOptions1_15 { | ||
constructor(init: ScrcpyOptions1_15.Init, version = "1.15.1") { | ||
super(init, version); | ||
} | ||
} | ||
|
||
export { ScrcpyOptions1_15Impl as ScrcpyOptions1_15_1Impl } from "./1_15/index.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
export { | ||
ScrcpyOptions1_15 as ScrcpyOptions1_16, | ||
ScrcpyOptions1_15Impl as ScrcpyOptions1_16Impl, | ||
} from "./1_15/index.js"; | ||
import { ScrcpyOptions1_15 } from "./1_15/index.js"; | ||
|
||
export class ScrcpyOptions1_16 extends ScrcpyOptions1_15 { | ||
constructor(init: ScrcpyOptions1_15.Init, version = "1.16") { | ||
super(init, version); | ||
} | ||
} | ||
|
||
export { ScrcpyOptions1_15Impl as ScrcpyOptions1_16Impl } from "./1_15/index.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
export { | ||
ScrcpyOptions1_18 as ScrcpyOptions1_19, | ||
ScrcpyOptions1_18Impl as ScrcpyOptions1_19Impl, | ||
} from "./1_18/index.js"; | ||
import { ScrcpyOptions1_18 } from "./1_18/index.js"; | ||
|
||
export class ScrcpyOptions1_19 extends ScrcpyOptions1_18 { | ||
constructor(init: ScrcpyOptions1_18.Init, version = "1.19") { | ||
super(init, version); | ||
} | ||
} | ||
|
||
export { ScrcpyOptions1_18Impl as ScrcpyOptions1_19Impl } from "./1_18/index.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
export { | ||
ScrcpyOptions1_18 as ScrcpyOptions1_20, | ||
ScrcpyOptions1_18Impl as ScrcpyOptions1_20Impl, | ||
} from "./1_18/index.js"; | ||
import { ScrcpyOptions1_18 } from "./1_18/index.js"; | ||
|
||
export class ScrcpyOptions1_20 extends ScrcpyOptions1_18 { | ||
constructor(init: ScrcpyOptions1_18.Init, version = "1.20") { | ||
super(init, version); | ||
} | ||
} | ||
|
||
export { ScrcpyOptions1_18Impl as ScrcpyOptions1_20Impl } from "./1_18/index.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.