From 46fb6e881d2591136f1ca522f515419e0c0fbe20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 8 Nov 2014 17:02:49 +0100 Subject: [PATCH] new version dialog - no show revision id for nightly --- src/com/jpexs/decompiler/flash/gui/NewVersionDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/gui/NewVersionDialog.java b/src/com/jpexs/decompiler/flash/gui/NewVersionDialog.java index 2a39af5f7..ec22a1b5a 100644 --- a/src/com/jpexs/decompiler/flash/gui/NewVersionDialog.java +++ b/src/com/jpexs/decompiler/flash/gui/NewVersionDialog.java @@ -73,7 +73,7 @@ public class NewVersionDialog extends AppDialog implements ActionListener { changesStr += "
"; } first = false; - changesStr += "" + translate("version") + " " + v.versionName + (v.nightly ? " nightly " + v.revision : "") + "
"; + changesStr += "" + translate("version") + " " + v.versionName + (v.nightly ? " nightly":"") + "
"; String releaseDate = v.releaseDate; try { Date date = serverFormatter.parse(releaseDate);