Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v6.4.2 - 2024-12-16 🎄 #579

Merged
merged 3 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 6.4.2 - 2024-12-16 🎄

- Reduce required VS Code version to 1.68 (#574)
- Update internal dependencies for security (#577)

## 6.4.1 - 2024-11-09 🛠️

### Known issues
Expand Down
6 changes: 3 additions & 3 deletions demos/manualTests/commands.ahk2
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

;* Export AHK Symbols should give ~45 lines for this
; And open in an unsaved new editor group
MyMsgBox(text) {
MyCommandMsgBox(text) {
MsgBox(text)
}

;* Stop AHK Script should work after starting via Run AHK Script
; Auto-closes MsgBox windows as well :)
MyMsgBox("Hello world!")
MyMsgBox("Hello again!")
MyCommandMsgBox("Hello world!")
MyCommandMsgBox("Hello again!")

;* Add Doc Comment should add and then go to doc comment
; todo Known issue with two args will be reported later
Expand Down
16 changes: 4 additions & 12 deletions demos/manualTests/config.ahk2
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,16 @@

;** AHK++.exclude tested via automated tests :)
; set AHK++.v2.general > librarySuggestions to All
; set exclude to "excluded.ahk"
; set AHK++.exclude to "excluded.ahk"
; see whether MyExcludedFunc is suggested (Ctrl+Space)
MyExclu

;** AHK++.general
;* showOutput
; always: shows on start
; never: never shows
; works only for running scripts
; running: output is in the Output view

; always
; never
y := 1
;* showOutput (tested via e2e tests)

; todo Completion Commit Characters (AHK++.v2.completionCommitCharacters) is untested for now

;** V2: Diagnostics (AHK++.v2.diagnostics)
; todo ** V2: Diagnostics (AHK++.v2.diagnostics)
; todo Class Non Dynamic Member Check is untested for now
; todo Params Check is untested for now

Expand Down Expand Up @@ -69,4 +61,4 @@ MyFunc() {

;* varUnset
; x := 1
MsgBox(x)
MsgBox(x)
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-autohotkey-plus-plus",
"displayName": "AHK++ (AutoHotkey Plus Plus)",
"version": "6.4.1",
"version": "6.4.2",
"description": "AutoHotkey v1 and v2 language support for Visual Studio Code: IntelliSense, debugging, formatting, and more!",
"categories": [
"Debuggers",
Expand Down
Loading