You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows to store the plugin under %APPDATA%\Hex-Rays\IDA Pro\plugins , allowing switching IDA version without having to re-install/moving around files. Note that the change expects a cfg folder to be present inside the HexRaysPyTools folder. This breaks the convention of keeping the cfg inside the cfg folder but makes it easier to copy in between versions, especially with the increase of IDA releases(service packs)
The text was updated successfully, but these errors were encountered:
I would recommend changing the default config location in
settings.py
fromCONFIG_FILE_PATH = os.path.join(idc.idadir(), 'cfg', 'HexRaysPyTools.cfg')
to
CONFIG_FILE_PATH = os.path.join(os.path.dirname(__file__), 'cfg', 'HexRaysPyTools.cfg')
This allows to store the plugin under
%APPDATA%\Hex-Rays\IDA Pro\plugins
, allowing switching IDA version without having to re-install/moving around files. Note that the change expects acfg
folder to be present inside theHexRaysPyTools
folder. This breaks the convention of keeping thecfg
inside the cfg folder but makes it easier to copy in between versions, especially with the increase of IDA releases(service packs)The text was updated successfully, but these errors were encountered: