if (host.indexOf(":") > -1) {
urlHost = "[" + host + "]";
}
final String testServer = "http://" + urlHost + "/";
final HttpClient httpClient = new HttpClient(testServer + "stendhal.version");
final String version = httpClient.fetchFirstLine();
if (version != null) {
if (!Version.checkCompatibility(version, stendhal.VERSION)) {
// custom title, warning icon
JOptionPane.showMessageDialog(
StendhalFirstScreen.get(),