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 CHANGED
@@ -4,11 +4,13 @@
4
4
 
5
5
  [![CI](https://github.com/chrisvanbuskirk/appshot/actions/workflows/ci.yml/badge.svg)](https://github.com/chrisvanbuskirk/appshot/actions/workflows/ci.yml)
6
6
  [![npm version](https://badge.fury.io/js/appshot-cli.svg)](https://www.npmjs.com/package/appshot-cli)
7
+ [![npm downloads](https://img.shields.io/npm/dm/appshot-cli.svg)](https://www.npmjs.com/package/appshot-cli)
8
+ [![Node.js Version](https://img.shields.io/node/v/appshot-cli.svg)](https://nodejs.org)
7
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
10
 
9
- 🆕 **Version 0.8.0** - **Frame-Only Mode**, apply device frames quickly to screenshots with transparent backgrounds - perfect for design workflows and quick exports!
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.0**: `appshot frame` command for standalone device framing without gradients or captions. Auto-detects device types and supports batch processing with transparent PNG output.
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.0
2046
- - ⬇️ Weekly downloads: ![npm](https://img.shields.io/npm/dw/appshot-cli)
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.1')
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)
@@ -520,7 +520,7 @@ export class DoctorService {
520
520
  };
521
521
  return {
522
522
  timestamp: new Date().toISOString(),
523
- version: '0.8.1',
523
+ version: '0.8.5',
524
524
  platform: platform(),
525
525
  checks: categorizedChecks,
526
526
  summary,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appshot-cli",
3
- "version": "0.8.1",
3
+ "version": "0.8.5",
4
4
  "description": "Generate App Store–ready screenshots with frames, gradients, and captions",
5
5
  "bin": {
6
6
  "appshot": "bin/appshot.js"