mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-06 03:50:18 +02:00
chore: add changelogs
This commit is contained in:
parent
65c9049b60
commit
0a135229a5
8 changed files with 123 additions and 23 deletions
10
common/changes/@yume-chan/adb/main_2023-08-25-16-31.json
Normal file
10
common/changes/@yume-chan/adb/main_2023-08-25-16-31.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"changes": [
|
||||||
|
{
|
||||||
|
"packageName": "@yume-chan/adb",
|
||||||
|
"comment": "Add `debugSlowRead` option to `AdbDaemonTransport` that throws an error when an ADB socket is stalled for 5 seconds",
|
||||||
|
"type": "none"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packageName": "@yume-chan/adb"
|
||||||
|
}
|
10
common/changes/@yume-chan/adb/main_2023-09-25-16-35.json
Normal file
10
common/changes/@yume-chan/adb/main_2023-09-25-16-35.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"changes": [
|
||||||
|
{
|
||||||
|
"packageName": "@yume-chan/scrcpy",
|
||||||
|
"comment": "Add support for Scrcpy 2.2",
|
||||||
|
"type": "none"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packageName": "@yume-chan/scrcpy"
|
||||||
|
}
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"changes": [
|
"changes": [
|
||||||
{
|
{
|
||||||
"packageName": "@yume-chan/adb-daemon-webusb",
|
"packageName": "@yume-chan/android-bin",
|
||||||
"comment": "Add `status` and `health` fields to `DumpSys#battery`",
|
"comment": "Add `status` and `health` fields to `DumpSys#battery`",
|
||||||
"type": "none"
|
"type": "none"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"packageName": "@yume-chan/adb-daemon-webusb"
|
"packageName": "@yume-chan/android-bin"
|
||||||
}
|
}
|
||||||
|
|
10
common/changes/@yume-chan/adb/main_2023-09-27-16-34.json
Normal file
10
common/changes/@yume-chan/adb/main_2023-09-27-16-34.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"changes": [
|
||||||
|
{
|
||||||
|
"packageName": "@yume-chan/adb-daemon-webusb",
|
||||||
|
"comment": "`AdbDaemonWebUsbDevice` will generate a fake serial number from vid and pid if the device serial number is empty",
|
||||||
|
"type": "none"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packageName": "@yume-chan/adb-daemon-webusb"
|
||||||
|
}
|
|
@ -1,3 +1,46 @@
|
||||||
# `@yume-chan/adb-server-node-tcp`
|
<p align="center">
|
||||||
|
<img alt="Tango" src="https://raw.githubusercontent.com/yume-chan/ya-webadb/main/.github/logo.svg" width="200">
|
||||||
|
</p>
|
||||||
|
|
||||||
Server connector for `@yume-chan/adb` using Node.js' `net` module.
|
<h1 align="center">@yume-chan/adb-server-node-tcp</h1>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
ADB server connector for `@yume-chan/adb` using Node.js' `net` module
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://github.com/yume-chan/ya-webadb/blob/main/LICENSE">
|
||||||
|
<img alt="MIT License" src="https://img.shields.io/github/license/yume-chan/ya-webadb">
|
||||||
|
</a>
|
||||||
|
<a href="https://github.com/yume-chan/ya-webadb/releases">
|
||||||
|
<img alt="GitHub release" src="https://img.shields.io/github/v/release/yume-chan/ya-webadb?logo=github">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.npmjs.com/package/@yume-chan/adb">
|
||||||
|
<img alt="npm" src="https://img.shields.io/npm/dm/%40yume-chan/adb?logo=npm">
|
||||||
|
</a>
|
||||||
|
<a href="https://discord.gg/26k3ttC2PN">
|
||||||
|
<img alt="Discord" src="https://img.shields.io/discord/1120215514732564502?logo=discord&logoColor=%23ffffff&label=Discord">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
This package is part of [Tango ADB](https://github.com/yume-chan/ya-webadb). Generally you need multiple packages to build a complete ADB client that can run on Web browsers and Node.js. Read the documentation for more information.
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
Check the latest documentation at https://tango-adb.github.io/docs/
|
||||||
|
|
||||||
|
## Sponsors
|
||||||
|
|
||||||
|
[Become a backer](https://opencollective.com/ya-webadb) and get your image on our README on Github with a link to your site.
|
||||||
|
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/0/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/0/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/1/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/1/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/2/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/2/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/3/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/3/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/4/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/4/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/5/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/5/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/6/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/6/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/7/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/7/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/8/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/8/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/9/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/9/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/10/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/10/avatar.svg?requireActive=false"></a>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@yume-chan/adb-server-node-tcp",
|
"name": "@yume-chan/adb-server-node-tcp",
|
||||||
"version": "0.0.21",
|
"version": "0.0.21",
|
||||||
"description": "ADB server connection for `@yume-chan/adb` using Node.js' `net` module",
|
"description": "ADB server connector for `@yume-chan/adb` using Node.js' `net` module",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"adb",
|
"adb",
|
||||||
"adb-server-connection",
|
"adb-server-connection",
|
||||||
|
|
|
@ -1,20 +1,46 @@
|
||||||
# `@yume-chan/android-bin`
|
<p align="center">
|
||||||
|
<img alt="Tango" src="https://raw.githubusercontent.com/yume-chan/ya-webadb/main/.github/logo.svg" width="200">
|
||||||
|
</p>
|
||||||
|
|
||||||
Wrappers for Android built-in executables.
|
<h1 align="center">@yume-chan/android-bin</h1>
|
||||||
|
|
||||||
Currently it's bound to `@yume-chan/adb`, maybe one day it can be used with other executors.
|
<p align="center">
|
||||||
|
Wrappers for Android built-in executables.
|
||||||
|
</p>
|
||||||
|
|
||||||
## Implemented
|
<p align="center">
|
||||||
|
<a href="https://github.com/yume-chan/ya-webadb/blob/main/LICENSE">
|
||||||
|
<img alt="MIT License" src="https://img.shields.io/github/license/yume-chan/ya-webadb">
|
||||||
|
</a>
|
||||||
|
<a href="https://github.com/yume-chan/ya-webadb/releases">
|
||||||
|
<img alt="GitHub release" src="https://img.shields.io/github/v/release/yume-chan/ya-webadb?logo=github">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.npmjs.com/package/@yume-chan/adb">
|
||||||
|
<img alt="npm" src="https://img.shields.io/npm/dm/%40yume-chan/adb?logo=npm">
|
||||||
|
</a>
|
||||||
|
<a href="https://discord.gg/26k3ttC2PN">
|
||||||
|
<img alt="Discord" src="https://img.shields.io/discord/1120215514732564502?logo=discord&logoColor=%23ffffff&label=Discord">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
* `bugreport`
|
This package is part of [Tango ADB](https://github.com/yume-chan/ya-webadb). Generally you need multiple packages to build a complete ADB client that can run on Web browsers and Node.js. Read the documentation for more information.
|
||||||
* `bugreportz`
|
|
||||||
* `settings`
|
|
||||||
* Demo mode
|
|
||||||
* `logcat`
|
|
||||||
|
|
||||||
## Planned
|
## Documentation
|
||||||
|
|
||||||
- [ ] `bu` ([#354](https://github.com/yume-chan/ya-webadb/issues/354))
|
Check the latest documentation at https://tango-adb.github.io/docs/
|
||||||
- [ ] `input` ([#363](https://github.com/yume-chan/ya-webadb/issues/363))
|
|
||||||
- [ ] `am` ([#366](https://github.com/yume-chan/ya-webadb/issues/366))
|
## Sponsors
|
||||||
- [ ] `pm` ([#373](https://github.com/yume-chan/ya-webadb/issues/373))
|
|
||||||
|
[Become a backer](https://opencollective.com/ya-webadb) and get your image on our README on Github with a link to your site.
|
||||||
|
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/0/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/0/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/1/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/1/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/2/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/2/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/3/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/3/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/4/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/4/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/5/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/5/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/6/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/6/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/7/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/7/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/8/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/8/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/9/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/9/avatar.svg?requireActive=false"></a>
|
||||||
|
<a href="https://opencollective.com/ya-webadb/backer/10/website?requireActive=false" target="_blank"><img src="https://opencollective.com/ya-webadb/backer/10/avatar.svg?requireActive=false"></a>
|
||||||
|
|
|
@ -2,11 +2,12 @@
|
||||||
|
|
||||||
Play raw audio sample stream using Web Audio API.
|
Play raw audio sample stream using Web Audio API.
|
||||||
|
|
||||||
Only support stereo audio.
|
## Features
|
||||||
|
|
||||||
TODO:
|
- [x] Arbitrary channel count
|
||||||
|
- [x] Arbitrary sample rate
|
||||||
- [ ] resample audio to compensate for audio buffer underrun
|
- [x] Basic OLA (overlap-add) resampler
|
||||||
|
- [ ] Adjustable buffer size
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue