From 8e90321a1074e2736a4c3ee7a4e446a98eca8674 Mon Sep 17 00:00:00 2001 From: Luca Fischer <45566784+LuggaPugga@users.noreply.github.com> Date: Sun, 16 Aug 2026 20:24:08 +0200 Subject: [PATCH] fix: update config version and terminology in SimpleConfig Updated CONFIG_VERSION to 3 and changed terminology from 'anonymous' to 'pseudonymous' in comments. --- config/src/main/java/dev/faststats/config/SimpleConfig.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/src/main/java/dev/faststats/config/SimpleConfig.java b/config/src/main/java/dev/faststats/config/SimpleConfig.java index 23f5074a..b5b72417 100644 --- a/config/src/main/java/dev/faststats/config/SimpleConfig.java +++ b/config/src/main/java/dev/faststats/config/SimpleConfig.java @@ -30,10 +30,10 @@ public record SimpleConfig( boolean errorTracking, boolean firstRun ) implements Config { - private static final int CONFIG_VERSION = 2; + private static final int CONFIG_VERSION = 3; private static final String COMMENT = """ - FastStats (https://faststats.dev) collects anonymous usage statistics and errors. + FastStats (https://faststats.dev) collects pseudonymous usage statistics and errors. # This helps developers understand how their projects are used in the real world. # # No IP addresses, player data, or personal information is collected. @@ -52,7 +52,7 @@ public record SimpleConfig( # For more information, visit: https://faststats.dev/info """; private static final String ONBOARDING_MESSAGE = """ - This plugin uses FastStats to collect anonymous usage statistics and errors. + This plugin uses FastStats to collect pseudonymous usage statistics and errors. No personal or identifying information is ever collected. To opt out, set 'enabled=false' in the metrics configuration file. Learn more at: https://faststats.dev/info