dmx-api 4.0.1 → 4.0.2

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/README.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Version History
4
4
 
5
+ **4.0.2** -- Jan 31, 2026
6
+
7
+ * Fix:
8
+ - Log proper dmx-api version in browser console
9
+
5
10
  **4.0.1** -- Jan 31, 2026
6
11
 
7
12
  * Improvement:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dmx-api",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "API and utilities for DMX 5 based frontends",
5
5
  "author": "Jörg Richter <jri@dmx.berlin>",
6
6
  "license": "AGPL-3.0",
package/src/index.js CHANGED
@@ -6,7 +6,7 @@ import icons from './icons'
6
6
  import DMXWebSocket from './websocket'
7
7
  import {default as typeCache, init as initTypeCache, storeModule} from './type-cache'
8
8
 
9
- console.log('[DMX-API] 2026/01/28')
9
+ console.log('[DMX-API] 4.0.2')
10
10
 
11
11
  let adminWorkspaceId // promise
12
12