slightly more informative update message in console (to differentiate from version)

This commit is contained in:
Ben Fry
2014-04-07 13:59:30 -04:00
parent cc890e79a0
commit 71d6d7bf78

View File

@@ -112,8 +112,9 @@ public class UpdateCheck {
boolean offerToUpdateContributions = true;
if (latest > Base.getRevision()) {
System.out.println("You are running Processing revision " +
Base.getRevision() + ", the latest is " + latest + ".");
System.out.println("You are running Processing revision 0" +
Base.getRevision() + ", the latest build is 0" +
latest + ".");
// Assume the person is busy downloading the latest version
offerToUpdateContributions = !promptToVisitDownloadPage();
}