From 1b3cd5086b47870192cb84a7ac9c0a315a19a82b Mon Sep 17 00:00:00 2001 From: Tarik Caramanico Date: Fri, 11 Sep 2026 09:12:58 -0300 Subject: [PATCH] release: 0.1.7 Marketing version to 0.1.7 and the build number to 8. Sparkle compares the build number, so that one is not optional: leaving it at 7 ships a release no installed app would offer. The changelog entry covers the four changes merged today, written for the person reading the update prompt rather than the diff. This commit only prepares the release. Tagging is what ships it. Claude-Session: https://claude.ai/code/session_01UraqY8Ld2E3zzGVN636Lw7 --- CHANGELOG.md | 16 ++++++++++++++++ Copy/Info.plist | 4 ++-- project.yml | 6 +++--- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfd311f..4a58487 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 + +- ⌘C copies the selected cards to the clipboard and ⌘V pastes them, while a bare deletes the selected card. All three act on your whole selection, the way ⌘⌫ 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 Space, 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. +- ⌘, 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. diff --git a/Copy/Info.plist b/Copy/Info.plist index b0d9978..b82fb7f 100644 --- a/Copy/Info.plist +++ b/Copy/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.1.6 + 0.1.7 CFBundleVersion - 7 + 8 LSMinimumSystemVersion 14.0 LSUIElement diff --git a/project.yml b/project.yml index ad2f770..4be5773 100644 --- a/project.yml +++ b/project.yml @@ -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" @@ -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