From 8d8d9cb5f9fdad9784c1254f65148e83355ea2b3 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 8 Jun 2025 20:56:04 +0100 Subject: [PATCH] =?UTF-8?q?Release=20v1.0.0=20=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit First stable release of Peekaboo MCP with: - macOS 14.0+ support (lowered from 15.0) - Swift 6 with strict concurrency - Complete async/await implementation - Robust error handling - Universal binary for Intel and Apple Silicon 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CHANGELOG.md | 36 +++++++++++++++++++++ package.json | 2 +- peekaboo-cli/Sources/peekaboo/Version.swift | 2 +- 3 files changed, 38 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 812b1a5..e5ba78d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0] - 2025-01-08 + +### 🎉 First Stable Release + +Peekaboo MCP is now production-ready! This release marks the culmination of extensive development, testing, and refinement to create a robust macOS screen capture and window management tool for AI agents. + +### Key Features +- **Advanced Screen Capture**: Capture entire screens, specific windows, or all windows of an application +- **AI-Powered Image Analysis**: Analyze captured or existing images using multiple AI providers (Ollama, OpenAI) +- **Window Management**: List running applications and their windows with detailed metadata +- **Flexible Output Options**: Save to file or return Base64-encoded data inline +- **Swift 6 Compatibility**: Fully migrated to Swift 6 with strict concurrency for maximum reliability +- **Universal Binary**: Supports both Apple Silicon and Intel Macs + +### Recent Improvements (from beta releases) +- Fixed critical MCP server error handling for edge cases +- Complete Swift 6 migration with proper async/await patterns +- Enhanced error messages and debugging capabilities +- Improved window matching with fuzzy search +- Better handling of multi-display setups +- Robust permission handling for Screen Recording and Accessibility +- Lowered macOS requirement from 15.0 to 14.0 (Sonoma) + +### Requirements +- macOS 14.0 or later (Sonoma) +- Node.js 18 or later +- Screen Recording permission (for capture features) +- Accessibility permission (optional, for foreground window detection) + +### Getting Started +```bash +npm install -g @steipete/peekaboo-mcp +``` + +For detailed documentation, visit: https://github.com/steipete/Peekaboo + ## [1.0.0-beta.26] - 2025-01-08 ### Changed diff --git a/package.json b/package.json index 1f1324b..c902b1d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@steipete/peekaboo-mcp", - "version": "1.0.0-beta.26", + "version": "1.0.0", "description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management", "type": "module", "main": "dist/index.js", diff --git a/peekaboo-cli/Sources/peekaboo/Version.swift b/peekaboo-cli/Sources/peekaboo/Version.swift index 7eac253..7567d5b 100644 --- a/peekaboo-cli/Sources/peekaboo/Version.swift +++ b/peekaboo-cli/Sources/peekaboo/Version.swift @@ -1,4 +1,4 @@ // This file is auto-generated by the build script. Do not edit manually. enum Version { - static let current = "1.0.0-beta.26" + static let current = "1.0.0" }