"Execute on save" and Python 3.8 on Windows
This release introduces a new feature: "Execute on save" (#4). When saving a document in VS Code, IDACode will automatically send the saved script to IDA and execute it. This is by default enabled and can be disabled in the settings.
The following fixes were applied as well:
- This release also fixes a bug that prevented IDACode to work on Windows with Python 3.8. Thanks to @OevreFlataeker for PR #13!
- The well known Python global
__name__
is now populated with__main__
before the script is executed. See issue #14.