@xiboplayer/core 0.1.2 → 0.1.3
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 +7 -14
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -10,9 +10,13 @@ Free, open-source Xibo-compatible digital signage player built as a Progressive
|
|
|
10
10
|
- ✅ Schedule management with priorities
|
|
11
11
|
- ✅ Offline caching (Cache API + IndexedDB)
|
|
12
12
|
- ✅ Service Worker for offline operation
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
13
|
+
- ✅ XMR real-time push (WebSocket)
|
|
14
|
+
- ✅ Chunked downloads with progressive streaming
|
|
15
|
+
- ✅ Statistics and log submission
|
|
16
|
+
- ✅ Screenshot capture and submission
|
|
17
|
+
- ✅ Layout transitions (fade, fly)
|
|
18
|
+
- ✅ Dynamic criteria (dayparting, display properties)
|
|
19
|
+
- ✅ Multi-display sync (BroadcastChannel)
|
|
16
20
|
|
|
17
21
|
## Quick Start
|
|
18
22
|
|
|
@@ -147,17 +151,6 @@ Output: `dist/` directory with minified bundle.
|
|
|
147
151
|
npm run preview
|
|
148
152
|
```
|
|
149
153
|
|
|
150
|
-
## TODO
|
|
151
|
-
|
|
152
|
-
- [ ] XMR real-time push (WebSocket)
|
|
153
|
-
- [ ] XMDS GetFile chunked downloads
|
|
154
|
-
- [ ] SubmitLog, SubmitStats
|
|
155
|
-
- [ ] SubmitScreenShot
|
|
156
|
-
- [ ] MediaInventory reporting
|
|
157
|
-
- [ ] Dynamic criteria (weather, geolocation)
|
|
158
|
-
- [ ] Layout transitions
|
|
159
|
-
- [ ] Multi-display sync
|
|
160
|
-
|
|
161
154
|
## License
|
|
162
155
|
|
|
163
156
|
AGPL-3.0-or-later
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xiboplayer/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Xibo Player core orchestration and lifecycle management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@xibosignage/xibo-communication-framework": "^0.0.6",
|
|
13
13
|
"nanoevents": "^9.1.0",
|
|
14
|
-
"@xiboplayer/utils": "0.1.
|
|
14
|
+
"@xiboplayer/utils": "0.1.3"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@xiboplayer/cache": "0.1.
|
|
18
|
-
"@xiboplayer/
|
|
19
|
-
"@xiboplayer/
|
|
20
|
-
"@xiboplayer/xmds": "0.1.
|
|
17
|
+
"@xiboplayer/cache": "0.1.3",
|
|
18
|
+
"@xiboplayer/schedule": "0.1.3",
|
|
19
|
+
"@xiboplayer/renderer": "0.1.3",
|
|
20
|
+
"@xiboplayer/xmds": "0.1.3"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"vite": "^7.3.1",
|