@fastagent-sh/voicenote 0.18.2 → 0.18.3
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 +1 -1
- package/README.zh-CN.md +1 -1
- package/package.json +1 -1
- package/src/cli.ts +1 -1
package/README.md
CHANGED
|
@@ -150,7 +150,7 @@ vn open <slug> # open a note by filename fragment
|
|
|
150
150
|
vn forget <id|filename> # let a recording be processed again
|
|
151
151
|
vn log # print today's log tail (--lines N / -f follow / --err include launchd.err / --date YYYY-MM-DD)
|
|
152
152
|
vn errors # print recent ERROR logs
|
|
153
|
-
vn login # sign in to ChatGPT (
|
|
153
|
+
vn login # sign in to ChatGPT for the notes backend (browser callback; `--device-code` for headless machines). No pi TUI needed
|
|
154
154
|
vn upgrade # reinstall latest npm package
|
|
155
155
|
vn install-launch-agent
|
|
156
156
|
vn status
|
package/README.zh-CN.md
CHANGED
|
@@ -148,7 +148,7 @@ vn open <slug> # 按文件名片段打开纪要
|
|
|
148
148
|
vn forget <id|filename> # 让某条录音重新被处理
|
|
149
149
|
vn log # 打印今天日志末尾(--lines N / -f 跟随 / --err 含 launchd.err / --date YYYY-MM-DD)
|
|
150
150
|
vn errors # 打印最近 ERROR 日志
|
|
151
|
-
vn login # 登录 ChatGPT(
|
|
151
|
+
vn login # 登录 ChatGPT, 纪要后端用(默认浏览器回调; 无头机器用 `--device-code`)。无需开 pi TUI
|
|
152
152
|
vn upgrade # reinstall latest npm package
|
|
153
153
|
vn install-launch-agent
|
|
154
154
|
vn status
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastagent-sh/voicenote",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.3",
|
|
4
4
|
"description": "Voice recordings → diarized transcripts → integrated semantic Markdown notes. Currently optimized for the PHILIPS VTR6500 recorder, but the workflow is generic.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/src/cli.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { fileURLToPath, pathToFileURL } from 'node:url'
|
|
|
13
13
|
import { spawn, spawnSync } from 'node:child_process'
|
|
14
14
|
import os from 'node:os'
|
|
15
15
|
|
|
16
|
-
const VERSION = '0.18.
|
|
16
|
+
const VERSION = '0.18.3'
|
|
17
17
|
const LAUNCH_AGENT_LABEL = 'sh.fastagent.voicenote'
|
|
18
18
|
const LAUNCH_AGENT_LABEL_LEGACY = 'com.kid7st.voicenote' // pre-fastagent installs; cleaned up on install
|
|
19
19
|
const TASK_NAME = 'VoiceNote' // Windows Task Scheduler name (mac uses LAUNCH_AGENT_LABEL)
|