x3d-image 1.0.4 → 1.0.5

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 +6 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -20,7 +20,7 @@ Set input file.
20
20
 
21
21
  Set output file.
22
22
 
23
- ### -s 'WIDTHxHEIGHT'
23
+ ### -s WIDTHxHEIGHT
24
24
 
25
25
  Set image size in pixels, default is '1280x720'.
26
26
 
@@ -44,5 +44,9 @@ Wait the specified number of seconds before generating the image.
44
44
  Generate an JPEG image from X3D.
45
45
 
46
46
  ```sh
47
- $ npx x3d-image -s '1600x900' -i file.x3d -o file.jpg
47
+ $ npx x3d-image -s 1600x900 -i file.x3d -o file.jpg
48
48
  ```
49
+
50
+ ## See Also
51
+
52
+ x3d-image is based on [X_ITE](https://create3000.github.io/x_ite/), so check it out.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x3d-image",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Generate image files from X3D.",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -29,7 +29,7 @@
29
29
  "dependencies": {
30
30
  "colors": "^1.4.0",
31
31
  "electron": "^25.3.2",
32
- "x_ite": "^8.11.4",
32
+ "x_ite": "^8.11.5",
33
33
  "yargs": "^17.7.2"
34
34
  }
35
35
  }