Fix macOS version requirement documentation

- Update to macOS 15.0+ (Sequoia) to match Package.swift
- Fix incorrect version in CHANGELOG.md
- Update README badges and requirements section

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Peter Steinberger 2025-06-08 20:39:18 +01:00
parent 0bec93e364
commit 1095f488ea
3 changed files with 4 additions and 4 deletions

View file

@ -30,7 +30,7 @@ Peekaboo MCP is now production-ready! This release marks the culmination of exte
- Robust permission handling for Screen Recording and Accessibility
### Requirements
- macOS 13.0 or later
- macOS 15.0 or later (Sequoia)
- Node.js 18 or later
- Screen Recording permission (for capture features)
- Accessibility permission (optional, for foreground window detection)

View file

@ -4,7 +4,7 @@
[![npm version](https://badge.fury.io/js/%40steipete%2Fpeekaboo-mcp.svg)](https://www.npmjs.com/package/@steipete/peekaboo-mcp)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![macOS](https://img.shields.io/badge/macOS-14.0%2B-blue.svg)](https://www.apple.com/macos/)
[![macOS](https://img.shields.io/badge/macOS-15.0%2B-blue.svg)](https://www.apple.com/macos/)
[![Node.js](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg)](https://nodejs.org/)
Peekaboo is a macOS-only MCP server that enables AI agents to capture screenshots of applications, windows, or the entire system, with optional visual question answering through local or remote AI models.
@ -33,7 +33,7 @@ Read more about the design philosophy and implementation details in the [blog po
### Requirements
- **macOS 14.0+** (Sonoma or later)
- **macOS 15.0+** (Sequoia or later)
- **Node.js 20.0+**
- **Screen Recording Permission** (you'll be prompted on first use)

View file

@ -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.25"
static let current = "1.0.0"
}