@evenrealities/evenhub-simulator 0.3.0 → 0.3.2
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 +29 -11
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -42,14 +42,26 @@ evenhub-simulator --completions zsh > ~/.zsh/completions/_evenhub-simulator
|
|
|
42
42
|
|
|
43
43
|
### Options
|
|
44
44
|
|
|
45
|
-
| Option
|
|
46
|
-
|
|
47
|
-
| `-c`, `--config <config>`
|
|
48
|
-
| `-g`, `--glow` / `--no-glow` | Enable or disable the glow effect on the glasses display.
|
|
49
|
-
| `-b`, `--bounce <bounce>`
|
|
50
|
-
| `--list-audio-input-devices` | Lists available audio input devices and exits.
|
|
51
|
-
| `--aid <aid>` / `--no-aid`
|
|
52
|
-
| `--completions <shell>`
|
|
45
|
+
| Option | Description |
|
|
46
|
+
|------------------------------|----------------------------------------------------------------------------------------|
|
|
47
|
+
| `-c`, `--config <config>` | Path to a config file. Defaults to the OS config dir |
|
|
48
|
+
| `-g`, `--glow` / `--no-glow` | Enable or disable the glow effect on the glasses display. |
|
|
49
|
+
| `-b`, `--bounce <bounce>` | Sets bounce animation type: `default` or `spring`. |
|
|
50
|
+
| `--list-audio-input-devices` | Lists available audio input devices and exits. |
|
|
51
|
+
| `--aid <aid>` / `--no-aid` | Select a specific audio input device, or force the system default device. |
|
|
52
|
+
| `--completions <shell>` | Prints a shell completion script for `bash`, `elvish`, `fish`, `powershell`, or `zsh`. |
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
Default config file path:
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
| Platform | Value | Example |
|
|
60
|
+
| ------- | ------------------------------------- | ---------------------------------------- |
|
|
61
|
+
| Linux | `$XDG_CONFIG_HOME` or `$HOME`/.config | /home/\<user>/.config |
|
|
62
|
+
| macOS | `$HOME`/Library/Application Support | /Users/\<user>/Library/Application Support |
|
|
63
|
+
| Windows | `{FOLDERID_RoamingAppData}` | C:\Users\\\<user>\AppData\Roaming |
|
|
64
|
+
|
|
53
65
|
|
|
54
66
|
## Caveats
|
|
55
67
|
|
|
@@ -86,12 +98,18 @@ The simulator now emits `audioEvents`. The data specification for each event is:
|
|
|
86
98
|
|
|
87
99
|
# Changelog
|
|
88
100
|
|
|
101
|
+
## v0.3.2 (2026-02-18)
|
|
102
|
+
|
|
103
|
+
- Fix description of config file location
|
|
104
|
+
|
|
105
|
+
## v0.3.1 (2026-02-17)
|
|
106
|
+
- Adjust audio input device listing format
|
|
89
107
|
|
|
90
|
-
## v0.3.0
|
|
108
|
+
## v0.3.0
|
|
91
109
|
|
|
92
110
|
- Shell completion support
|
|
93
111
|
|
|
94
|
-
## v0.2.2
|
|
112
|
+
## v0.2.2
|
|
95
113
|
|
|
96
114
|
- Adjust audio resampling logic and ability to choose audio input device.
|
|
97
115
|
- Add config file support so you do not need to repeat common options.
|
|
@@ -102,4 +120,4 @@ The simulator now emits `audioEvents`. The data specification for each event is:
|
|
|
102
120
|
|
|
103
121
|
- Upgrade `lvgl-sys` to v9 (via a custom crate), with no obvious visual changes.
|
|
104
122
|
- Use a lighter font for CJK characters.
|
|
105
|
-
- Add preliminary audio event support.
|
|
123
|
+
- Add preliminary audio event support.
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evenrealities/evenhub-simulator",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
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.3.
|
|
10
|
-
"@evenrealities/sim-darwin-x64": "0.3.
|
|
11
|
-
"@evenrealities/sim-linux-x64": "0.3.
|
|
12
|
-
"@evenrealities/sim-win32-x64": "0.3.
|
|
9
|
+
"@evenrealities/sim-darwin-arm64": "0.3.2",
|
|
10
|
+
"@evenrealities/sim-darwin-x64": "0.3.2",
|
|
11
|
+
"@evenrealities/sim-linux-x64": "0.3.2",
|
|
12
|
+
"@evenrealities/sim-win32-x64": "0.3.2"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT"
|
|
15
15
|
}
|