public static void azcvsChangeLog_Downloader(){
Thread downloadThread = new Thread()
{
public void run()
{
AzchangelogGet azclogget = new AzchangelogGet();
azclogget.setURL("http://azcvsupdater.sourceforge.net/azcvsupdater/Changelog.txt");
azclogget.setDir(View.getPluginInterface().getPluginDirectoryName() + System.getProperty("file.separator"));
azclogget.setFileName("azcvsupdater_changelog.cache");
azclogget.initialize();
azclogget.start();
}
};
downloadThread.setDaemon(true);
downloadThread.start();