focuscast 0.0.5 → 0.0.7

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,31 @@ 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.7] - 2026-01-27
10
+
11
+ ### 🐛 Bug Fixes
12
+
13
+ - Update tap for release.yml
14
+ - Update release-plz workflow
15
+
16
+ ### ⚙️ Miscellaneous Tasks
17
+
18
+ - Update website address
19
+ - Update repository link
20
+ - Update tap repo
21
+ ## [0.0.6] - 2026-01-27
22
+
23
+ ### 🚀 Features
24
+
25
+ - Add config file watching with auto-reload
26
+
27
+ ### 💼 Other
28
+
29
+ - Cli module
30
+
31
+ ### ⚙️ Miscellaneous Tasks
32
+
33
+ - Update readme
9
34
  ## [0.0.5] - 2026-01-26
10
35
 
11
36
  ### 🚀 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 |
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "focuscast",
26
- "version": "0.0.5"
26
+ "version": "0.0.7"
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.5"
518
+ "version": "0.0.7"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/matfire/focuscast/releases/download/v0.0.5",
2
+ "artifactDownloadUrl": "https://github.com/focuscast/focuscast/releases/download/v0.0.7",
3
3
  "bin": {
4
4
  "focuscast": "run-focuscast.js"
5
5
  },
@@ -22,11 +22,11 @@
22
22
  "major": 2,
23
23
  "series": 35
24
24
  },
25
- "homepage": "https://focuscast.matteogassend.com",
25
+ "homepage": "https://focuscast.live",
26
26
  "license": "MIT",
27
27
  "name": "focuscast",
28
28
  "preferUnplugged": true,
29
- "repository": "https://github.com/matfire/focuscast",
29
+ "repository": "https://github.com/focuscast/focuscast",
30
30
  "scripts": {
31
31
  "fmt": "prettier --write **/*.js",
32
32
  "fmt:check": "prettier --check **/*.js",
@@ -83,7 +83,7 @@
83
83
  "zipExt": ".tar.xz"
84
84
  }
85
85
  },
86
- "version": "0.0.5",
86
+ "version": "0.0.7",
87
87
  "volta": {
88
88
  "node": "18.14.1",
89
89
  "npm": "9.5.0"