focuscast 0.0.4 → 0.0.6

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/CHANGELOG.md CHANGED
@@ -6,6 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
+ ## [0.0.6] - 2026-01-27
10
+
11
+ ### 🚀 Features
12
+
13
+ - Add config file watching with auto-reload
14
+
15
+ ### 💼 Other
16
+
17
+ - Cli module
18
+
19
+ ### ⚙️ Miscellaneous Tasks
20
+
21
+ - Update readme
22
+ ## [0.0.5] - 2026-01-26
23
+
24
+ ### 🚀 Features
25
+
26
+ - Add ability to toggle mapping active state
9
27
  ## [0.0.4] - 2026-01-25
10
28
 
11
29
  ### 💼 Other
package/README.md CHANGED
@@ -16,6 +16,27 @@ A terminal UI application that automatically shows/hides OBS scene items based o
16
16
 
17
17
  ## Installation
18
18
 
19
+ > [!IMPORTANT]
20
+ > Make sure, if on macos, that the terminal you use to run the application has the correct accessibility permissions to read the opened applications and such.
21
+ > these should be in "Privacy & Security" -> "Accessibility"
22
+
23
+ There are a few ways to install this program, the easiest of which are:
24
+
25
+ ### NPM
26
+
27
+ Run `npx focuscast`
28
+
29
+ ### Homebrew
30
+
31
+ Run `brew install matfire/matfire/focuscast`
32
+
33
+ ### Cargo
34
+
35
+ Run `cargo install focuscast`
36
+
37
+
38
+ You can also clone this repo and build it using
39
+
19
40
  ```bash
20
41
  cargo install --path .
21
42
  ```
@@ -76,7 +97,24 @@ The `obs` section is optional. If omitted, defaults to `127.0.0.1:4455` with no
76
97
  3. Run the application:
77
98
 
78
99
  ```bash
79
- obs-focus-win
100
+ focuscast
101
+ ```
102
+
103
+ ### CLI Commands
104
+
105
+ Manage mappings directly from the CLI (also updates the config file):
106
+
107
+ ```bash
108
+ focuscast mappings list
109
+ focuscast mappings list --scene "Scene Name"
110
+ focuscast mappings get --scene "Scene Name" --app "Firefox"
111
+ focuscast mappings toggle --scene "Scene Name" --app "Firefox"
112
+ ```
113
+
114
+ Use `--format json` for machine-readable output:
115
+
116
+ ```bash
117
+ focuscast mappings list --format json
80
118
  ```
81
119
 
82
120
  ### Keyboard Controls
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "focuscast",
26
- "version": "0.0.4"
26
+ "version": "0.0.6"
27
27
  },
28
28
  "node_modules/@isaacs/balanced-match": {
29
29
  "engines": {
@@ -515,5 +515,5 @@
515
515
  }
516
516
  },
517
517
  "requires": true,
518
- "version": "0.0.4"
518
+ "version": "0.0.6"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/matfire/focuscast/releases/download/v0.0.4",
2
+ "artifactDownloadUrl": "https://github.com/matfire/focuscast/releases/download/v0.0.6",
3
3
  "bin": {
4
4
  "focuscast": "run-focuscast.js"
5
5
  },
@@ -83,7 +83,7 @@
83
83
  "zipExt": ".tar.xz"
84
84
  }
85
85
  },
86
- "version": "0.0.4",
86
+ "version": "0.0.6",
87
87
  "volta": {
88
88
  "node": "18.14.1",
89
89
  "npm": "9.5.0"