@lucaismyname/ginger 0.0.44 → 0.0.46

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +102 -0
  2. package/README.md +4 -1
  3. package/package.json +1 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,102 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@lucaismyname/ginger` are documented here.
4
+
5
+ ## 0.0.45
6
+
7
+ - Add crossfade module (`@lucaismyname/ginger/crossfade`)
8
+ - Adjust hook deps to follow active audio source
9
+ - Regenerate API docs with crossfade coverage
10
+
11
+ ## 0.0.44
12
+
13
+ - Update docs and landing UI controls
14
+ - Prevent replay loop at queue end
15
+
16
+ ## 0.0.41
17
+
18
+ - Polish landing UI
19
+ - Add verify script and Biome linting
20
+
21
+ ## 0.0.39
22
+
23
+ - Exclude ginger from Vite `optimizeDeps` in apps
24
+ - Link local ginger package; add docs and experimental gapless probe
25
+
26
+ ## 0.0.37
27
+
28
+ - Add audio demos and bundled demo MP3s
29
+ - Add Radix-based playback rate select
30
+ - Add app typechecks and chapter markers on seek bar
31
+ - Use ref for EQ bands to avoid effect deps
32
+ - Add docs for spatial, transcript, and remote modules
33
+
34
+ ## 0.0.33
35
+
36
+ - Add remote-control module (`@lucaismyname/ginger/remote`)
37
+ - Add spatial audio module (`@lucaismyname/ginger/spatial`)
38
+ - Add transcript sync module (`@lucaismyname/ginger/transcript`)
39
+ - Add equalizer module (`@lucaismyname/ginger/equalizer`)
40
+ - Add `useGingerPlaybackHistory` and `useGingerVolumeFade` hooks
41
+
42
+ ## 0.0.27
43
+
44
+ - Add `asChild` prop support on control components
45
+ - Add locale / i18n context (`useGingerLocale`)
46
+ - Add unstyled mode for zero-opinion styling
47
+ - Use inline Lucide icons for default controls
48
+ - Add live audio analyzer tests and `mockWebAudio` test helper
49
+
50
+ ## 0.0.24
51
+
52
+ - Add `children` prop to control components
53
+ - Add `react-scan` dev tooling
54
+
55
+ ## 0.0.22
56
+
57
+ - Add waveform player example and fix `playbackRate` bug
58
+
59
+ ## 0.0.20
60
+
61
+ - Add landing player controls
62
+ - Use `@lucaismyname/ginger` in landing app
63
+
64
+ ## 0.0.18
65
+
66
+ - Add CI workflow (GitHub Actions) and TypeDoc API docs
67
+ - Bump package version
68
+
69
+ ## 0.0.17
70
+
71
+ - Add chapter markers with `TrackChapter` type
72
+ - Add synced lyrics (`LyricsSynced`)
73
+ - Add `useNextTrackPrefetch` hook
74
+
75
+ ## 0.0.14
76
+
77
+ - Add test suite and `@lucaismyname/ginger/testing` subpath export
78
+ - Add `renderGinger` and `helpers` test utilities
79
+
80
+ ## 0.0.12
81
+
82
+ - Expose `setPlaybackMode`; clear media source on track removal
83
+ - Add live audio analysis (`useGingerLiveAnalyzer`) and FFT utilities
84
+
85
+ ## 0.0.10
86
+
87
+ - Add ginger-landing Vite app
88
+ - Add unstyled mode and playback options
89
+ - Add queue actions, playback modes, and persistence hooks
90
+ - Split contexts into playback vs media for performance
91
+
92
+ ## 0.0.5
93
+
94
+ - Add `GingerProvider`, `GingerPlayer`, and core reducer
95
+ - Add locale and control binding hooks
96
+ - Add init API, a11y improvements, and initial docs
97
+
98
+ ## 0.0.1
99
+
100
+ - Initialize monorepo with demo app
101
+ - Add volume, mute, and playback rate controls
102
+ - Add manual playlist mode
package/README.md CHANGED
@@ -51,6 +51,7 @@ Mount **`<Ginger.Player />`** once inside the same provider tree so the hidden a
51
51
 
52
52
  For docs beyond this README, use the repository links below:
53
53
 
54
+ - **Docs folder map** (Markdown vs generated API): [`docs/README.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/README.md)
54
55
  - Getting started: [`docs/getting-started.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/getting-started.md)
55
56
  - Testing guide: [`docs/guides/testing.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/guides/testing.md)
56
57
  - Recipes: [`docs/guides/recipes.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/guides/recipes.md)
@@ -58,7 +59,7 @@ For docs beyond this README, use the repository links below:
58
59
  - Streaming adapters: [`docs/guides/streaming-adapters.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/guides/streaming-adapters.md)
59
60
  - Components reference: [`docs/reference/components.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/reference/components.md)
60
61
  - Hooks reference: [`docs/reference/hooks.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/reference/hooks.md)
61
- - Subpath exports (waveform, EQ, spatial, transcript, remote, …): [`docs/reference/subpaths.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/reference/subpaths.md)
62
+ - Subpath exports (waveform, EQ, spatial, transcript, remote, crossfade, …): [`docs/reference/subpaths.md`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/reference/subpaths.md)
62
63
  - Generated API docs: [`docs/api/index.html`](https://github.com/lucaismyname/ginger/blob/main/packages/ginger/docs/api/index.html)
63
64
 
64
65
  ## Subpath Exports
@@ -70,6 +71,7 @@ For docs beyond this README, use the repository links below:
70
71
  - `@lucaismyname/ginger/spatial`
71
72
  - `@lucaismyname/ginger/transcript`
72
73
  - `@lucaismyname/ginger/remote`
74
+ - `@lucaismyname/ginger/crossfade`
73
75
  - `@lucaismyname/ginger/experimental-gapless`
74
76
 
75
77
  ### Equalizer
@@ -1219,6 +1221,7 @@ Additional entrypoints:
1219
1221
  - `@lucaismyname/ginger/spatial`
1220
1222
  - `@lucaismyname/ginger/transcript`
1221
1223
  - `@lucaismyname/ginger/remote`
1224
+ - `@lucaismyname/ginger/crossfade`
1222
1225
  - `@lucaismyname/ginger/experimental-gapless`
1223
1226
 
1224
1227
  See [Subpath Exports](#subpath-exports) for **`spatial`**, **`transcript`**, and **`remote`** usage. `experimental-gapless` is explicitly non-production and does not alter core playback.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucaismyname/ginger",
3
- "version": "0.0.44",
3
+ "version": "0.0.46",
4
4
  "description": "A headless React audio-player primitive",
5
5
  "type": "module",
6
6
  "sideEffects": false,