Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ on:

jobs:
build:
runs-on: macos-15
# Pinned rather than macos-latest: each runner image carries exactly one
# Xcode major, and the package needs Swift 6.2 for isolated deinit. On
# macos-15 (Xcode 16) the manifest doesn't even parse.
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- run: swift build
- run: swift test
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**CLI-only** — no Xcode. All builds use `swift build` via SPM. Use `just` as the task runner.

- macOS 14.0+, Swift 6.0+
- macOS 14.0+, Swift 6.2+ (hot key teardown uses `isolated deinit`, non-experimental only from 6.2)

```bash
just dev # Kill, build, sign, install to /Applications/CopyCat Dev.app, launch
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.0
// swift-tools-version: 6.2
import PackageDescription

let package = Package(
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<p align="center">
<img src="https://img.shields.io/badge/macOS-14.0%2B-blue" alt="macOS 14.0+">
<img src="https://img.shields.io/badge/Swift-6.0%2B-orange" alt="Swift 6.0+">
<img src="https://img.shields.io/badge/Swift-6.2%2B-orange" alt="Swift 6.2+">
<img src="https://img.shields.io/badge/license-MIT-green" alt="License MIT">
<img src="https://img.shields.io/badge/release-v1.1.1-blue" alt="GitHub release">
<img src="https://img.shields.io/badge/Compatible-Claudex-8A5CF6?style=flat-square" alt="Claudex">
Expand All @@ -31,7 +31,7 @@
1. [**Download CopyCat**](https://github.com/andyhtran/CopyCat/releases/latest/download/CopyCat.dmg)
2. Open the DMG and drag the app to your Applications folder
3. Launch CopyCat (look for the paw icon in the menu bar)
4. Grant Accessibility permission when prompted — required for ⌘V interception
4. Grant Accessibility permission when prompted — CopyCat needs it to type the file path, and leaves ⌘V completely alone until it's granted
5. Copy any image, then press **⌘V** in your terminal — the file path is typed for you

To paste into remote terminals over SSH, click the menu bar icon → **Settings… → General → Enable SSH paste**, then add hosts in the **SSH hosts** tab. If Tailscale is installed, peers show up for one-click add.
Expand All @@ -53,7 +53,7 @@ brew update && brew install --cask copycat

### Build from source

Requires macOS 14+ (Sonoma) and Swift 6+.
Requires macOS 14+ (Sonoma) and Swift 6.2+.

```bash
git clone https://github.com/andyhtran/CopyCat.git
Expand Down
Loading