@evenrealities/evenhub-simulator 0.5.0 → 0.5.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 +17 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -131,9 +131,25 @@ post-processing effect only.
|
|
|
131
131
|
|
|
132
132
|
# Changelog
|
|
133
133
|
|
|
134
|
+
## v0.5.3 (2026-03-03)
|
|
135
|
+
|
|
136
|
+
- Now will log original json to stdout if parsing payload error (needs
|
|
137
|
+
`RUST_LOG=debug`)
|
|
138
|
+
- change `x_position`/`y_position` type to `i32` (previously was `u32`)
|
|
139
|
+
|
|
140
|
+
## v0.5.2 (2026-02-28)
|
|
141
|
+
|
|
142
|
+
- Improve overall rendering accuracy: now with only 4bit colors
|
|
143
|
+
- Remove the brightness filter on glasses canvas
|
|
144
|
+
|
|
145
|
+
## v0.5.1 (2026-02-27)
|
|
146
|
+
|
|
147
|
+
- Rendering mechanism adjustments
|
|
148
|
+
- Improve image rendering
|
|
149
|
+
|
|
134
150
|
## v0.5.0 (2026-02-26)
|
|
135
151
|
|
|
136
|
-
-
|
|
152
|
+
- Add screenshot functionality
|
|
137
153
|
|
|
138
154
|
## v0.4.1 (2026-02-20)
|
|
139
155
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evenrealities/evenhub-simulator",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "EvenHub glasses app simulator",
|
|
5
5
|
"bin": {
|
|
6
6
|
"evenhub-simulator": "bin/index.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@evenrealities/sim-darwin-arm64": "0.5.
|
|
10
|
-
"@evenrealities/sim-darwin-x64": "0.5.
|
|
11
|
-
"@evenrealities/sim-linux-x64": "0.5.
|
|
12
|
-
"@evenrealities/sim-win32-x64": "0.5.
|
|
9
|
+
"@evenrealities/sim-darwin-arm64": "0.5.3",
|
|
10
|
+
"@evenrealities/sim-darwin-x64": "0.5.3",
|
|
11
|
+
"@evenrealities/sim-linux-x64": "0.5.3",
|
|
12
|
+
"@evenrealities/sim-win32-x64": "0.5.3"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT"
|
|
15
15
|
}
|