@evenrealities/evenhub-simulator 0.3.2 → 0.4.1

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 +20 -10
  2. 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 <config> Path to config file (default: OS config dir, e.g. ~/.config/evenhub/simulator.yaml on Linux/macOS or %APPDATA%\evenhub\simulator.yaml on Windows)
26
- -g, --glow... Enable glow effect on glasses display
27
- --no-glow... Disable glow effect (overrides config)
28
- -b, --bounce <bounce> Bounce animation type: 'default' or 'spring' [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
- --completions <SHELL> Print shell completion script [possible values: bash, elvish, fish, powershell, zsh]
33
- -h, --help Print help (see more with '--help')
34
- -V, --version Print version
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,18 @@ The simulator now emits `audioEvents`. The data specification for each event is:
98
101
 
99
102
  # Changelog
100
103
 
104
+ ## v0.4.1 (2026-02-20)
105
+
106
+ - Performance optimization
107
+ - New flag to print default config file location
108
+ - Fix completion command
109
+
101
110
  ## v0.3.2 (2026-02-18)
102
111
 
103
112
  - Fix description of config file location
104
113
 
105
114
  ## v0.3.1 (2026-02-17)
115
+
106
116
  - Adjust audio input device listing format
107
117
 
108
118
  ## v0.3.0
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@evenrealities/evenhub-simulator",
3
- "version": "0.3.2",
3
+ "version": "0.4.1",
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.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"
9
+ "@evenrealities/sim-darwin-arm64": "0.4.1",
10
+ "@evenrealities/sim-darwin-x64": "0.4.1",
11
+ "@evenrealities/sim-linux-x64": "0.4.1",
12
+ "@evenrealities/sim-win32-x64": "0.4.1"
13
13
  },
14
14
  "license": "MIT"
15
15
  }