From 18615246e3b259faacbc97d97a34a72ef600195b Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Thu, 22 Jun 2023 16:06:40 +0100 Subject: [PATCH] JAL-4001 Added 'installation' property. --- src/jalview/analytics/Plausible.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/jalview/analytics/Plausible.java b/src/jalview/analytics/Plausible.java index daf2d9a..1f2754e 100644 --- a/src/jalview/analytics/Plausible.java +++ b/src/jalview/analytics/Plausible.java @@ -85,6 +85,12 @@ public class Plausible System.getProperty("os.arch") + " " + System.getProperty("os.name") + " " + System.getProperty("os.version")); + String installation = Cache.applicationProperties + .getProperty("INSTALLATION"); + if (installation != null) + { + defaultProps.put("installation", installation); + } // ascertain the API_BASE_URL API_BASE_URL = getAPIBaseURL(); -- 1.7.10.2