github-actions[bot] github-actions[bot] commited on
Commit
eabef5f
·
unverified ·
1 Parent(s): b7ce6b9

chore: version packages (#17)

Browse files

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

.changeset/odd-mice-eat.md DELETED
@@ -1,24 +0,0 @@
1
- ---
2
- "@lerobot/web": minor
3
- ---
4
-
5
- enhance record() api with flexible runtime management and video stream support.
6
-
7
- add videoStreams and robotType to RecordConfig for upfront configuration.
8
- expose episode management methods on RecordProcess:
9
- - getEpisodeCount() / getEpisodes() - introspect recorded episodes
10
- - clearEpisodes() - delete all episodes
11
- - nextEpisode() - create new episode segment
12
- - restoreEpisodes() - restore persisted episodes
13
-
14
- expose dynamic camera management methods:
15
- - addCamera(name, stream) - add camera during recording
16
- - removeCamera(name) - remove camera
17
-
18
- all functionality previously requiring direct LeRobotDatasetRecorder access
19
- now available through clean, type-safe RecordProcess interface. supports both
20
- upfront configuration and runtime operations for maximum flexibility.
21
-
22
- update demo to use unified record() api exclusively, removing direct recorder
23
- access and supporting all advanced features (episode management, dynamic cameras,
24
- custom metadata) through consistent api surface.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
packages/web/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
  # @lerobot/web
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ## 0.4.0
4
 
5
  ### Minor Changes
 
1
  # @lerobot/web
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b7ce6b9: enhance record() api with flexible runtime management and video stream support.
8
+
9
+ add videoStreams and robotType to RecordConfig for upfront configuration.
10
+ expose episode management methods on RecordProcess:
11
+
12
+ - getEpisodeCount() / getEpisodes() - introspect recorded episodes
13
+ - clearEpisodes() - delete all episodes
14
+ - nextEpisode() - create new episode segment
15
+ - restoreEpisodes() - restore persisted episodes
16
+
17
+ expose dynamic camera management methods:
18
+
19
+ - addCamera(name, stream) - add camera during recording
20
+ - removeCamera(name) - remove camera
21
+
22
+ all functionality previously requiring direct LeRobotDatasetRecorder access
23
+ now available through clean, type-safe RecordProcess interface. supports both
24
+ upfront configuration and runtime operations for maximum flexibility.
25
+
26
+ update demo to use unified record() api exclusively, removing direct recorder
27
+ access and supporting all advanced features (episode management, dynamic cameras,
28
+ custom metadata) through consistent api surface.
29
+
30
  ## 0.4.0
31
 
32
  ### Minor Changes
packages/web/package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "@lerobot/web",
3
- "version": "0.4.0",
4
  "description": "Web-based robotics control using WebSerial API",
5
  "type": "module",
6
  "main": "./dist/index.js",
 
1
  {
2
  "name": "@lerobot/web",
3
+ "version": "0.5.0",
4
  "description": "Web-based robotics control using WebSerial API",
5
  "type": "module",
6
  "main": "./dist/index.js",