Skip to content

Commit 4e064fb

Browse files
committed
ChatGPT Advanced Voice module
1 parent a0c62c2 commit 4e064fb

31 files changed

+5350
-1936
lines changed

Diff for: README.md

+294-609
Large diffs are not rendered by default.

Diff for: docs/build.js

+5-6
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,16 @@ await fs.write(f.fd, '**❤️ [Shiliew - A network app designed for those who
1414

1515
var s = await fs.readFile('getting-started.md', { encoding: 'utf8' })
1616
await fs.write(f.fd, s)
17-
var s = await fs.readFile('gui.md', { encoding: 'utf8' })
17+
var s = await fs.readFile('server.md', { encoding: 'utf8' })
18+
await fs.write(f.fd, s)
19+
var s = await fs.readFile('client.md', { encoding: 'utf8' })
20+
await fs.write(f.fd, s)
21+
var s = await fs.readFile('other.md', { encoding: 'utf8' })
1822
await fs.write(f.fd, s)
1923
await fs.write(f.fd, '# CLI Documentation\n')
20-
await fs.write(f.fd, 'Each subcommand has a `--example` parameter that can print the minimal example of usage\n')
2124
var s = await $`brook mdpage`.text()
2225
s = s.split("\n").filter(v => !v.startsWith("[")).join("\n").replace("```\n```", "```\nbrook --help\n```").split("\n").map(v => v.startsWith("**") && !v.startsWith("**Usage") ? "- " + v : v).join('\n')
2326
s = s.replace("### help, h", "").replace("Shows a list of commands or help for one command", "").replaceAll("- **--help, -h**: show help", "")
2427
await fs.write(f.fd, s)
25-
var s = await fs.readFile('example.md', { encoding: 'utf8' })
26-
await fs.write(f.fd, s)
27-
var s = await fs.readFile('resources.md', { encoding: 'utf8' })
28-
await fs.write(f.fd, s)
2928
await fs.close(f.fd)
3029
await $`markdown ../readme.md ./index.html`

Diff for: docs/gui.md renamed to docs/client.md

+54-148
Large diffs are not rendered by default.

Diff for: docs/example.md

-265
This file was deleted.

Diff for: docs/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ brook server -l :9999 -p hello
2121
- [macOS](https://apps.apple.com/us/app/brook-network-tool/id1216002642)
2222
- [Windows](https://github.com/txthinking/brook/releases/latest/download/Brook.msix)
2323
- [Linux](https://github.com/txthinking/brook/releases/latest/download/Brook.bin)
24-
- [OpenWrt](https://github.com/txthinking/brook/releases)
24+
- [OpenWrt](https://www.txthinking.com/talks/articles/brook-openwrt-en.article)
2525

2626
> You may want to use `brook link` to customize some parameters
2727
2828
- [About App Mode on macOS](https://www.txthinking.com/talks/articles/macos-app-mode-en.article)
29-
- [How to install Brook on Windows?](https://www.txthinking.com/talks/articles/msix-brook-en.article)
29+
- [How to install Brook on Windows](https://www.txthinking.com/talks/articles/msix-brook-en.article)
3030
- [How to install Brook on Linux](https://www.txthinking.com/talks/articles/linux-app-brook-en.article)
3131
- [How to install Brook on OpenWrt](https://www.txthinking.com/talks/articles/brook-openwrt-en.article)
3232

0 commit comments

Comments
 (0)