mirror of
https://github.com/lahfir/agent-desktop.git
synced 2026-08-18 04:55:46 +00:00
chore(main): release agent-desktop 0.1.1
This commit is contained in:
parent
0ab78dde0e
commit
dc9f2afddf
4 changed files with 34 additions and 3 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.1.0"
|
||||
".": "0.1.1"
|
||||
}
|
||||
|
|
|
|||
31
CHANGELOG.md
Normal file
31
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Changelog
|
||||
|
||||
## [0.1.1](https://github.com/lahfir/agent-desktop/compare/agent-desktop-v0.1.0...agent-desktop-v0.1.1) (2026-02-23)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* 10-step scroll chain, focus guards, enhanced click chain, bounds fix ([595ccb6](https://github.com/lahfir/agent-desktop/commit/595ccb6cc45554351ea3e30b95e4ca47bdf4e16b))
|
||||
* add 19 new commands, AX-first rewrites, LOC compliance ([d3f7e03](https://github.com/lahfir/agent-desktop/commit/d3f7e03c67832c652a6125f61fbb7ab2f0801939))
|
||||
* add 19 new commands, AX-first rewrites, LOC compliance ([eca04e8](https://github.com/lahfir/agent-desktop/commit/eca04e839288b121f6f41c6de525a8396d10654c))
|
||||
* add release automation with GitHub Releases and npm distribution ([18fc50c](https://github.com/lahfir/agent-desktop/commit/18fc50cca51f2ed10b6dfb5576602b6ce344bc95))
|
||||
* add structural hints to splitter columns in snapshots ([48f8470](https://github.com/lahfir/agent-desktop/commit/48f8470948b4f636dfa6f4489e4cb6d9f520722c))
|
||||
* AX-first right-click chain with inline context menu capture ([cddc5d3](https://github.com/lahfir/agent-desktop/commit/cddc5d3547f058a78f8b398fa982e39a1fcbf6b1))
|
||||
* Phase 1 foundation — workspace scaffold, core engine, macOS adapter, 31 commands ([a346f24](https://github.com/lahfir/agent-desktop/commit/a346f242c25dfad1c849e6d50f9ab25a42b462d9))
|
||||
* smart AX-first click chain + macOS crate restructure ([4616c8f](https://github.com/lahfir/agent-desktop/commit/4616c8f65f974505b0eedb5485c865d3b905342b))
|
||||
* surface-targeted snapshot, menu wait, list-surfaces command ([39178b2](https://github.com/lahfir/agent-desktop/commit/39178b291602d192de97aa0150c261db1dcc7ca6))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add menubar surface, fix press --app crash and modifier mapping ([a231962](https://github.com/lahfir/agent-desktop/commit/a2319623b4d1d2b6b2f6e1a4ab9a8b8cbbfd02eb))
|
||||
* address code review findings (double-free, CF leaks, injection) ([2f495ff](https://github.com/lahfir/agent-desktop/commit/2f495ffb69be67f3136b076534e078cc31b005c2))
|
||||
* align error codes with spec (APP_NOT_FOUND, PERM_DENIED) and add -i shorthand ([6dc567a](https://github.com/lahfir/agent-desktop/commit/6dc567a4aedff15cf82a82601089cb0b87da4e26))
|
||||
* ancestor-path cycle detection + CGEvent click fallback ([198d7d7](https://github.com/lahfir/agent-desktop/commit/198d7d7d27167044a448b6616fa5c9c0554321bf))
|
||||
* detect open menus via AXMenuBarItem.AXSelected, not AXMenus attribute ([7f0d610](https://github.com/lahfir/agent-desktop/commit/7f0d6103d16969a0abfa84a62b6819dbd0d1cc8e))
|
||||
* make all 30 commands work end-to-end on macOS ([1d98ab8](https://github.com/lahfir/agent-desktop/commit/1d98ab828ce5bcb39e212548ae2f2a052e67aac9))
|
||||
* remove AXShowDefaultUI from activation chain, fix child walk ([74242f5](https://github.com/lahfir/agent-desktop/commit/74242f5040af9c46c98a3f5232dc7567538c28e1))
|
||||
* resolve all 47 code review findings from Phase 1 audit ([218503a](https://github.com/lahfir/agent-desktop/commit/218503a7ebacacd4fbc6b388a6cf5e3bb86af039))
|
||||
* right-click uses AXShowMenu; context menus detected via focused element ([2c9aee3](https://github.com/lahfir/agent-desktop/commit/2c9aee397912d6a903d9ef1e26c786697383ae95))
|
||||
* suppress dead_code lint on BatchCommand deserializer struct ([608d4aa](https://github.com/lahfir/agent-desktop/commit/608d4aaaa195b95626f17aa4bbca2d69609f14cc))
|
||||
* use simple release strategy for workspace version bumps ([0ab78dd](https://github.com/lahfir/agent-desktop/commit/0ab78dde0e1ff702db6c8b667784fa456245b26b))
|
||||
|
|
@ -6,7 +6,7 @@ resolver = "2"
|
|||
edition = "2021"
|
||||
rust-version = "1.78"
|
||||
license = "Apache-2.0"
|
||||
version = "0.1.0" # x-release-please-version
|
||||
version = "0.1.1" # x-release-please-version
|
||||
|
||||
[workspace.dependencies]
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "agent-desktop",
|
||||
"version": "0.0.0-development",
|
||||
"version": "0.1.1",
|
||||
"description": "AI agent tool for observing and controlling desktop applications via native OS accessibility trees",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue