@evenrealities/evenhub-simulator 0.3.2 → 0.4.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.
- package/README.md +19 -10
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -22,16 +22,18 @@ Arguments:
|
|
|
22
22
|
[targetUrl] The URL to load on startup
|
|
23
23
|
|
|
24
24
|
Options:
|
|
25
|
-
-c, --config <
|
|
26
|
-
-g, --glow
|
|
27
|
-
--no-glow
|
|
28
|
-
-b, --bounce <
|
|
29
|
-
--list-audio-input-devices
|
|
30
|
-
--aid <
|
|
31
|
-
--no-aid
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
-c, --config <CONFIG> Path to config file (use --print-config-path to see the default)
|
|
26
|
+
-g, --glow Enable glow effect on glasses display
|
|
27
|
+
--no-glow Disable glow effect (overrides config)
|
|
28
|
+
-b, --bounce <BOUNCE> Bounce animation type [possible values: default, spring]
|
|
29
|
+
--list-audio-input-devices List available audio input devices
|
|
30
|
+
--aid <AID> Choose the specified audio input device instead of default
|
|
31
|
+
--no-aid Use default audio device (overrides config)
|
|
32
|
+
-V, --version Print version
|
|
33
|
+
--print-config-path Print the default config file path and exit
|
|
34
|
+
--completions <SHELL> Print shell completion script [possible values: bash, elvish, fish, powershell, zsh]
|
|
35
|
+
-h, --help Print help
|
|
36
|
+
|
|
35
37
|
```
|
|
36
38
|
|
|
37
39
|
example to generate zsh completions:
|
|
@@ -45,6 +47,7 @@ evenhub-simulator --completions zsh > ~/.zsh/completions/_evenhub-simulator
|
|
|
45
47
|
| Option | Description |
|
|
46
48
|
|------------------------------|----------------------------------------------------------------------------------------|
|
|
47
49
|
| `-c`, `--config <config>` | Path to a config file. Defaults to the OS config dir |
|
|
50
|
+
| `--print-config-path` | Print the default config file path and exit. |
|
|
48
51
|
| `-g`, `--glow` / `--no-glow` | Enable or disable the glow effect on the glasses display. |
|
|
49
52
|
| `-b`, `--bounce <bounce>` | Sets bounce animation type: `default` or `spring`. |
|
|
50
53
|
| `--list-audio-input-devices` | Lists available audio input devices and exits. |
|
|
@@ -98,11 +101,17 @@ The simulator now emits `audioEvents`. The data specification for each event is:
|
|
|
98
101
|
|
|
99
102
|
# Changelog
|
|
100
103
|
|
|
104
|
+
## v0.4.0 (2026-02-20)
|
|
105
|
+
|
|
106
|
+
- Performance optimization
|
|
107
|
+
- New flag to print default config file location
|
|
108
|
+
|
|
101
109
|
## v0.3.2 (2026-02-18)
|
|
102
110
|
|
|
103
111
|
- Fix description of config file location
|
|
104
112
|
|
|
105
113
|
## v0.3.1 (2026-02-17)
|
|
114
|
+
|
|
106
115
|
- Adjust audio input device listing format
|
|
107
116
|
|
|
108
117
|
## v0.3.0
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evenrealities/evenhub-simulator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
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.
|
|
10
|
-
"@evenrealities/sim-darwin-x64": "0.
|
|
11
|
-
"@evenrealities/sim-linux-x64": "0.
|
|
12
|
-
"@evenrealities/sim-win32-x64": "0.
|
|
9
|
+
"@evenrealities/sim-darwin-arm64": "0.4.0",
|
|
10
|
+
"@evenrealities/sim-darwin-x64": "0.4.0",
|
|
11
|
+
"@evenrealities/sim-linux-x64": "0.4.0",
|
|
12
|
+
"@evenrealities/sim-win32-x64": "0.4.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT"
|
|
15
15
|
}
|