openaudio-suite 2.4.0 → 2.5.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 +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to the OpenAudio suite are documented here.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## v2.5.0 – 2026-03-15
|
|
8
|
+
### Improvements
|
|
9
|
+
- Added consistent **semantic versioning** strategy across releases.
|
|
10
|
+
- Added **package-lock.json** to support reproducible installs and GitHub Actions CI.
|
|
11
|
+
- No changes to OpenAudio JS files; all improvements are tooling and release management.
|
|
12
|
+
|
|
7
13
|
---
|
|
8
14
|
|
|
9
15
|
## OpenAudio.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openaudio-suite",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "v2.5.1",
|
|
4
4
|
"description": "Zero-dependency audio utilities for web browsers. Three libraries: OpenAudio_r.js (randomized scheduler), OpenAudio_s.js (sequential player), OpenAudio.js v1.1.0 (single-clip player with background tab detection). Pure HTML5 Audio API. GPL-3.0-or-later.",
|
|
5
5
|
"main": "OpenAudio_r.js",
|
|
6
6
|
"exports": {
|