@agora-build/dialf 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/install.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,19 @@ fetches the matching binary from the [GitHub Releases](https://github.com/Agora-
|
|
|
21
21
|
it never hard-fails `npm install` — if no prebuilt exists for your platform it prints
|
|
22
22
|
guidance to build from source.
|
|
23
23
|
|
|
24
|
+
## The phone app (DialF Phone)
|
|
25
|
+
|
|
26
|
+
This package installs the **controller** (`dialf` CLI + `dialfd`). The phone DialF controls
|
|
27
|
+
runs the **DialF Phone** Android app — it places/answers/rejects calls, sends/reads SMS, and
|
|
28
|
+
reads the call log/SIMs on command, while call audio is bridged through the host's USB sound
|
|
29
|
+
card. Install it on the phone and pair it to `dialfd` with a shared key:
|
|
30
|
+
|
|
31
|
+
- Newest APK: https://dl.agora.build/dialf/dialf-phone-latest.apk
|
|
32
|
+
- All versions: https://github.com/Agora-Build/DialF/releases
|
|
33
|
+
|
|
34
|
+
See the [main repository](https://github.com/Agora-Build/DialF) for the end-to-end setup
|
|
35
|
+
walkthrough and the [phone-app reference](https://github.com/Agora-Build/DialF/blob/main/app/README.md).
|
|
36
|
+
|
|
24
37
|
## Run the daemon as a service
|
|
25
38
|
|
|
26
39
|
`npm install` only installs the CLI. To run `dialfd` in the background:
|
package/install.js
CHANGED
|
@@ -55,6 +55,6 @@ download(url, tgz, (err) => {
|
|
|
55
55
|
return bail('extract failed: ' + e.message);
|
|
56
56
|
}
|
|
57
57
|
console.log('dialf: installed ' + target);
|
|
58
|
-
console.log('dialf:
|
|
59
|
-
console.log('dialf:
|
|
58
|
+
console.log('dialf: launch dialfd: dialf daemon | sudo dialf service install (boot)');
|
|
59
|
+
console.log('dialf: per-user (login; required on macOS for audio recording): dialf service install --user');
|
|
60
60
|
});
|