chore: add changelogs

This commit is contained in:
Simon Chan 2024-03-21 10:55:55 +08:00
parent 9a87f3ca13
commit df3b9f1dba
No known key found for this signature in database
GPG key ID: A8B69F750B9BCEDD
10 changed files with 79 additions and 25 deletions

View file

@ -2,7 +2,7 @@
"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)",
"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"
}
],

View 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"
}

View file

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@yume-chan/android-bin",
"comment": "Add support for pm install session",
"type": "none"
}
],
"packageName": "@yume-chan/android-bin"
}

View file

@ -2,7 +2,7 @@
"changes": [
{
"packageName": "@yume-chan/aoa",
"comment": "Remove `HidKeyboard.serializeInputReport`",
"comment": "Replace `HidKeyboard.serializeInputReport` with `updateReport`, allowing to reuse the buffer",
"type": "none"
}
],

View file

@ -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"
}
],

View file

@ -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"
}

View file

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@yume-chan/scrcpy",
"comment": "Fix several ReDos vulnerabilities",
"type": "none"
}
],
"packageName": "@yume-chan/scrcpy"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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;