@plaud-ai/cli 0.3.2 → 0.3.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/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20356,7 +20356,7 @@ function isNewer(current, latest) {
|
|
|
20356
20356
|
return false;
|
|
20357
20357
|
}
|
|
20358
20358
|
var updateCommand = new Command("update").description("Check npm for the latest Plaud CLI and print the upgrade command").action(async () => {
|
|
20359
|
-
const current = "0.3.
|
|
20359
|
+
const current = "0.3.3";
|
|
20360
20360
|
const spinner = ora("Checking npm for latest version...").start();
|
|
20361
20361
|
const latest = await fetchLatestVersion();
|
|
20362
20362
|
spinner.stop();
|
|
@@ -20411,10 +20411,10 @@ async function checkForUpdate(current) {
|
|
|
20411
20411
|
return isNewer(current, latest) ? latest : null;
|
|
20412
20412
|
}
|
|
20413
20413
|
var versionCommand = new Command2("version").description("Show CLI version information").action(async () => {
|
|
20414
|
-
const current = "0.3.
|
|
20414
|
+
const current = "0.3.3";
|
|
20415
20415
|
console.log(`plaud ${current}`);
|
|
20416
|
-
if ("
|
|
20417
|
-
if ("2026-06-
|
|
20416
|
+
if ("76e2306") console.log(`commit ${"76e2306"}`);
|
|
20417
|
+
if ("2026-06-26T02:33:38.768Z") console.log(`built ${"2026-06-26T02:33:38.768Z"}`);
|
|
20418
20418
|
if (current === "unknown") return;
|
|
20419
20419
|
const newer = await checkForUpdate(current);
|
|
20420
20420
|
if (newer) {
|
|
@@ -21637,7 +21637,7 @@ async function runWizard() {
|
|
|
21637
21637
|
try {
|
|
21638
21638
|
await initTelemetry({
|
|
21639
21639
|
surface: "cli",
|
|
21640
|
-
appVersion: "0.3.
|
|
21640
|
+
appVersion: "0.3.3"
|
|
21641
21641
|
});
|
|
21642
21642
|
} catch {
|
|
21643
21643
|
}
|
|
@@ -21646,7 +21646,7 @@ async function notifyUpdate() {
|
|
|
21646
21646
|
if (sub === "version" || sub === "update") return;
|
|
21647
21647
|
if (process.env.PLAUD_NO_UPDATE_NOTIFIER) return;
|
|
21648
21648
|
if (!process.stderr.isTTY) return;
|
|
21649
|
-
const current = "0.3.
|
|
21649
|
+
const current = "0.3.3";
|
|
21650
21650
|
if (current === "0.0.0") return;
|
|
21651
21651
|
try {
|
|
21652
21652
|
const newer = await checkForUpdate(current);
|