@involvex/youtube-music-cli 0.0.28 → 0.0.29

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.0.29](https://github.com/involvex/youtube-music-cli/compare/v0.0.28...v0.0.29) (2026-02-22)
2
+
3
+ ### Bug Fixes
4
+
5
+ - prevent import navigation when in settings view ([d805b5a](https://github.com/involvex/youtube-music-cli/commit/d805b5a182a2241ab5494565dcf6645da82da954))
6
+
1
7
  ## [0.0.28](https://github.com/involvex/youtube-music-cli/compare/v0.0.27...v0.0.28) (2026-02-22)
2
8
 
3
9
  ### Bug Fixes
@@ -80,7 +80,9 @@ function MainLayout() {
80
80
  }, [dispatch, navState.currentView]);
81
81
  const goToImport = useCallback(() => {
82
82
  // Don't navigate to import if we're in plugins view (i key is used for plugin install there)
83
- if (navState.currentView !== VIEW.PLUGINS) {
83
+ // Don't navigate to import if we're in settings view (user navigates settings items with Enter)
84
+ if (navState.currentView !== VIEW.PLUGINS &&
85
+ navState.currentView !== VIEW.SETTINGS) {
84
86
  dispatch({ category: 'NAVIGATE', view: VIEW.IMPORT });
85
87
  }
86
88
  }, [dispatch, navState.currentView]);
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@involvex/youtube-music-cli",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "- A Commandline music player for youtube-music",
5
5
  "repository": {
6
6
  "type": "git",
@@ -65,11 +65,11 @@
65
65
  "dependencies": {
66
66
  "@distube/ytdl-core": "^4.16.12",
67
67
  "ansi-escapes": "^7.3.0",
68
- "ink": "^6.7.0",
68
+ "ink": "^6.8.0",
69
69
  "ink-table": "^3.1.0",
70
70
  "ink-text-input": "^6.0.0",
71
71
  "jiti": "^2.6.1",
72
- "meow": "^14.0.0",
72
+ "meow": "^14.1.0",
73
73
  "node-notifier": "^10.0.1",
74
74
  "discord-rpc": "^4.0.1",
75
75
  "node-youtube-music": "^0.10.3",
@@ -77,20 +77,20 @@
77
77
  "react": "^19.2.4",
78
78
  "youtube-ext": "^1.1.25",
79
79
  "youtubei.js": "^16.0.1",
80
- "ws": "^8.18.0"
80
+ "ws": "^8.19.0"
81
81
  },
82
82
  "devDependencies": {
83
83
  "@eslint/js": "^10.0.1",
84
84
  "@sindresorhus/tsconfig": "^8.1.0",
85
- "@types/node": "^25.2.3",
85
+ "@types/node": "^25.3.0",
86
86
  "@types/node-notifier": "^8.0.5",
87
87
  "@types/react": "^19.2.14",
88
- "@types/ws": "^8.5.13",
88
+ "@types/ws": "^8.18.1",
89
89
  "@vdemedes/prettier-config": "^2.0.1",
90
90
  "ava": "^6.4.1",
91
91
  "chalk": "^5.6.2",
92
92
  "conventional-changelog-cli": "^5.0.0",
93
- "eslint": "^10.0.0",
93
+ "eslint": "^10.0.1",
94
94
  "eslint-plugin-react": "^7.37.5",
95
95
  "eslint-plugin-react-hooks": "^7.0.1",
96
96
  "globals": "^17.3.0",