@ciphore/radiocli 0.1.9 → 0.2.1
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 +65 -0
- package/README.md +107 -411
- package/SECURITY.md +6 -3
- package/dist/activity/stats.js +14 -2
- package/dist/cli.js +53 -3
- package/dist/player/airplay-discovery.js +16 -4
- package/dist/player/airplay-worker-protocol.js +1 -0
- package/dist/player/airplay-worker.js +4 -1
- package/dist/player/command.js +37 -14
- package/dist/player/mpv-ipc-client.js +194 -0
- package/dist/player/player-controller.js +179 -98
- package/dist/providers/cache.js +77 -13
- package/dist/providers/provider-manager.js +28 -8
- package/dist/providers/radio-browser.js +141 -57
- package/dist/safety.js +44 -0
- package/dist/storage/store.js +264 -149
- package/dist/types.js +2 -53
- package/dist/ui/AdaptiveContent.js +332 -0
- package/dist/ui/App.js +489 -54
- package/dist/ui/AppContent.js +11 -12
- package/dist/ui/app-state.js +26 -16
- package/dist/ui/ascii.js +42 -1
- package/dist/ui/components/Logo.js +6 -1
- package/dist/ui/components/ScreenHeader.js +2 -2
- package/dist/ui/components/StationList.js +8 -6
- package/dist/ui/components/TopTabs.js +8 -7
- package/dist/ui/cosmo-land-data.js +1 -1
- package/dist/ui/exit-confirmation.js +7 -0
- package/dist/ui/explore-map-layout.js +3 -1
- package/dist/ui/format.js +56 -2
- package/dist/ui/help-content.js +10 -2
- package/dist/ui/layout.js +26 -9
- package/dist/ui/page-footer.js +36 -13
- package/dist/ui/playback-footer.js +15 -2
- package/dist/ui/screen-items.js +60 -21
- package/dist/ui/screen-meta.js +35 -0
- package/dist/ui/screens/AirPlaySettingsScreen.js +4 -2
- package/dist/ui/screens/CountriesScreen.js +8 -5
- package/dist/ui/screens/ExploreScreen.js +1 -1
- package/dist/ui/screens/HelpScreen.js +17 -3
- package/dist/ui/screens/HomeScreen.js +2 -3
- package/dist/ui/screens/MapScreen.js +2 -2
- package/dist/ui/screens/NowPlayingScreen.js +31 -51
- package/dist/ui/screens/SearchScreen.js +1 -1
- package/dist/ui/screens/SettingsScreen.js +109 -10
- package/dist/ui/screens/StationScreen.js +14 -1
- package/dist/ui/screens/StatsScreen.js +35 -44
- package/dist/ui/system-actions.js +10 -3
- package/dist/ui/terminal-mouse.js +44 -0
- package/dist/ui/theme.js +0 -1
- package/dist/ui/use-app-input.js +37 -6
- package/dist/ui/use-command-executor.js +34 -1
- package/dist/ui/visualizers/receiver-style-registry.js +101 -0
- package/dist/ui/visualizers/receiver-visualizers.js +2856 -745
- package/dist/update-check.js +122 -0
- package/docs/THIRD_PARTY_NOTICES.md +7 -0
- package/package.json +2 -2
- package/dist/ui/screens/screen-render.test.js +0 -214
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,69 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.1] - 2026-08-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Added compact and micro layouts that keep every screen navigable in small
|
|
15
|
+
terminal windows, including responsive Now Playing visualizers and settings.
|
|
16
|
+
- Added complete library backup and restore from Settings or the `:export` and
|
|
17
|
+
`:import` commands, with validation and an automatic safety copy before an
|
|
18
|
+
existing library is replaced.
|
|
19
|
+
- Expanded the receiver collection to 60 styles, including Sumi Ocean, Liftoff,
|
|
20
|
+
Planetarium, Skyline, Golden Gate, Alpine, and other scenic displays.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Anchored the gapless square-cell listening activity grid to January, made
|
|
25
|
+
Ultracode the default receiver, and grouped the 60 retained styles by visual
|
|
26
|
+
family. Retired TV Static, Sunspot, Plasma, Metaballs, and Moonlit Tide with
|
|
27
|
+
safe preference migration; rebuilt Fire and Stormfront; and replaced Sumi
|
|
28
|
+
Mountains with the layered blue Sumi Ocean.
|
|
29
|
+
- Reorganized Settings into labeled, paginated sections and tightened the full
|
|
30
|
+
layout so the Now Playing receiver and footer use the available space more
|
|
31
|
+
consistently.
|
|
32
|
+
- Reworked mpv communication around one reusable IPC connection, keeping rapid
|
|
33
|
+
volume changes responsive while preserving the last confirmed player state
|
|
34
|
+
when a command fails.
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- Restored mouse and trackpad wheel navigation for overflowing menus and lists
|
|
39
|
+
while keeping mouse reporting screen-aware so native terminal scrollback stays
|
|
40
|
+
available elsewhere. Added a Settings opt-out and legacy X10 mouse fallback.
|
|
41
|
+
- Protected library and cache writes from concurrent RadioCLI processes, and
|
|
42
|
+
recovered unfinished listening sessions from their last saved heartbeat.
|
|
43
|
+
- Made Radio Browser searches and cached station lists more resilient to slow,
|
|
44
|
+
stale, or partially unavailable directory mirrors.
|
|
45
|
+
- Added a second-press confirmation for `q` and `Ctrl+C` so an accidental key
|
|
46
|
+
press does not stop playback and exit.
|
|
47
|
+
|
|
48
|
+
### Security
|
|
49
|
+
|
|
50
|
+
- Sanitized terminal control and bidirectional text sequences from external
|
|
51
|
+
station data, and tightened permissions on locally stored library files.
|
|
52
|
+
|
|
53
|
+
## [0.2.0] - 2026-07-08
|
|
54
|
+
|
|
55
|
+
### Added
|
|
56
|
+
|
|
57
|
+
- Added update checks for npm releases, including a `radiocli update` command,
|
|
58
|
+
a `:update` command, and a Settings entry that reports the latest available
|
|
59
|
+
version and copies or runs the right npm or Homebrew update command.
|
|
60
|
+
- Added lazy loading for long country station lists and search results, so
|
|
61
|
+
deeper directories continue loading as you scroll instead of stopping at the
|
|
62
|
+
first page.
|
|
63
|
+
- Added mouse wheel scrolling across station, country, map, nearby, explore,
|
|
64
|
+
search, and library lists.
|
|
65
|
+
|
|
66
|
+
### Changed
|
|
67
|
+
|
|
68
|
+
- The footer now shows the installed RadioCLI version, and Settings includes
|
|
69
|
+
the current version beside update status.
|
|
70
|
+
- Retuning now keeps the playback footer focused on the station currently
|
|
71
|
+
buffering, and mpv playback stays in loading until audio has actually started.
|
|
72
|
+
|
|
10
73
|
## [0.1.9] - 2026-07-03
|
|
11
74
|
|
|
12
75
|
### Changed
|
|
@@ -200,6 +263,8 @@ Initial public release.
|
|
|
200
263
|
[0.1.7]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.7
|
|
201
264
|
[0.1.8]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.8
|
|
202
265
|
[0.1.9]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.9
|
|
266
|
+
[0.2.0]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.2.0
|
|
267
|
+
[0.2.1]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.2.1
|
|
203
268
|
[0.1.4]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.4
|
|
204
269
|
[0.1.3]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.3
|
|
205
270
|
[0.1.2]: https://github.com/Ciphore/RadioCLI/releases/tag/v0.1.2
|