Skip to content

Commit fe96f1c

Browse files
committed
chore(release): v0.5.0 тАФ snippet library link semantics, transfer, CRUD polish
1 parent 441cfde commit fe96f1c

6 files changed

Lines changed: 36 additions & 6 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.0] — 2026-06-26
11+
12+
### Added
13+
- **The snippet library is now a real source of truth.** Inserting a snippet
14+
onto a button (or saving one to the library) links it by reference, so
15+
editing the library entry updates every button that uses it. Editing the
16+
text on a button detaches it into its own copy. The "used by N actions"
17+
counter and the delete warning now reflect reality instead of always showing
18+
zero.
19+
- **Library tab gained tags, notes, name/text search, alphabetical sorting, a
20+
text preview on each card, Duplicate, and Export/Import** of the whole
21+
library to a `.json` file.
22+
- **Profile export now bundles the snippets its buttons reference**, so
23+
library-linked buttons survive a cross-machine import.
24+
- **Undo coalescing:** typing into a name or text field now collapses into a
25+
single undo step instead of one per keystroke.
26+
27+
### Fixed
28+
- **Deleting a library snippet no longer breaks the buttons that used it** — the
29+
snippet's text is inlined back into each linked action instead of leaving a
30+
dangling reference.
31+
- **Adding a new snippet no longer risks rolling back unsaved edits** (a blank
32+
snippet failed whole-config validation).
33+
- Removed the paste-mode selector, which had no effect at runtime.
34+
35+
### Accessibility
36+
- Modals restore focus to the element that opened them and describe their body
37+
to screen readers; destructive confirmations announce as alert dialogs.
38+
- Removed invalid nested `<label>` markup around toggles.
39+
1040
## [0.4.0] — 2026-06-26
1141

1242
### Added

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.4.0",
4+
"version": "0.5.0",
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.4.0"
3+
version = "0.5.0"
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.4.0",
4+
"version": "0.5.0",
55
"identifier": "com.sidearm.desktop",
66
"build": {
77
"beforeDevCommand": "npm run dev",

0 commit comments

Comments
 (0)