@evenrealities/evenhub-simulator 0.3.1 → 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.
Files changed (2) hide show
  1. package/README.md +44 -19
  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:
@@ -42,14 +44,27 @@ evenhub-simulator --completions zsh > ~/.zsh/completions/_evenhub-simulator
42
44
 
43
45
  ### Options
44
46
 
45
- | Option | Description |
46
- |--------|-------------|
47
- | `-c`, `--config <config>` | Path to a config file. Defaults to the OS config dir (for example, `~/.config/evenhub/simulator.yaml` on Linux/macOS or `%APPDATA%\evenhub\simulator.yaml` on Windows). |
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`. |
47
+ | Option | Description |
48
+ |------------------------------|----------------------------------------------------------------------------------------|
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. |
51
+ | `-g`, `--glow` / `--no-glow` | Enable or disable the glow effect on the glasses display. |
52
+ | `-b`, `--bounce <bounce>` | Sets bounce animation type: `default` or `spring`. |
53
+ | `--list-audio-input-devices` | Lists available audio input devices and exits. |
54
+ | `--aid <aid>` / `--no-aid` | Select a specific audio input device, or force the system default device. |
55
+ | `--completions <shell>` | Prints a shell completion script for `bash`, `elvish`, `fish`, `powershell`, or `zsh`. |
56
+
57
+
58
+
59
+ Default config file path:
60
+
61
+
62
+ | Platform | Value | Example |
63
+ | ------- | ------------------------------------- | ---------------------------------------- |
64
+ | Linux | `$XDG_CONFIG_HOME` or `$HOME`/.config | /home/\<user>/.config |
65
+ | macOS | `$HOME`/Library/Application Support | /Users/\<user>/Library/Application Support |
66
+ | Windows | `{FOLDERID_RoamingAppData}` | C:\Users\\\<user>\AppData\Roaming |
67
+
53
68
 
54
69
  ## Caveats
55
70
 
@@ -86,7 +101,17 @@ The simulator now emits `audioEvents`. The data specification for each event is:
86
101
 
87
102
  # Changelog
88
103
 
104
+ ## v0.4.0 (2026-02-20)
105
+
106
+ - Performance optimization
107
+ - New flag to print default config file location
108
+
109
+ ## v0.3.2 (2026-02-18)
110
+
111
+ - Fix description of config file location
112
+
89
113
  ## v0.3.1 (2026-02-17)
114
+
90
115
  - Adjust audio input device listing format
91
116
 
92
117
  ## v0.3.0
@@ -104,4 +129,4 @@ The simulator now emits `audioEvents`. The data specification for each event is:
104
129
 
105
130
  - Upgrade `lvgl-sys` to v9 (via a custom crate), with no obvious visual changes.
106
131
  - Use a lighter font for CJK characters.
107
- - Add preliminary audio event support.
132
+ - 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.1",
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.3.1",
10
- "@evenrealities/sim-darwin-x64": "0.3.1",
11
- "@evenrealities/sim-linux-x64": "0.3.1",
12
- "@evenrealities/sim-win32-x64": "0.3.1"
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
  }