appshot-cli 0.8.1 → 0.8.5
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/README.md +5 -4
- package/dist/cli.js +1 -1
- package/dist/services/doctor.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/chrisvanbuskirk/appshot/actions/workflows/ci.yml)
|
|
6
6
|
[](https://www.npmjs.com/package/appshot-cli)
|
|
7
|
+
[](https://www.npmjs.com/package/appshot-cli)
|
|
8
|
+
[](https://nodejs.org)
|
|
7
9
|
[](https://opensource.org/licenses/MIT)
|
|
8
10
|
|
|
9
|
-
🆕 **Version 0.8.
|
|
11
|
+
🆕 **Version 0.8.5** - **Watch Mode & Device Capture** - File system monitoring with auto-processing and direct iOS simulator capture!
|
|
10
12
|
|
|
11
|
-
> ⚠️ **NEW in v0.8.
|
|
13
|
+
> ⚠️ **NEW in v0.8.5**: `appshot watch` for automatic screenshot processing and `appshot device` for iOS simulator capture (macOS only). Includes duplicate detection and background service management.
|
|
12
14
|
|
|
13
15
|
> ⚠️ **BREAKING CHANGE in v0.4.0**: Output structure now always uses language subdirectories.
|
|
14
16
|
> Single language builds now output to `final/device/lang/` instead of `final/device/`.
|
|
@@ -2042,8 +2044,7 @@ For security vulnerabilities, please see [SECURITY.md](SECURITY.md).
|
|
|
2042
2044
|
### NPM Package
|
|
2043
2045
|
|
|
2044
2046
|
- 📦 [appshot-cli on NPM](https://www.npmjs.com/package/appshot-cli)
|
|
2045
|
-
- 🔄 Latest version: 0.8.
|
|
2046
|
-
- ⬇️ Weekly downloads: 
|
|
2047
|
+
- 🔄 Latest version: 0.8.5
|
|
2047
2048
|
|
|
2048
2049
|
---
|
|
2049
2050
|
|
package/dist/cli.js
CHANGED
|
@@ -51,7 +51,7 @@ ${pc.bold('Common Workflows:')}
|
|
|
51
51
|
$ appshot watch start --process # Auto-process new screenshots` : ''}
|
|
52
52
|
|
|
53
53
|
${pc.dim('Docs: https://github.com/chrisvanbuskirk/appshot')}`)
|
|
54
|
-
.version('0.8.
|
|
54
|
+
.version('0.8.5')
|
|
55
55
|
.addHelpText('after', `\n${pc.bold('Environment Variables:')}
|
|
56
56
|
OPENAI_API_KEY API key for translation features
|
|
57
57
|
APPSHOT_DISABLE_FONT_SCAN Skip system font detection (CI optimization)
|
package/dist/services/doctor.js
CHANGED