@evenrealities/evenhub-simulator 0.3.1 → 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.
Files changed (2) hide show
  1. package/README.md +25 -9
  2. 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 | 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`. |
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,6 +98,10 @@ 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
+
89
105
  ## v0.3.1 (2026-02-17)
90
106
  - Adjust audio input device listing format
91
107
 
@@ -104,4 +120,4 @@ The simulator now emits `audioEvents`. The data specification for each event is:
104
120
 
105
121
  - Upgrade `lvgl-sys` to v9 (via a custom crate), with no obvious visual changes.
106
122
  - Use a lighter font for CJK characters.
107
- - 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.1",
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.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.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
  }