Compare commits

...

3 Commits

Author SHA1 Message Date
Clive Galway cc40d7132a
Update CHANGELOG.md 1 year ago
Clive Galway 7f5cdacdff
Merge pull request #101 from bluechipps/fileinstall_fix_v2
FileInstall (v2) requires either overwrite parameter or to pass a non-existence check
1 year ago
Ryan c218f9f2b8
Update AutoHotInterception.ahk 1 year ago

@ -9,13 +9,13 @@ class AutoHotInterception {
if (A_IsCompiled) {
dllFile := A_LineFile "\..\Lib\" bitness "\" dllName
DirCreate("Lib")
FileInstall("Lib\AutoHotInterception.dll", "Lib\AutoHotInterception.dll")
FileInstall("Lib\AutoHotInterception.dll", "Lib\AutoHotInterception.dll", 1)
if (bitness == "x86") {
DirCreate("Lib\x86")
FileInstall("Lib\x86\interception.dll", "Lib\x86\interception.dll")
FileInstall("Lib\x86\interception.dll", "Lib\x86\interception.dll", 1)
} else {
DirCreate("Lib\x64")
FileInstall("Lib\x64\interception.dll", "Lib\x64\interception.dll")
FileInstall("Lib\x64\interception.dll", "Lib\x64\interception.dll", 1)
}
} else {
dllFile := A_LineFile "\..\" bitness "\" dllName
@ -261,4 +261,4 @@ class AutoHotInterception {
this.parent.Instance.RemoveContextCallback(this.id)
}
}
}
}

@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Deprecated
### Removed
### Fixed
- Compiled script (FileInstall) fix for AHK v2
## [0.9.0] - 2023-03-21
### Added

Loading…
Cancel
Save