Skip to content

Commit

Permalink
Merge branch 'v-next'
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Sep 23, 2024
2 parents 7837c28 + d381f20 commit c3ec2c5
Show file tree
Hide file tree
Showing 140 changed files with 4,559 additions and 4,730 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
run: npm install

- name: "Run Test"
run: npm run test:all
run: npm run test
4 changes: 3 additions & 1 deletion .jsdoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@
"footer": ""
},
"docdash": {
"search": true,
"typedefs": true,
"sectionOrder": [
"Namespaces",
"Classes",
"Global",
"Modules",
"Externals",
"Events",
Expand All @@ -40,7 +43,6 @@
"title": "soundworks",
"description": "Documentation of soundworks, a full-stack JavaScript framework for distributed WebAudio and multimedia applications"
},
"search": true,
"menu": {
"Website": {
"href":"http://soundworks.dev/",
Expand Down
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

## v4.0.0-alpha.25 - 24/05/2025

- Fix: better default behavior for websocket connection URL
- Fix: better default behavior for WebSocket connection URL

## v4.0.0-alpha.24 - 24/05/2025

Expand All @@ -22,14 +22,14 @@

- Breaking: remove binary socket
- Fix: do not terminate socket on missed heartbeat, which seems to create false positive, just warn instead
- Refactor: some work toward upgrading code to es2022
- Refactor: some work toward upgrading code to ES2022

## v4.0.0-alpha.22 - 16/05/2025

- Feat: allow configuring socket endpoint on browser clients
- Feat: check and warn if version inconsistency between server and client

## v4.0.0-alpha.21 - 6/05/2025
## v4.0.0-alpha.21 - 06/05/2025

- Fix: prevent multiple 'close' events
- Fix: disable heartbeat check on client-side, was unstable
Expand All @@ -44,15 +44,15 @@

## v4.0.0-alpha.19 - 17/01/2024

- Hotfix for #85
- Hot fix for #85

## v4.0.0-alpha.18 - 15/01/2024

- Batch network message for SharedStates

## v4.0.0-alpha.17 - 16/12/2023

- Support bundling the server to cjs for Max externals
- Support bundling the server to common js for Max externals

## v4.0.0-alpha.16 - 15/12/2023

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
"node": ">=16.0.0"
},
"scripts": {
"doc": "rm -Rf docs && jsdoc -c .jsdoc --verbose && cp -R misc/assets docs/",
"doc": "npm run types && rm -rf docs && jsdoc -c .jsdoc --verbose && cp -R misc/assets docs/",
"lint": "npx eslint src",
"test": "npx mocha",
"test:all": "npx mocha tests/*/*.spec.js",
"types": "rm -Rf types && tsc",
"test": "npx mocha tests/*/*.spec.js",
"test:only": "npx mocha",
"types": "rm -rf types && tsc",
"preversion": "node ./misc/scripts/generate-version-file.js $npm_new_version",
"postversion": "node ./misc/scripts/check-changelog.js && git commit -am \"$npm_new_version\" --allow-empty"
},
Expand Down
Loading

0 comments on commit c3ec2c5

Please sign in to comment.