We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1116646 + f1fc8bb commit 3558cd5Copy full SHA for 3558cd5
1 file changed
ui/src/main/java/edu/wpi/grip/ui/ExceptionAlert.java
@@ -189,6 +189,7 @@ private String generateExceptionMessage(Throwable throwable) {
189
private String generateSystemInfoMessage() {
190
final StringBuilder systemInfo = new StringBuilder("## System Info:\n\n");
191
systemInfo.append("Property Name | Property \n ----- | -----\n");
192
+ systemInfo.append("GRIP Version | " + edu.wpi.grip.core.Main.class.getPackage().getImplementationVersion() + "\n");
193
for (String option : systemOptions) {
194
systemInfo.append(option).append(" | ").append(System.getProperty(option)).append("\n");
195
}
0 commit comments