chore: add 0.1.0 changelog

This commit is contained in:
Peter Steinberger 2026-01-18 07:21:15 +00:00
parent 61cb791e03
commit aee41fac5b
3 changed files with 11 additions and 2 deletions

10
CHANGELOG.md Normal file
View File

@ -0,0 +1,10 @@
# Changelog
All notable changes to AXorcist will be documented in this file.
## [0.1.0] - 2026-01-18
### Added
- Initial release of AXorcist, a Swift wrapper over macOS Accessibility with async/await-friendly APIs.
- Type-safe element querying and attribute access, plus action execution helpers.
- Permission helpers for checking/requesting Accessibility access and monitoring changes.

View File

@ -50,7 +50,7 @@ extension Element {
}
@MainActor
internal static func buildClickEventPairs(
static func buildClickEventPairs(
at point: CGPoint,
button: MouseButton,
clickCount: Int) throws -> [(down: CGEvent, up: CGEvent)]

View File

@ -39,4 +39,3 @@ struct ClickEventGenerationTests {
#expect(pairs[1].up.getIntegerValueField(.mouseEventClickState) == 2)
}
}