From 675982336ef7772ca635baca391c48fb868501b7 Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Tue, 27 Jun 2023 13:35:30 +0100 Subject: [PATCH] JAL-4001 Added useful props information --- src/jalview/analytics/Plausible.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/jalview/analytics/Plausible.java b/src/jalview/analytics/Plausible.java index e9a4785..ef4a701 100644 --- a/src/jalview/analytics/Plausible.java +++ b/src/jalview/analytics/Plausible.java @@ -85,6 +85,9 @@ public class Plausible System.getProperty("os.arch") + " " + System.getProperty("os.name") + " " + System.getProperty("os.version")); + defaultProps.put("os", System.getProperty("os.name")); + defaultProps.put("os_version", System.getProperty("os.version")); + defaultProps.put("os_arch", System.getProperty("os.arch")); String installation = Cache.applicationProperties .getProperty("INSTALLATION"); if (installation != null) -- 1.7.10.2