@ciphore/radiocli 0.1.4 → 0.1.5

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
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.5] - 2026-05-31
11
+
12
+ ### Fixed
13
+
14
+ - Moved the macOS AirPlay sender bridge to optional npm dependencies so Windows
15
+ and Linux installs do not fail while compiling an AirPlay-only native module.
16
+
10
17
  ## [0.1.4] - 2026-05-31
11
18
 
12
19
  ### Added
@@ -111,6 +118,7 @@ Initial public release.
111
118
  backend/volume that already appear in the header and footer. The reclaimed
112
119
  rows go to the visualizer.
113
120
 
121
+ [0.1.5]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.5
114
122
  [0.1.4]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.4
115
123
  [0.1.3]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.3
116
124
  [0.1.2]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.2
@@ -61,7 +61,7 @@ export function playbackBackendInstallHint(platform = process.platform, osReleas
61
61
  export function playbackBackendStatusLines(backends, platform = process.platform, osRelease = readLinuxOsRelease()) {
62
62
  const backendSet = new Set(backends);
63
63
  const lines = [
64
- 'npm_install=RadioCLI includes the AirPlay sender; native playback tools come from mpv and FFmpeg',
64
+ 'npm_install=RadioCLI installs the optional AirPlay sender when native dependencies are available; playback tools come from mpv and FFmpeg',
65
65
  `install_mpv=${mpvInstallCommand(platform, osRelease)}`,
66
66
  `optional_ffplay=${ffplayInstallCommand(platform, osRelease)}`
67
67
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ciphore/radiocli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "A terminal-first world radio receiver built with Ink, mpv, and resilient public-radio providers.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -66,7 +66,6 @@
66
66
  },
67
67
  "dependencies": {
68
68
  "ink": "^7.0.5",
69
- "node-airtunes2": "2.5.0",
70
69
  "react": "^19.2.6",
71
70
  "zod": "^4.4.3"
72
71
  },
@@ -84,5 +83,8 @@
84
83
  },
85
84
  "engines": {
86
85
  "node": ">=22"
86
+ },
87
+ "optionalDependencies": {
88
+ "node-airtunes2": "2.5.0"
87
89
  }
88
90
  }