mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 09:49:24 +02:00
chore: add changelogs
This commit is contained in:
parent
9a87f3ca13
commit
df3b9f1dba
10 changed files with 79 additions and 25 deletions
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/adb-daemon-webusb",
|
||||
"comment": "Fix a bug where in `AdbDaemonWebUsbDeviceManager.getDevices`, `filters.serialNumber` option doesn't match against auto-generated serial number (if the device doesn't have serial number)",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/adb-daemon-webusb"
|
||||
}
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/adb-daemon-webusb",
|
||||
"comment": "Fix `AdbDaemonWebUsbDeviceManager.getDevices` doesn't match auto-generated serial number against `filters.serialNumber` (if the device doesn't have a serial number)",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/adb-daemon-webusb"
|
||||
}
|
||||
|
|
10
common/changes/@yume-chan/adb/main_2024-02-01-06-40.json
Normal file
10
common/changes/@yume-chan/adb/main_2024-02-01-06-40.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/adb",
|
||||
"comment": "Add support for delayed ack on Android 14",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/adb"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/android-bin",
|
||||
"comment": "Add support for pm install session",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/android-bin"
|
||||
}
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/aoa",
|
||||
"comment": "Remove `HidKeyboard.serializeInputReport`",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/aoa"
|
||||
}
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/aoa",
|
||||
"comment": "Replace `HidKeyboard.serializeInputReport` with `updateReport`, allowing to reuse the buffer",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/aoa"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/fetch-scrcpy-server",
|
||||
"comment": "Fix the generated `VERSION` constant incorrectly having a `v` character at the beginning",
|
||||
"comment": "Fix the generated `VERSION` constant incorrectly having a `v` character prefixed",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/scrcpy-decoder-webcodecs",
|
||||
"comment": "Add WebGL and Bitmap based video renderers, which are 1.5 to 3 times faster on Android devices",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/scrcpy-decoder-webcodecs"
|
||||
}
|
10
common/changes/@yume-chan/scrcpy/main_2024-02-01-06-38.json
Normal file
10
common/changes/@yume-chan/scrcpy/main_2024-02-01-06-38.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/scrcpy",
|
||||
"comment": "Fix several ReDos vulnerabilities",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/scrcpy"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/stream-extra",
|
||||
"comment": "Fix `WrapWritableStream` might close the inner stream twice. (and throwing an error)",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/stream-extra"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"changes": [
|
||||
{
|
||||
"packageName": "@yume-chan/stream-extra",
|
||||
"comment": "Remove web-streams-polyfill dependency. The runtime must have global stream implementations (or you can add a polyfill yourself).",
|
||||
"type": "none"
|
||||
}
|
||||
],
|
||||
"packageName": "@yume-chan/stream-extra"
|
||||
}
|
|
@ -74,12 +74,6 @@ export class AdbDaemonSocketController
|
|||
* bytes that can be written to the socket before receiving an ack.
|
||||
*/
|
||||
#availableWriteBytes = 0;
|
||||
/**
|
||||
* Gets the number of bytes that can be written to the socket without blocking.
|
||||
*/
|
||||
public get availableWriteBytes() {
|
||||
return this.#availableWriteBytes;
|
||||
}
|
||||
|
||||
constructor(options: AdbDaemonSocketConstructionOptions) {
|
||||
this.#dispatcher = options.dispatcher;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue