- Initial release
- Added autocompletion for functions in the Functions Library defined by the user (note:
CfgFunctions.hpp
needs to be generated at least once after opening the editor for the autocompletion to work)
- Added an option/task to generate
CfgRemoteExec.hpp
template based on theCfgFunctions.hpp
- Note that you must generate the
CfgFunctions.hpp
at least once and make sure that the file is active by clicking on it in the editor view before you can run theGenerate CfgRemoteExec template (Arma 3)
task. (Ctrl
+Shift
+P
)
- Note that you must generate the
- Fixed IntelliSense suggestions. The editor/IntelliSense should now suggest autocompletion of defined functions properly when you start typing the full function name (starting from your developer tag/prefix).
- Added support for
postInit
andpreInit
attributes for functions. Name your functionfn_preInit_yourFunction.sqf
orfn_postInit_yourFunction.sqf
to include the needed attribute.
- Hotfix: missing semicolon when using attributes on core functions.
- Support for persistent remote execution framework (
CfgRemoteExec.hpp
) parameters (function targets and JIP (Join In Progress)) for added security.
- Fix showcase GIFs not showing.
- Add documentation with examples how to make the Remote Execution Framework's function parameters persistent. (See "Requirements" on the README page.)
- Make CfgRemoteExec.hpp generation more tolerant to typos/casing mistakes.
- Fix a bug that allowed user to define function as JIP (Join In Progress) one without allowed target(s) getting specified.