focuscast 0.0.5 → 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 +13 -0
- package/README.md +21 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@ 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
|
|
9
22
|
## [0.0.5] - 2026-01-26
|
|
10
23
|
|
|
11
24
|
### 🚀 Features
|
package/README.md
CHANGED
|
@@ -16,6 +16,10 @@ 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
|
+
|
|
19
23
|
There are a few ways to install this program, the easiest of which are:
|
|
20
24
|
|
|
21
25
|
### NPM
|
|
@@ -96,6 +100,23 @@ The `obs` section is optional. If omitted, defaults to `127.0.0.1:4455` with no
|
|
|
96
100
|
focuscast
|
|
97
101
|
```
|
|
98
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
|
|
118
|
+
```
|
|
119
|
+
|
|
99
120
|
### Keyboard Controls
|
|
100
121
|
|
|
101
122
|
| Key | Action |
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "focuscast",
|
|
26
|
-
"version": "0.0.
|
|
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.
|
|
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.
|
|
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.
|
|
86
|
+
"version": "0.0.6",
|
|
87
87
|
"volta": {
|
|
88
88
|
"node": "18.14.1",
|
|
89
89
|
"npm": "9.5.0"
|