Skip to content

How can I disable auto-updating of a new download of BN? #1868

Answered by psifertex
gkprow asked this question in General
Discussion options

You must be logged in to vote

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:

{
	"updates" : 
	{
		"activeContent" : false
	}
}

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:

uppath=~/.binaryninja/update/`echo -en "/home/jordan/binaryninja"|shasum -a 256|cut -d' ' -f1`
mkdir -p $uppath
echo "{\"auto\":false,\"channel\":\"dev\",\"last_check\":`date +%s`,\"pending\":false}" > $uppath/manifest

If you've already got the API available you can also achie…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by psifertex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1868 on August 03, 2020 21:50.