Merge pull request #787 from cyian-1756/updateBoxFixes

Fixed update box formating
This commit is contained in:
cyian-1756 2018-07-08 06:55:08 -04:00 committed by GitHub
commit f52cb3d515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,9 +128,9 @@ public class UpdateUtils {
logger.info("Found newer version: " + latestVersion); logger.info("Found newer version: " + latestVersion);
int result = JOptionPane.showConfirmDialog( int result = JOptionPane.showConfirmDialog(
null, null,
"<html><font color=\"green\">New version (" + latestVersion + ") is available!</font>" String.format("<html><font color=\"green\">New version (%s) is available!</font>"
+ "<br><br>Recent changes:" + changeList + "<br><br>Recent changes: %s"
+ "<br><br>Do you want to download and run the newest version?</html>", + "<br><br>Do you want to download and run the newest version?</html>", latestVersion, changeList.replaceAll("\n", "")),
"RipMe Updater", "RipMe Updater",
JOptionPane.YES_NO_OPTION); JOptionPane.YES_NO_OPTION);
if (result != JOptionPane.YES_OPTION) { if (result != JOptionPane.YES_OPTION) {