Skip to content

Commit 033de68

Browse files
committed
fix: correct argument labels in PasteService
1 parent 6da0431 commit 033de68

3 files changed

Lines changed: 3 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# Changelog
22

3-
## [0.3.2](https://github.com/mxvsh/wave/compare/v0.3.1...v0.3.2) (2026-03-30)
4-
5-
### Features
6-
7-
* add clear history option with confirmation dialog ([6b25789](https://github.com/mxvsh/wave/commit/6b257891c80c479453436df13482cff0cd57517a))
8-
9-
### Bug Fixes
10-
11-
* use Cmd+V fallback for paste to support terminal and web apps ([1a18850](https://github.com/mxvsh/wave/commit/1a18850f9753ba4b7aea8432d367e017c865bc02))
12-
133
## [0.3.1](https://github.com/mxvsh/wave/compare/v0.3.0...v0.3.1) (2026-03-30)
144

155
### Features

Wave/Services/PasteService.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import Carbon.HIToolbox
55
struct PasteService {
66
static func paste(text: String) {
77
// Try AX insertion first — works in native AppKit fields without touching clipboard
8-
if pasteViaAX(text: text) { return }
8+
if pasteViaAX(text) { return }
99
// Fall back to clipboard + Cmd+V — works everywhere (Terminal, web, Electron, etc.)
10-
pasteViaKeyboard(text: text)
10+
pasteViaKeyboard(text)
1111
}
1212

1313
@discardableResult

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"@release-it/conventional-changelog": "^10.0.5",
1010
"release-it": "^19.2.4"
1111
},
12-
"version": "0.3.2"
12+
"version": "0.3.1"
1313
}

0 commit comments

Comments
 (0)