From ad5754f78ffa14785f60339b84a2227f9e4eaa5b Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 18 Jun 2025 12:18:02 -0700 Subject: [PATCH] chore(cli): remove version from prompt; remove navidrome from menus for consistency --- cli/bin/index.js | 3 +-- cli/lib/jobs.js | 4 ++-- cli/package-lock.json | 4 ++-- cli/package.json | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/cli/bin/index.js b/cli/bin/index.js index 21ea4d9..fe59ead 100755 --- a/cli/bin/index.js +++ b/cli/bin/index.js @@ -14,8 +14,7 @@ process.on("uncaughtException", (err) => handleExitError(err, "Uncaught exceptio program .name("coryd") - .description("🪄 Handle tasks, run commands or jobs, download things and have fun.") - .version("3.2.5"); + .description("🪄 Handle tasks, run commands or jobs, download things and have fun."); program .command("init") .description("Initialize CLI and populate required config.") diff --git a/cli/lib/jobs.js b/cli/lib/jobs.js index c55fea4..34c060e 100644 --- a/cli/lib/jobs.js +++ b/cli/lib/jobs.js @@ -19,7 +19,7 @@ export const runJobsMenu = async () => { method: "GET" }, { - name: "💿 Scrobble listens from Navidrome", + name: "💿 Scrobble listens", type: "curl", apiUrl: `${config.url}/api/scrobble.php`, tokenEnvVar: "NAVIDROME_SCROBBLE_TOKEN", @@ -40,7 +40,7 @@ export const runJobsMenu = async () => { method: "POST" }, { - name: "🎤 Import artist from Navidrome", + name: "🎤 Import artist", type: "curl", apiUrl: `${config.url}/api/artist-import.php`, tokenEnvVar: "ARTIST_IMPORT_TOKEN", diff --git a/cli/package-lock.json b/cli/package-lock.json index bd502c9..9cb1f82 100644 --- a/cli/package-lock.json +++ b/cli/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd", - "version": "3.4.0", + "version": "3.4.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd", - "version": "3.4.0", + "version": "3.4.1", "dependencies": { "@directus/sdk": "^19.1.0", "chalk": "^5.4.1", diff --git a/cli/package.json b/cli/package.json index c62e6c0..7b03261 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "coryd", - "version": "3.4.0", + "version": "3.4.1", "description": "The CLI for my site to handle tasks, run commands or jobs and download things.", "type": "module", "bin": {