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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to Copy are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.7] - 2026-09-11

The keyboard shortcuts you already expect, image files that look like images, and a quieter close.

### Added

- <kbd>⌘C</kbd> copies the selected cards to the clipboard and <kbd>⌘V</kbd> pastes them, while a bare <kbd>⌫</kbd> deletes the selected card. All three act on your whole selection, the way <kbd>⌘⌫</kbd> already did. The two clipboard shortcuts step aside whenever there is text in the search box, so you can still paste a search term in and copy one back out.
- A card holding an image file previews as the picture when you press <kbd>Space</kbd>, instead of a generic document icon. The Image filter in search finds those cards now too, not only pictures you copied directly.
- An optional sound when Copy records something new, under Settings, General. It is off unless you turn it on, and you can pick any of the sounds macOS already ships.

### Fixed

- Closing the shelf on macOS 26 no longer flashes for a frame. The app underneath gets focus back after the shelf is fully gone, so a paste lands where you meant it to.
- Card timestamps no longer get cut short. The source app name gives way instead.
- <kbd>⌘,</kbd> opens Settings. It used to open an empty window.

## [0.1.6] - 2026-08-15

Favorites hold their place while you scroll back through history.
Expand Down
4 changes: 2 additions & 2 deletions Copy/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.6</string>
<string>0.1.7</string>
<key>CFBundleVersion</key>
<string>7</string>
<string>8</string>
<key>LSMinimumSystemVersion</key>
<string>14.0</string>
<key>LSUIElement</key>
Expand Down
6 changes: 3 additions & 3 deletions project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ targets:
path: Copy/Info.plist
properties:
CFBundleDisplayName: Copy
CFBundleShortVersionString: "0.1.6"
CFBundleVersion: "7"
CFBundleShortVersionString: "0.1.7"
CFBundleVersion: "8"
LSUIElement: true
LSMinimumSystemVersion: "14.0"
NSHumanReadableCopyright: "© 2026 Tarik Caramanico - GPL-3.0"
Expand All @@ -53,7 +53,7 @@ targets:
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.tarikbc.Copy
MARKETING_VERSION: "0.1.6"
MARKETING_VERSION: "0.1.7"
SWIFT_VERSION: "5.0"
ENABLE_HARDENED_RUNTIME: YES
CODE_SIGN_STYLE: Automatic
Expand Down