-
When a fresh instance of Binary Ninja is installed and the GUI is opened, the updater attempts to reach out to the update/download server to fetch and install the most recent available stable/dev build. It would be great if there was a config option available in settings.json that would prevent that behavior from occurring. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There's two possible ways you can achieve this. First, there's a global setting that you can disable all updates and even checking the changelog in settings.json via:
That said, this might disable more than you want, or you may wish the ability to only disable /some/ versions of BN. You can do that by separately setting the manifest for the update per-install path:
If you've already got the API available you can also achieve this per-install change via:
|
Beta Was this translation helpful? Give feedback.
There's two possible ways you can achieve this. First, there's a global setting that you can disable all updates and even checking the changelog in settings.json via:
That said, this might disable more than you want, or you may wish the ability to only disable /some/ versions of BN. You can do that by separately setting the manifest for the update per-install path:
If you've already got the API available you can also achie…