taleem-player 0.7.2-rc → 1.0.0

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 (2) hide show
  1. package/README.md +11 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,11 +5,12 @@
5
5
  alt="Taleem Player — JSON to Web Presentations"
6
6
  width="100%" />
7
7
 
8
- **Taleem Player** converts **JSON slide data** into **web-based presentations**.
8
+ **Taleem Player** converts **Taleem JSON slide data** into **web-based presentations**.
9
9
 
10
- It renders the *same JSON* in multiple ways using different display modes.
10
+ It renders the *same taleem JSON* in multiple ways using different display modes.
11
11
 
12
- > ⚠️ Work in progress expect minor bugs, **no API breakages**.
12
+ > **Stable 1.0 — API frozen.**
13
+ > Internal improvements may continue without breaking public contracts.
13
14
 
14
15
  ---
15
16
 
@@ -93,7 +94,7 @@ player.renderAt(12.5);
93
94
  | Use case | Preview / Edit | Playback |
94
95
 
95
96
  > ⚠️ Player Mode requires **valid, ordered timings**.
96
- > The library does not auto-correct or guess timings.
97
+ > The library does not auto-correct or guess timing errors.
97
98
 
98
99
  ---
99
100
 
@@ -120,7 +121,7 @@ import "taleem-player/css/light";
120
121
  import "taleem-player/css/paper";
121
122
  ```
122
123
 
123
- CSS controls layout and visual behavior.
124
+ CSS must be imported explicitly by the host app.
124
125
  All modes share the same styling system.
125
126
 
126
127
  ---
@@ -129,17 +130,17 @@ All modes share the same styling system.
129
130
 
130
131
  * create slides
131
132
  * edit JSON
132
- * manage playback or time
133
- * handle audio / narration
134
- * validate automatically
133
+ * manage clocks or media playback
134
+ * handle audio or narration
135
+ * auto-validate or repair data
135
136
 
136
- Those belong to the **application layer**.
137
+ Those responsibilities belong to the **application layer**.
137
138
 
138
139
  ---
139
140
 
140
141
  ## Status
141
142
 
142
- **Release Candidate API stable**
143
+ **StableVersion 1.0**
143
144
 
144
145
  ---
145
146
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taleem-player",
3
- "version": "0.7.2-rc",
3
+ "version": "1.0.0",
4
4
  "type": "module",
5
5
  "main": "./dist/taleem-player.umd.js",
6
6
  "module": "./dist/taleem-player.esm.js",