mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-03-25 09:25:47 +00:00
Prepare v1.0.0 stable release
- Update version to 1.0.0 - Add comprehensive changelog for stable release - Mark project as production-ready 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
41fafd6d9f
commit
1a2a817822
4 changed files with 39 additions and 4 deletions
35
CHANGELOG.md
35
CHANGELOG.md
|
|
@ -7,6 +7,41 @@ 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
|
||||
|
||||
### Requirements
|
||||
- macOS 13.0 or later
|
||||
- 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.25] - 2025-01-08
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@steipete/peekaboo-mcp",
|
||||
"version": "1.0.0-beta.25",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@steipete/peekaboo-mcp",
|
||||
"version": "1.0.0-beta.25",
|
||||
"version": "1.0.0",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"os": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@steipete/peekaboo-mcp",
|
||||
"version": "1.0.0-beta.25",
|
||||
"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",
|
||||
|
|
|
|||
|
|
@ -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.24"
|
||||
static let current = "1.0.0-beta.25"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue