From a221fc81c02019e9336f6853ad98c68784f3007d Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 27 May 2022 16:39:16 -0400 Subject: [PATCH] Removing the release date, as we now have the full build date in the manifest instead --- megamek/src/megamek/MegaMek.java | 4 ++-- megamek/src/megamek/SuiteConstants.java | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/megamek/src/megamek/MegaMek.java b/megamek/src/megamek/MegaMek.java index f38ce1b4539..c414d9d3c99 100644 --- a/megamek/src/megamek/MegaMek.java +++ b/megamek/src/megamek/MegaMek.java @@ -332,9 +332,9 @@ public static String getUnderlyingInformation(final String originProject) { public static String getUnderlyingInformation(final String originProject, final String currentProject) { final LocalDateTime buildDate = getBuildDate(); - return String.format("Starting %s v%s\n\tBuild Date: %s\n\tRelease Date: %s\n\tToday: %s\n\tOrigin Project: %s\n\tJava Vendor: %s\n\tJava Version: %s\n\tPlatform: %s %s (%s)\n\tSystem Locale: %s\n\tTotal memory available to %s: %,.0f GB", + return String.format("Starting %s v%s\n\tBuild Date: %s\n\tToday: %s\n\tOrigin Project: %s\n\tJava Vendor: %s\n\tJava Version: %s\n\tPlatform: %s %s (%s)\n\tSystem Locale: %s\n\tTotal memory available to %s: %,.0f GB", currentProject, MMConstants.VERSION, ((buildDate == null) ? "N/A" : buildDate), - MMConstants.RELEASE_DATE, LocalDate.now(), originProject, + LocalDate.now(), originProject, System.getProperty("java.vendor"), System.getProperty("java.version"), System.getProperty("os.name"), System.getProperty("os.version"), System.getProperty("os.arch"), Locale.getDefault(), currentProject, diff --git a/megamek/src/megamek/SuiteConstants.java b/megamek/src/megamek/SuiteConstants.java index bfc6c70afa0..f1a49eb844f 100644 --- a/megamek/src/megamek/SuiteConstants.java +++ b/megamek/src/megamek/SuiteConstants.java @@ -27,7 +27,6 @@ public abstract class SuiteConstants { //region General Constants public static final String PROJECT_NAME = "MegaMek Suite"; public static final Version VERSION = new Version("0.49.9-SNAPSHOT"); - public static final LocalDate RELEASE_DATE = LocalDate.of(2022, 5, 27); public static final int MAXIMUM_D6_VALUE = 6; // This is used in creating the name of save files, e.g. the MekHQ campaign file