From 71d6d7bf78be5fe88a59dc653f68c49e85e17eaf Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 7 Apr 2014 13:59:30 -0400 Subject: [PATCH] slightly more informative update message in console (to differentiate from version) --- app/src/processing/app/UpdateCheck.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/src/processing/app/UpdateCheck.java b/app/src/processing/app/UpdateCheck.java index 86693e6a3..fe98fab2b 100644 --- a/app/src/processing/app/UpdateCheck.java +++ b/app/src/processing/app/UpdateCheck.java @@ -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(); }