如何关闭升华2更新通知?

我在 Ubuntu 上使用 PPA 仓库安装了 Sublime 2,并通过这个原生的 Ubuntu 机制进行了更新,所以每次我启动 Sublime 时都会看到“新版本可用... ...”,这让我很恼火。我没有发现任何搜索“更新”在崇高的配置文件。我在哪里可以禁用通知?

42448 次浏览

This is a link to answer by Site Admin of Sublime Forum it seems like you have Dev version. http://www.sublimetext.com/forum/viewtopic.php?f=3&t=1776#p8152

This is quote from description of PPA repository: https://launchpad.net/~webupd8team/+archive/sublime-text-2

Sublime Text 2 packages - the .deb will automatically download the latest build from www.sublimetext.com/dev

You should install sublime from source.

I had the same issue, so I resorted to actually keeping mine updated (I update via the terminal with apt-get, but you're of course welcome to do it anyway you like, including the update manager). I'm not suggesting you update, but I do want to reassure you that the updates haven't created any trouble for me. No new problems after updating.

You can add this entry in your /etc/hosts file:

127.0.0.1       www.sublimetext.com

This will stop Sublime Text from accessing the update URL (http://www.sublimetext.com/updates/2/stable/updatecheck).

i disabled update popup by patching executable file with olly but it's only for win users. maybe you can do the same on ubuntu using different debugger tool, search for string "A new version is available...". The working version for win users: http://www22.zippyshare.com/v/51437901/file.html

There is update_check field in Sublime version 2.0.1 build 2217.

Just go to Preferences -> Settings-User and add there: "update_check": false

Sublime then stops checking for the new version.

enter image description here

Note that at least for some versions this check is deliberately broken during the evaluation period.

put this and it will work:

{
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_size": 13.0,
"update_check": false,
"ignored_packages":
[
"Vintage"
]
}

Note that at least for some versions this check is deliberately broken during evaluation period.

Use "apt-get install sublime-text" to update it. Preferences didn't help me.

Add the following to '/etc/hosts' which also applies to windows 'C:\Windows\System32\drivers\etc' file

    # This will block sublime text updates
127.0.0.1 sublimetext.com
127.0.0.1 www.sublimetext.com

Put These codes in sublime text editor as it is....

 {
// Sets the colors used within the text area
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",


"font_size": 11,
//sublime update check disable
"update_check": false,


"word_wrap": "true",




}

Go to preferences -> setting user And, Write the code :

"update_check":false,

This is the correct format for the problem of a version check in Sublime Text 3

{
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", "update_check": false
}

Note that at least for some versions this check is deliberately broken during evaluation period.

Just go to sublime and here go to Preferences -> Settings-User and add there: "update_check": false as given below

{ "font_size": 12, "update_check": false }