Releases: mark-wiemer/ahkpp
Releases · mark-wiemer/ahkpp
6.7.0 - 2025-04-01 🤡
6.6.0 - 2025-03-21 🎩
All changes in 6.6.0 are exclusive to AHK v1.
- Improve extension performance when loading AHK v1 scripts (PR #615)
- Change
Method
toFunction
in document symbols and internal references. This changes the document outline slightly, but should not change most theme icons and is more correct. (PR #620) - Have scripts referenced by
#include
bypass theexclude
setting (PR #623) - Add experimental
funcDefSearch
setting that improves function definition resolution. For known issues, seesettings.md
. (PR #623)
6.5.0 - 2025-02-23 💞
Debugger
- Add docs/debugging.md and docs/_welcome.md
- Fix
.vscode/launch.json
support for AHK v1 (Issue #603) - Add
.vscode/launch.json
support for AHK v2 (Issue #603) - Change "AutoHotkey execute bin not found: ..." to "AutoHotkey interpreter not found" with a preceding message showing the interpreter path. (PR #606)
- Remove the
runtime
argument fromlaunch.json
for both AHK v1 and AHK v2 due to issues with cross-version debugging (PR #606)- We are not considering this a breaking change as this behavior didn't work before. If you'd like to use different AHK interpreters across different workspaces, use IDE workspace settings. If you'd like to use different AHK interpreters within a single workspace, please open a discussion and we'll be happy to help.
IntelliSense
- Add detailed
__New
docs forInputHook
and basic__New
docs for allObject
descendants that didn't have it (Issue #586)
6.4.3 - 2025-01-18 🎆
- Fix IniWrite IntelliSense (#590)
- Add comprehensive settings reference in Markdown and improve docs within the settings editor (#581)
- Update internal dependencies to Node 22, npm 11, and Mocha 11 to improve developer security and developer experience (#583)
6.4.2 - 2024-12-16 🎄
6.4.1 - 2024-11-09 🛠️
Known issues
- If your AHK v2 interpreter is not recognized and you try to debug an AHK v2 script, an "AutoHotkey execute bin not found: ..." output log will appear and take focus in the AHK++ (v1) output channel (open issue #570)
- The "Select AHK v2 interpreter" command does not work, instead please try to run (not debug) an AHK v2 script and use the quick pick from the "... does not exist" error message (open issue #571)
Fixes
- Add troubleshooting guide
- Fix go to definition in AHK v1 files (#559)
- Remove unnecessary error message "Couldn't resolve AHK v2 interpreter" (#493)
- This has been moved to a output log visible in the AHK++ (v2) output channel
- A "... does not exist" error message will still appear when trying to run an AHK v2 script with an unrecognized interpreter path
- Fix quick pick for "... does not exist" error message on run AHK v2 script (PR #569)
Note: this fix copies your config into your workspace settings. If you don't like this, please manually enter the path via the settings, and don't use the quick pick. Learn more at PR #569.
6.4.0 - 2024-11-02 🗳️
New features
- Hovering over a filename in an
#include
directive now provides a link to that document in your IDE- If the file doesn't exist, the underline doesn't appear
- Does not work for
#include <lib>
syntax yet.
Bugfixes
- Update thqby's extension from 2.5.3 to 2.5.4, adding new bugfixes
- Improve "go to definition" in v2 files (thqby #610)
- Improve environment variables when debugging via IDE for parity with running outside of IDE (thqby #615)
- Add hover tip for
switch
keyword in v2 files (thqby #623)
6.3.0 - 2024-10-19 🕳️
New features
- Rewrite AutoHotkey v2 definition files using GroggyOtter's syntaxes (#521)
- Add exclude setting (#488)
- Excluded files are not included in IntelliSense completion suggestions, even when they're added via
#include
- Changed
v2.exclude
setting toexclude
- One setting works for both v1 and v2
- Changes to this setting take effect immediately, no need to restart your IDE (different than thqby's extension)
- v2 will exclude excluded files from suggestions even if they're opened in the IDE (different than thqby's extension)
- v1 no longer automatically ignores files with
out
,target
, ornode_modules
in their name
- Excluded files are not included in IntelliSense completion suggestions, even when they're added via
Fixes
- Fix v1 formatter removing extra spaces in strings (#411)
- Fix v2 formatter moving closing brackets/braces when
arrayStyle
orobjectStyle
were set to "none" (the default) (#499) - Fixup output channel names: "AHK++ (v1)" and "AHK++ (v2)" instead of "AHK" and "AHK++" respectively
- Fix duplicate output channels (the "AHK" channel used to be created twice)
Other
- Rename extension to
AHK++ (AutoHotkey Plus Plus)
to provide a clear short name while retaining previous brand- In 6.2.0, only the settings were renamed. This release renames the extension display name on registries as well.
6.2.3 - 2024-10-08 📖
- Restore readme to marketplaces once again (#537)
- Link to external licenses for better context
Developer changes
- Update workflows to have consistent filenames and workflow names
- Update actions in workflows to latest stable versions
6.2.2 - 2024-10-07 🤏
- Reduce extension size on marketplaces by ~100x (yes, really) (#533)