private int totalBytes = -1;
private boolean downloadCancelled = false;
public AutoUpdater(String updateServerUrl, String currentVersion) {
this.serverUrl = updateServerUrl; // may be null if updating is disabled
this.currentVersion = new Version(currentVersion);
}