Skip to content

Commit 260a6d4

Browse files
committed
chore(release): v0.6.2 тАФ snippets excluded from clipboard history
1 parent f512f84 commit 260a6d4

6 files changed

Lines changed: 18 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.2] — 2026-06-28
11+
12+
### Fixed
13+
- **Pasted text snippets no longer leak into clipboard history.** Long snippets
14+
(over 100 characters) are pasted via a brief clipboard write + Ctrl+V to
15+
preserve newlines; that staged write used to land in the Windows clipboard
16+
history (Win+V) and sync to the cloud clipboard. The staged write is now
17+
tagged with the documented exclusion formats (`CanIncludeInClipboardHistory`,
18+
`CanUploadToCloudClipboard`, `ExcludeClipboardContentFromMonitorProcessing`) —
19+
the same mechanism password managers use — so snippets stay out of history and
20+
the cloud. Paste behavior is otherwise unchanged.
21+
1022
## [0.6.1] — 2026-06-26
1123

1224
### Changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sidearm",
33
"private": true,
4-
"version": "0.6.1",
4+
"version": "0.6.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sidearm"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "Desktop workflow studio for multi-button mice"
55
authors = ["User"]
66
edition = "2024"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Sidearm",
4-
"version": "0.6.1",
4+
"version": "0.6.2",
55
"identifier": "com.sidearm.desktop",
66
"build": {
77
"beforeDevCommand": "npm run dev",

0 commit comments

Comments
 (0)