From 1ca943ab5193d435b1c34b6c0edde02f86cec52d Mon Sep 17 00:00:00 2001 From: Brian Neumann-Fopiano Date: Fri, 28 Aug 2026 16:29:33 -0400 Subject: [PATCH] Remove Sentry - Remove automatic error reporting and server-identifying attachments. - Remove Sentry dependencies, release tooling, settings, and test commands. - Keep failures operator-visible through local stack traces and logging. --- adapters/bukkit/plugin/build.gradle | 1 - .../src/main/java/art/arcane/iris/Iris.java | 5 +- .../iris/core/commands/CommandDeveloper.java | 14 ---- adapters/fabric/build.gradle | 4 +- adapters/forge/build.gradle | 4 +- .../iris/modded/ModdedEngineBootstrap.java | 2 - .../arcane/iris/modded/ModdedPlatform.java | 18 +---- .../art/arcane/iris/modded/ModdedSentry.java | 81 ------------------- .../modded/command/ModdedCommandHelp.java | 3 +- .../command/ModdedDeveloperCommands.java | 9 --- adapters/neoforge/build.gradle | 4 +- build.gradle | 35 -------- .../src/main/java/BukkitArtifactVerifier.java | 1 - core/build.gradle | 33 -------- core/purity-allowlist.txt | 2 - .../art/arcane/iris/core/IrisSettings.java | 9 --- .../localization/DirectorCommandMessages.java | 5 -- .../localization/ModdedCommandMessages.java | 5 -- .../core/localization/ModdedHelpMessages.java | 11 +-- .../iris/util/common/misc/Bindings.java | 67 +-------------- .../iris/util/project/sentry/Attachments.java | 43 ---------- .../iris/util/project/sentry/IrisLogger.java | 47 ----------- .../iris/util/project/sentry/ServerID.java | 65 --------------- core/src/main/resources/languages/de_DE.json | 5 +- core/src/main/resources/languages/es_ES.json | 5 +- core/src/main/resources/languages/fi_FI.json | 5 +- core/src/main/resources/languages/fr_FR.json | 5 +- core/src/main/resources/languages/he_IL.json | 5 +- core/src/main/resources/languages/it_IT.json | 5 +- core/src/main/resources/languages/ja-JP.json | 5 +- core/src/main/resources/languages/ko_KR.json | 5 +- core/src/main/resources/languages/lt_LT.json | 5 +- core/src/main/resources/languages/nl_NL.json | 5 +- core/src/main/resources/languages/pl_PL.json | 5 +- core/src/main/resources/languages/pt_PT.json | 5 +- core/src/main/resources/languages/ru_RU.json | 5 +- core/src/main/resources/languages/tr_TR.json | 5 +- core/src/main/resources/languages/vi_VI.json | 5 +- core/src/main/resources/languages/zh_CN.json | 5 +- core/src/main/resources/languages/zh_TW.json | 5 +- .../core/localization/IrisLanguageTest.java | 3 +- gradle/libs.versions.toml | 6 -- probe/build.gradle | 1 - .../main/resources/classload-allowlist.tsv | 1 - 44 files changed, 31 insertions(+), 533 deletions(-) delete mode 100644 adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedSentry.java delete mode 100644 core/src/main/java/art/arcane/iris/util/project/sentry/Attachments.java delete mode 100644 core/src/main/java/art/arcane/iris/util/project/sentry/IrisLogger.java delete mode 100644 core/src/main/java/art/arcane/iris/util/project/sentry/ServerID.java diff --git a/adapters/bukkit/plugin/build.gradle b/adapters/bukkit/plugin/build.gradle index 88404947e..f5033c170 100644 --- a/adapters/bukkit/plugin/build.gradle +++ b/adapters/bukkit/plugin/build.gradle @@ -21,7 +21,6 @@ dependencies { testImplementation('org.mockito:mockito-core:5.23.0') testImplementation(libs.paper.api) testImplementation(libs.bstats) - testImplementation(libs.sentry) testImplementation(project(':core')) testImplementation(volmLibCoordinate) { transitive = false diff --git a/adapters/bukkit/plugin/src/main/java/art/arcane/iris/Iris.java b/adapters/bukkit/plugin/src/main/java/art/arcane/iris/Iris.java index 15ddaacf6..6180a12bf 100644 --- a/adapters/bukkit/plugin/src/main/java/art/arcane/iris/Iris.java +++ b/adapters/bukkit/plugin/src/main/java/art/arcane/iris/Iris.java @@ -423,7 +423,6 @@ public class Iris extends VolmitPlugin implements Listener, ReloadAware { return; } - Bindings.capture(e); boolean debug = false; if (instance != null) { try { @@ -455,6 +454,8 @@ public class Iris extends VolmitPlugin implements Listener, ReloadAware { Iris.debug("Exception Logged: " + e.getClass().getSimpleName() + ": " + C.RESET + "" + C.LIGHT_PURPLE + e.getMessage()); } + + e.printStackTrace(System.err); } public static void reportError(String context, Throwable e) { @@ -473,7 +474,6 @@ public class Iris extends VolmitPlugin implements Listener, ReloadAware { } reportError(error); - error.printStackTrace(System.err); } public static void dump() { @@ -606,7 +606,6 @@ public class Iris extends VolmitPlugin implements Listener, ReloadAware { SimdSupport.install(); services = new KMap<>(); BukkitPlatform.hostHud(new HudActionBar(this), new HudBossBarLane()); - Bindings.setupSentry(); // Explicit, ordered service list: the previous reflective jar scan gave hash-ordered // enable/disable and paid a full-jar class sweep at boot. Infrastructure first, // engine/world services next, commands last. diff --git a/adapters/bukkit/plugin/src/main/java/art/arcane/iris/core/commands/CommandDeveloper.java b/adapters/bukkit/plugin/src/main/java/art/arcane/iris/core/commands/CommandDeveloper.java index d821b1acc..3789cdb0f 100644 --- a/adapters/bukkit/plugin/src/main/java/art/arcane/iris/core/commands/CommandDeveloper.java +++ b/adapters/bukkit/plugin/src/main/java/art/arcane/iris/core/commands/CommandDeveloper.java @@ -34,7 +34,6 @@ import art.arcane.iris.engine.IrisEngineMantle; import art.arcane.iris.engine.framework.Engine; import art.arcane.iris.engine.object.IrisDimension; import art.arcane.iris.engine.platform.PlatformChunkGenerator; -import art.arcane.iris.util.project.context.IrisContext; import art.arcane.iris.util.project.matter.IrisMatterContext; import art.arcane.iris.util.common.director.DirectorExecutor; import art.arcane.volmlib.util.director.DirectorOrigin; @@ -79,19 +78,6 @@ public class CommandDeveloper implements DirectorExecutor { .engineStatus(sender()); } - @Director(description = "Send a test exception to sentry", descriptionKey = "iris.director.commanddeveloper.director.send_test_exception_sentry") - public void Sentry() { - Engine engine = engine(); - Exception testException = new Exception("This is a test"); - if (engine == null) { - Iris.reportError(testException); - return; - } - try (IrisContext.Scope scope = IrisContext.open(engine, engine.getGenerationSessionId(), null)) { - Iris.reportError(testException); - } - } - @Director(description = "Hash generated block output of a fixed area for determinism/identity testing", descriptionKey = "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing", origin = DirectorOrigin.BOTH) public void genhash( @Param(description = "The world to hash", descriptionKey = "iris.director.commanddeveloper.param.world_hash", contextual = true, contextualOverride = true) diff --git a/adapters/fabric/build.gradle b/adapters/fabric/build.gradle index de22ce325..3a5ae6c9d 100644 --- a/adapters/fabric/build.gradle +++ b/adapters/fabric/build.gradle @@ -162,8 +162,7 @@ dependencies { libs.lru, libs.caffeine, libs.dom4j, - libs.jaxen, - libs.sentry + libs.jaxen ] shared.each { Object notation -> add('bundle', notation) @@ -271,7 +270,6 @@ tasks.named('shadowJar', ShadowJar).configure { exclude('art/arcane/iris/platform/bukkit/**') duplicatesStrategy = DuplicatesStrategy.EXCLUDE relocate('org.objectweb.asm', 'art.arcane.iris.shadow.asm') - relocate('io.sentry', 'art.arcane.iris.shadow.sentry') // Split-package guard. A co-installed mod that ships any of these at their original coordinates // puts two copies of the same package on one module layer, which the loaders reject at boot // (Terra ships paralithic; caffeine and dom4j are common in mod dependency trees). First-party diff --git a/adapters/forge/build.gradle b/adapters/forge/build.gradle index 832c1c97e..67df127f7 100644 --- a/adapters/forge/build.gradle +++ b/adapters/forge/build.gradle @@ -161,8 +161,7 @@ dependencies { libs.lru, libs.caffeine, libs.dom4j, - libs.jaxen, - libs.sentry + libs.jaxen ] shared.each { Object notation -> add('bundle', notation) @@ -263,7 +262,6 @@ tasks.named('shadowJar', ShadowJar).configure { exclude('art/arcane/iris/platform/bukkit/**') duplicatesStrategy = DuplicatesStrategy.EXCLUDE relocate('org.objectweb.asm', 'art.arcane.iris.shadow.asm') - relocate('io.sentry', 'art.arcane.iris.shadow.sentry') // Split-package guard. A co-installed mod that ships any of these at their original coordinates // puts two copies of the same package on one module layer, which the loaders reject at boot // (Terra ships paralithic; caffeine and dom4j are common in mod dependency trees). First-party diff --git a/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedEngineBootstrap.java b/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedEngineBootstrap.java index c00959c7c..9eaf970d5 100644 --- a/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedEngineBootstrap.java +++ b/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedEngineBootstrap.java @@ -113,7 +113,6 @@ public final class ModdedEngineBootstrap { bindWorldGenerators(server); services().enableAll(); ModdedProtocolHandler.start(server); - ModdedSentry.start(loader()); } private static void bindWorldGenerators(MinecraftServer server) { @@ -194,7 +193,6 @@ public final class ModdedEngineBootstrap { MultiBurst.burst.close(); MultiBurst.ioBurst.close(); }); - failure = runStopStage(failure, "sentry", ModdedSentry::flush); failure = runStopStage(failure, "startup state", ModdedStartup::reset); failure = runStopStage(failure, "server state", () -> { currentServer = null; diff --git a/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedPlatform.java b/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedPlatform.java index fe2c9420b..cdb1b3e1c 100644 --- a/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedPlatform.java +++ b/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedPlatform.java @@ -47,7 +47,6 @@ public final class ModdedPlatform implements IrisPlatform { private static final ConcurrentHashMap ERROR_THROTTLES = new ConcurrentHashMap<>(); private static volatile Consumer ERROR_SINK = null; - private static volatile Consumer CAPTURE_SINK = null; private final ModdedLoader loader; private final ModdedRegistries registries; @@ -67,10 +66,6 @@ public final class ModdedPlatform implements IrisPlatform { ERROR_SINK = sink; } - public static void captureSink(Consumer sink) { - CAPTURE_SINK = sink; - } - public MinecraftServer server() { return ModdedEngineBootstrap.currentServer(); } @@ -230,9 +225,8 @@ public final class ModdedPlatform implements IrisPlatform { } /** - * Throttled per exception signature. A single broken pack rule can fail on every generated chunk, and this - * feeds Sentry, so each distinct signature reports its first few occurrences and then only a periodic - * suppressed-count summary. + * Throttled per exception signature. A single broken pack rule can fail on every generated chunk, so each + * distinct signature reports its first few occurrences and then only a periodic suppressed-count summary. */ @Override public void reportError(Throwable error) { @@ -261,14 +255,6 @@ public final class ModdedPlatform implements IrisPlatform { return; } ModdedIrisLog.error(message, error); - Consumer capture = CAPTURE_SINK; - if (capture != null) { - try { - capture.accept(error); - } catch (Throwable captureFailure) { - ModdedIrisLog.error("Iris error-reporting sink failed", captureFailure); - } - } } static void resetErrorThrottles() { diff --git a/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedSentry.java b/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedSentry.java deleted file mode 100644 index fcb1b6aeb..000000000 --- a/adapters/modded-common/src/main/java/art/arcane/iris/modded/ModdedSentry.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Iris is a World Generator for Minecraft Servers - * Copyright (c) 2026 Arcane Arts (Volmit Software) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package art.arcane.iris.modded; - -import art.arcane.iris.BuildConstants; -import art.arcane.iris.core.IrisSettings; -import art.arcane.iris.spi.IrisLogging; -import art.arcane.volmlib.util.json.JSONException; -import com.google.gson.JsonSyntaxException; -import io.sentry.Sentry; - -import java.util.concurrent.atomic.AtomicBoolean; - -public final class ModdedSentry { - private static final String DSN = "http://4cdbb9ac953306529947f4ca1e8e6b26@sentry.volmit.com:8080/2"; - private static final long FLUSH_TIMEOUT_MS = 2000L; - private static final AtomicBoolean STARTED = new AtomicBoolean(false); - - private ModdedSentry() { - } - - public static void start(ModdedLoader loader) { - IrisSettings.IrisSettingsSentry settings = IrisSettings.get().getSentry(); - if (settings.disableAutoReporting || Sentry.isEnabled() || Boolean.getBoolean("iris.suppressReporting")) { - return; - } - if (!STARTED.compareAndSet(false, true)) { - return; - } - IrisLogging.info("Enabling Sentry for anonymous error reporting. You can disable this in the settings."); - Sentry.init(options -> { - options.setDsn(DSN); - if (settings.debug) { - options.setDebug(true); - } - options.setAttachServerName(false); - options.setEnableUncaughtExceptionHandler(false); - options.setRelease(loader.modVersion()); - options.setEnvironment(BuildConstants.ENVIRONMENT); - options.setBeforeSend((event, hint) -> suppress(event.getThrowable()) ? null : event); - }); - Sentry.configureScope(scope -> { - scope.setTag("server", loader.platformName()); - scope.setTag("server.mc", loader.minecraftVersion()); - scope.setTag("iris.loader", loader.platformName()); - scope.setTag("iris.commit", BuildConstants.COMMIT); - }); - ModdedPlatform.captureSink(Sentry::captureException); - } - - public static void flush() { - if (Sentry.isEnabled()) { - Sentry.flush(FLUSH_TIMEOUT_MS); - Sentry.close(); - } - ModdedPlatform.captureSink(null); - STARTED.set(false); - } - - private static boolean suppress(Throwable error) { - return (error instanceof IllegalStateException state && "zip file closed".equals(state.getMessage())) - || error instanceof JSONException - || error instanceof JsonSyntaxException; - } -} diff --git a/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedCommandHelp.java b/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedCommandHelp.java index 254120a45..719c2b0c8 100644 --- a/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedCommandHelp.java +++ b/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedCommandHelp.java @@ -87,7 +87,7 @@ final class ModdedCommandHelp { Entry.group("datapack", ModdedHelpMessages.GROUP_DATAPACK_WORLD_DATAPACK_INSTALL_AND_STATUS_HELPERS, "datapacks", "dp"), Entry.group("structure", ModdedHelpMessages.GROUP_STRUCTURE_IRIS_STRUCTURE_INDEX_INFO_AND_PLACEMENT_TOOLS, "struct", "str"), Entry.command("goldenhash", "[radius] [threads] [capture|verify]", ModdedHelpMessages.COMMAND_GOLDENHASH_GENERATE_DETERMINISTIC_BLOCK_HASHES_FOR_PARITY_TESTING, "gold"), - Entry.group("developer", ModdedHelpMessages.GROUP_DEVELOPER_DEVELOPER_DIAGNOSTICS_SENTRY_TEST_NETWORK_INTERFACES_REGION_FILE_SCAN, "dev") + Entry.group("developer", ModdedHelpMessages.GROUP_DEVELOPER_DEVELOPER_DIAGNOSTICS_NETWORK_INTERFACES_REGION_FILE_SCAN, "dev") )); SECTIONS.put("what", List.of( Entry.command("here", "", ModdedHelpMessages.COMMAND_WHAT_HERE_INSPECT_CURRENT_IRIS_CONTEXT), @@ -197,7 +197,6 @@ final class ModdedCommandHelp { SECTIONS.put("struct", SECTIONS.get("structure")); SECTIONS.put("str", SECTIONS.get("structure")); SECTIONS.put("developer", List.of( - Entry.command("sentry", "", ModdedHelpMessages.COMMAND_SENTRY_SEND_A_TEST_EXCEPTION_TO_THE_IRIS_ERROR_REPORTER), Entry.command("network", "", ModdedHelpMessages.COMMAND_NETWORK_LIST_NETWORK_INTERFACES_AND_THEIR_ADDRESSES, "ip") )); SECTIONS.put("dev", SECTIONS.get("developer")); diff --git a/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedDeveloperCommands.java b/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedDeveloperCommands.java index 2c6ccd6e8..1188d9cc3 100644 --- a/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedDeveloperCommands.java +++ b/adapters/modded-common/src/main/java/art/arcane/iris/modded/command/ModdedDeveloperCommands.java @@ -19,7 +19,6 @@ package art.arcane.iris.modded.command; import art.arcane.iris.modded.ModdedIrisLog; -import art.arcane.iris.spi.IrisPlatforms; import com.mojang.brigadier.builder.LiteralArgumentBuilder; import com.mojang.brigadier.context.CommandContext; import net.minecraft.commands.CommandSourceStack; @@ -44,20 +43,12 @@ final class ModdedDeveloperCommands { static LiteralArgumentBuilder tree(String name) { return Commands.literal(name).requires(GATE) .executes((CommandContext context) -> ModdedCommandHelp.send(context.getSource(), "developer")) - .then(Commands.literal("sentry") - .executes((CommandContext context) -> sentry(context.getSource()))) .then(Commands.literal("network") .executes((CommandContext context) -> network(context.getSource()))) .then(Commands.literal("ip") .executes((CommandContext context) -> network(context.getSource()))); } - private static int sentry(CommandSourceStack source) { - IrisPlatforms.get().reportError(new Exception("This is an Iris Sentry test exception")); - ModdedCommandFeedback.ok(source, IrisLanguage.plain(ModdedCommandMessages.MODDED_DEVELOPER_COMMANDS_DISPATCHED_TEST_EXCEPTION_IRIS_ERROR_REPORTER_SENTRY_IF_ENABLED)); - return 1; - } - private static int network(CommandSourceStack source) { try { Enumeration interfaces = NetworkInterface.getNetworkInterfaces(); diff --git a/adapters/neoforge/build.gradle b/adapters/neoforge/build.gradle index 3177a6e89..3c3da576b 100644 --- a/adapters/neoforge/build.gradle +++ b/adapters/neoforge/build.gradle @@ -131,8 +131,7 @@ dependencies { libs.lru, libs.caffeine, libs.dom4j, - libs.jaxen, - libs.sentry + libs.jaxen ] shared.each { Object notation -> add('bundle', notation) @@ -239,7 +238,6 @@ tasks.named('shadowJar', ShadowJar).configure { exclude('art/arcane/iris/platform/bukkit/**') duplicatesStrategy = DuplicatesStrategy.EXCLUDE relocate('org.objectweb.asm', 'art.arcane.iris.shadow.asm') - relocate('io.sentry', 'art.arcane.iris.shadow.sentry') // Split-package guard. A co-installed mod that ships any of these at their original coordinates // puts two copies of the same package on one module layer, which the loaders reject at boot // (Terra ships paralithic; caffeine and dom4j are common in mod dependency trees). First-party diff --git a/build.gradle b/build.gradle index 275fdf66e..aa166e941 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,3 @@ -import de.undercouch.gradle.tasks.download.Download import org.gradle.api.plugins.JavaPlugin import org.gradle.api.tasks.Copy import org.gradle.api.tasks.compile.JavaCompile @@ -39,7 +38,6 @@ buildscript { plugins { id 'java' id 'java-library' - alias(libs.plugins.download) } group = 'art.arcane' @@ -725,39 +723,6 @@ tasks.register('irisDev', Copy) { dependsOn(':core:javadocJar') } -def cli = file('sentry-cli.exe') -tasks.register('downloadCli', Download) { - group = 'io.sentry' - src("https://release-registry.services.sentry.io/apps/sentry-cli/latest?response=download&arch=x86_64&platform=${System.getProperty('os.name')}&package=sentry-cli") - dest(cli) - - doLast { - cli.setExecutable(true) - } -} - -tasks.register('release') { - group = 'io.sentry' - dependsOn('downloadCli') - doLast { - String url = 'http://sentry.volmit.com:8080' - def authToken = project.findProperty('sentry.auth.token') ?: System.getenv('SENTRY_AUTH_TOKEN') - String org = 'sentry' - String projectName = 'iris' - runCommand(cli, '--url', url, '--auth-token', authToken, 'releases', 'new', '-o', org, '-p', projectName, version) - runCommand(cli, '--url', url, '--auth-token', authToken, 'releases', 'set-commits', '-o', org, '-p', projectName, version, '--auto', '--ignore-missing') - //exec(cli, "--url", url, "--auth-token", authToken, "releases", "finalize", "-o", org, "-p", projectName, version) - cli.delete() - } -} - -void runCommand(Object... command) { - Process process = new ProcessBuilder(command.collect { it.toString() }).start() - process.inputStream.readLines().each { println(it) } - process.errorStream.readLines().each { println(it) } - process.waitFor() -} - configurations.configureEach { resolutionStrategy.cacheChangingModulesFor(0, 'seconds') resolutionStrategy.cacheDynamicVersionsFor(0, 'seconds') diff --git a/buildSrc/src/main/java/BukkitArtifactVerifier.java b/buildSrc/src/main/java/BukkitArtifactVerifier.java index b86173d8c..17bbcaef1 100644 --- a/buildSrc/src/main/java/BukkitArtifactVerifier.java +++ b/buildSrc/src/main/java/BukkitArtifactVerifier.java @@ -29,7 +29,6 @@ public final class BukkitArtifactVerifier { "art/arcane/iris/util/paper/", "art/arcane/iris/util/kyori/", "art/arcane/iris/util/metrics/", - "art/arcane/iris/util/sentry/", "art/arcane/iris/util/maven/", "art/arcane/iris/util/plexus/", "art/arcane/iris/util/sisu/", diff --git a/core/build.gradle b/core/build.gradle index d83c5df85..ccd2ac5a2 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -1,5 +1,4 @@ import io.github.slimjar.resolver.data.Mirror -import org.gradle.api.Task import org.gradle.api.tasks.Copy import org.gradle.api.tasks.TaskProvider import org.gradle.api.tasks.compile.JavaCompile @@ -31,7 +30,6 @@ plugins { id 'java' id 'java-library' alias(libs.plugins.shadow) - alias(libs.plugins.sentry) alias(libs.plugins.slimjar) } @@ -39,8 +37,6 @@ def lib = 'art.arcane.iris.util' String volmLibCoordinate = providers.gradleProperty('volmLibCoordinate') .orElse('com.github.VolmitSoftware:VolmLib:e6574cf814b3dd670385a4d632a63fde2038e186') .get() -String sentryAuthToken = findProperty('sentry.auth.token') as String ?: System.getenv('SENTRY_AUTH_TOKEN') -boolean hasSentryAuthToken = sentryAuthToken != null && !sentryAuthToken.isBlank() /** * Dependencies. @@ -97,8 +93,6 @@ dependencies { slim(libs.adventure.serializer.legacy) slim(libs.adventure.serializer.plain) slim(libs.bstats) - slim(libs.sentry) - slim(libs.commons.io) slim(libs.commons.lang3) slim(libs.oshi) @@ -134,16 +128,6 @@ java { } } -sentry { - url = 'http://sentry.volmit.com:8080' - autoInstallation.enabled = false - includeSourceContext = true - - org = 'sentry' - projectName = 'iris' - authToken = sentryAuthToken -} - slimJar { mirrors = [ new Mirror( @@ -158,7 +142,6 @@ slimJar { relocate('io.papermc.lib', "${lib}.paper") relocate('net.kyori', "${lib}.kyori") relocate('org.bstats', "${lib}.metrics") - relocate('io.sentry', "${lib}.sentry") relocate('org.apache.maven', "${lib}.maven") relocate('org.codehaus.plexus', "${lib}.plexus") relocate('org.eclipse.sisu', "${lib}.sisu") @@ -464,22 +447,6 @@ tasks.named('shadowJar', com.github.jengelman.gradle.plugins.shadow.tasks.Shadow } } -tasks.named('sentryCollectSourcesJava').configure { - dependsOn(generateTemplates) -} - -tasks.named('generateSentryBundleIdJava').configure { - dependsOn(generateTemplates) -} - -tasks.matching { Task task -> - task.name.startsWith('sentry') || task.name.startsWith('generateSentry') -}.configureEach { - onlyIf { - hasSentryAuthToken - } -} - rootProject.tasks.matching { it.name == 'prepareKotlinBuildScriptModel' }.configureEach { diff --git a/core/purity-allowlist.txt b/core/purity-allowlist.txt index 31a622766..e0b8379a5 100644 --- a/core/purity-allowlist.txt +++ b/core/purity-allowlist.txt @@ -187,5 +187,3 @@ art/arcane/iris/util/project/matter/IrisMatterSupport.java art/arcane/iris/util/project/matter/WorldMatter.java art/arcane/iris/util/project/matter/slices/EntityMatter.java art/arcane/iris/util/project/matter/slices/TileMatter.java -art/arcane/iris/util/project/sentry/Attachments.java -art/arcane/iris/util/project/sentry/ServerID.java diff --git a/core/src/main/java/art/arcane/iris/core/IrisSettings.java b/core/src/main/java/art/arcane/iris/core/IrisSettings.java index a3996e6da..da75c4be5 100644 --- a/core/src/main/java/art/arcane/iris/core/IrisSettings.java +++ b/core/src/main/java/art/arcane/iris/core/IrisSettings.java @@ -47,7 +47,6 @@ public class IrisSettings { private IrisSettingsStudio studio = new IrisSettingsStudio(); private IrisSettingsPerformance performance = new IrisSettingsPerformance(); private IrisSettingsPregen pregen = new IrisSettingsPregen(); - private IrisSettingsSentry sentry = new IrisSettingsSentry(); private IrisSettingsTreeFeller treeFeller = new IrisSettingsTreeFeller(); public static int getThreadCount(int c) { @@ -182,7 +181,6 @@ public class IrisSettings { studio = studio == null ? new IrisSettingsStudio() : studio; performance = performance == null ? new IrisSettingsPerformance() : performance; pregen = pregen == null ? new IrisSettingsPregen() : pregen; - sentry = sentry == null ? new IrisSettingsSentry() : sentry; treeFeller = treeFeller == null ? new IrisSettingsTreeFeller() : treeFeller; } @@ -340,13 +338,6 @@ public class IrisSettings { } } - @Data - public static class IrisSettingsSentry { - public boolean includeServerId = true; - public boolean disableAutoReporting = false; - public boolean debug = false; - } - @Data public static class IrisSettingsGUI { public boolean useServerLaunchedGuis = true; diff --git a/core/src/main/java/art/arcane/iris/core/localization/DirectorCommandMessages.java b/core/src/main/java/art/arcane/iris/core/localization/DirectorCommandMessages.java index f2f4986df..6f1dd4393 100644 --- a/core/src/main/java/art/arcane/iris/core/localization/DirectorCommandMessages.java +++ b/core/src/main/java/art/arcane/iris/core/localization/DirectorCommandMessages.java @@ -38,10 +38,6 @@ public final class DirectorCommandMessages { "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count", "Get Loaded TectonicPlates Count" ); - public static final TextKey COMMAND_DEVELOPER_DIRECTOR_SEND_TEST_EXCEPTION_SENTRY = TextKey.of( - "iris.director.commanddeveloper.director.send_test_exception_sentry", - "Send a test exception to sentry" - ); public static final TextKey COMMAND_DEVELOPER_DIRECTOR_HASH_GENERATED_BLOCK_OUTPUT_FIXED_AREA_DETERMINISM_IDENTITY_TESTING = TextKey.of( "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing", "Hash generated block output of a fixed area for determinism/identity testing" @@ -876,7 +872,6 @@ public final class DirectorCommandMessages { COMMAND_DATAPACK_PARAM_DATAPACK_ID_FOLDER_NAME_SHOWN_BY_IRIS_DATAPACK_LIST, COMMAND_DEVELOPER_DIRECTOR_IRIS_WORLD_MANAGER, COMMAND_DEVELOPER_DIRECTOR_GET_LOADED_TECTONICPLATES_COUNT, - COMMAND_DEVELOPER_DIRECTOR_SEND_TEST_EXCEPTION_SENTRY, COMMAND_DEVELOPER_DIRECTOR_HASH_GENERATED_BLOCK_OUTPUT_FIXED_AREA_DETERMINISM_IDENTITY_TESTING, COMMAND_DEVELOPER_PARAM_WORLD_HASH, COMMAND_DEVELOPER_PARAM_RADIUS_CHUNKS_AROUND_CENTER, diff --git a/core/src/main/java/art/arcane/iris/core/localization/ModdedCommandMessages.java b/core/src/main/java/art/arcane/iris/core/localization/ModdedCommandMessages.java index 7d59a718a..caadca06f 100644 --- a/core/src/main/java/art/arcane/iris/core/localization/ModdedCommandMessages.java +++ b/core/src/main/java/art/arcane/iris/core/localization/ModdedCommandMessages.java @@ -503,10 +503,6 @@ public final class ModdedCommandMessages { "iris.modded.moddeddatapackcommands.message_2", " - " + "{name}" ); - public static final TextKey MODDED_DEVELOPER_COMMANDS_DISPATCHED_TEST_EXCEPTION_IRIS_ERROR_REPORTER_SENTRY_IF_ENABLED = TextKey.of( - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled", - "Dispatched a test exception to the Iris error reporter (Sentry if enabled)." - ); public static final TextKey MODDED_DEVELOPER_COMMANDS_MESSAGE = TextKey.of( "iris.modded.moddeddevelopercommands.message", " " + "{value}" @@ -1369,7 +1365,6 @@ public final class ModdedCommandMessages { MODDED_DATAPACK_COMMANDS_MODRINTH_INGEST_IS_BUKKIT_ONLY_INSTALL_THESE_MANUALLY_INTO_WORLD, MODDED_DATAPACK_COMMANDS_INSTALLED_WORLD_DATAPACKS, MODDED_DATAPACK_COMMANDS_MESSAGE_2, - MODDED_DEVELOPER_COMMANDS_DISPATCHED_TEST_EXCEPTION_IRIS_ERROR_REPORTER_SENTRY_IF_ENABLED, MODDED_DEVELOPER_COMMANDS_MESSAGE, MODDED_DEVELOPER_COMMANDS_NETWORK_SCAN_FAILED, MODDED_GOLDEN_HASH_GOLDENHASH_SCAN_IS_ALREADY_RUNNING, diff --git a/core/src/main/java/art/arcane/iris/core/localization/ModdedHelpMessages.java b/core/src/main/java/art/arcane/iris/core/localization/ModdedHelpMessages.java index efd1762cc..070203132 100644 --- a/core/src/main/java/art/arcane/iris/core/localization/ModdedHelpMessages.java +++ b/core/src/main/java/art/arcane/iris/core/localization/ModdedHelpMessages.java @@ -98,9 +98,9 @@ public final class ModdedHelpMessages { "iris.modded.help.entry.command.goldenhash", "Generate deterministic block hashes for parity testing" ); - public static final TextKey GROUP_DEVELOPER_DEVELOPER_DIAGNOSTICS_SENTRY_TEST_NETWORK_INTERFACES_REGION_FILE_SCAN = TextKey.of( + public static final TextKey GROUP_DEVELOPER_DEVELOPER_DIAGNOSTICS_NETWORK_INTERFACES_REGION_FILE_SCAN = TextKey.of( "iris.modded.help.entry.group.developer", - "Developer diagnostics: Sentry test, network interfaces, region-file scan" + "Developer diagnostics: network interfaces and region-file scan" ); public static final TextKey COMMAND_BIOME_FIND_AN_IRIS_BIOME = TextKey.of( "iris.modded.help.entry.command.biome", @@ -346,10 +346,6 @@ public final class ModdedHelpMessages { "iris.modded.help.entry.command.verify", "Report native and Iris structure reachability in the current dimension" ); - public static final TextKey COMMAND_SENTRY_SEND_A_TEST_EXCEPTION_TO_THE_IRIS_ERROR_REPORTER = TextKey.of( - "iris.modded.help.entry.command.sentry", - "Send a test exception to the Iris error reporter" - ); public static final TextKey COMMAND_NETWORK_LIST_NETWORK_INTERFACES_AND_THEIR_ADDRESSES = TextKey.of( "iris.modded.help.entry.command.network", "List network interfaces and their addresses" @@ -443,7 +439,7 @@ public final class ModdedHelpMessages { GROUP_DATAPACK_WORLD_DATAPACK_INSTALL_AND_STATUS_HELPERS, GROUP_STRUCTURE_IRIS_STRUCTURE_INDEX_INFO_AND_PLACEMENT_TOOLS, COMMAND_GOLDENHASH_GENERATE_DETERMINISTIC_BLOCK_HASHES_FOR_PARITY_TESTING, - GROUP_DEVELOPER_DEVELOPER_DIAGNOSTICS_SENTRY_TEST_NETWORK_INTERFACES_REGION_FILE_SCAN, + GROUP_DEVELOPER_DEVELOPER_DIAGNOSTICS_NETWORK_INTERFACES_REGION_FILE_SCAN, COMMAND_BIOME_FIND_AN_IRIS_BIOME, COMMAND_REGION_FIND_AN_IRIS_REGION, COMMAND_OBJECT_FIND_AN_OBJECT_PLACEMENT, @@ -505,7 +501,6 @@ public final class ModdedHelpMessages { COMMAND_IMPORT_EXPLAIN_BUKKIT_STRUCTURE_IMPORT_WORKFLOW, COMMAND_CAPTURE_EXPLAIN_BUKKIT_STRUCTURE_CAPTURE_WORKFLOW, COMMAND_VERIFY_REPORT_NATIVE_AND_IRIS_STRUCTURE_REACHABILITY_IN_THE_CURRENT_DIMENSION, - COMMAND_SENTRY_SEND_A_TEST_EXCEPTION_TO_THE_IRIS_ERROR_REPORTER, COMMAND_NETWORK_LIST_NETWORK_INTERFACES_AND_THEIR_ADDRESSES, COMMAND_WHAT_HERE_INSPECT_CURRENT_IRIS_CONTEXT, COMMAND_WHAT_BIOME_INSPECT_CURRENT_BIOME, diff --git a/core/src/main/java/art/arcane/iris/util/common/misc/Bindings.java b/core/src/main/java/art/arcane/iris/util/common/misc/Bindings.java index 7cda961be..9096abd56 100644 --- a/core/src/main/java/art/arcane/iris/util/common/misc/Bindings.java +++ b/core/src/main/java/art/arcane/iris/util/common/misc/Bindings.java @@ -1,23 +1,10 @@ package art.arcane.iris.util.common.misc; -import art.arcane.iris.util.project.sentry.Attachments; -import art.arcane.iris.util.project.sentry.IrisLogger; -import art.arcane.iris.util.project.sentry.ServerID; -import com.google.gson.JsonSyntaxException; import art.arcane.iris.BuildConstants; -import art.arcane.iris.spi.IrisLogging; -import art.arcane.iris.platform.bukkit.BukkitPlatform; -import art.arcane.iris.core.IrisSettings; -import art.arcane.iris.core.nms.INMS; -import art.arcane.iris.core.safeguard.IrisSafeguard; import art.arcane.iris.core.tools.IrisToolbelt; import art.arcane.iris.engine.platform.PlatformChunkGenerator; -import art.arcane.iris.util.project.context.IrisContext; -import art.arcane.volmlib.util.json.JSONException; import art.arcane.iris.util.common.plugin.VolmitPlugin; import art.arcane.iris.util.common.scheduling.J; - -import io.sentry.Sentry; import org.bstats.bukkit.Metrics; import org.bstats.charts.DrilldownPie; import org.bstats.charts.SingleLineChart; @@ -29,56 +16,6 @@ import java.util.Objects; import java.util.stream.Collectors; public class Bindings { - - public static void capture(Throwable throwable) { - Sentry.captureException(throwable); - } - - public static void setupSentry() { - var settings = IrisSettings.get().getSentry(); - if (settings.disableAutoReporting || Sentry.isEnabled() || Boolean.getBoolean("iris.suppressReporting")) return; - IrisLogging.info("Enabling Sentry for anonymous error reporting. You can disable this in the settings."); - IrisLogging.info("Your server ID is: " + ServerID.getId()); - - Sentry.init(options -> { - options.setDsn("http://4cdbb9ac953306529947f4ca1e8e6b26@sentry.volmit.com:8080/2"); - if (settings.debug) { - options.setLogger(new IrisLogger()); - options.setDebug(true); - } - - options.setAttachServerName(false); - options.setEnableUncaughtExceptionHandler(false); - options.setRelease(BukkitPlatform.plugin().getDescription().getVersion()); - options.setEnvironment(BuildConstants.ENVIRONMENT); - options.setBeforeSend((event, hint) -> { - if (suppress(event.getThrowable())) return null; - event.setTag("iris.safeguard", IrisSafeguard.mode().getId()); - event.setTag("iris.nms", INMS.get().getClass().getCanonicalName()); - var context = IrisContext.get(); - if (context != null) event.getContexts().set("engine", context.asContext()); - event.getContexts().set("safeguard", IrisSafeguard.asContext()); - return event; - }); - }); - Sentry.configureScope(scope -> { - if (settings.includeServerId) scope.setUser(ServerID.asUser()); - scope.addAttachment(Attachments.PLUGINS); - scope.addAttachment(Attachments.SAFEGUARD); - scope.setTag("server", Bukkit.getVersion()); - scope.setTag("server.type", Bukkit.getName()); - scope.setTag("server.api", Bukkit.getBukkitVersion()); - scope.setTag("iris.commit", BuildConstants.COMMIT); - }); - } - - private static boolean suppress(Throwable e) { - return (e instanceof IllegalStateException ex && "zip file closed".equals(ex.getMessage())) - || e instanceof JSONException - || e instanceof JsonSyntaxException; - } - - // bstats.org plugin id private static final int BSTATS_PLUGIN_ID = 24220; @@ -87,7 +24,7 @@ public class Bindings { return; } J.s(() -> { - var metrics = new Metrics(plugin, BSTATS_PLUGIN_ID); + Metrics metrics = new Metrics(plugin, BSTATS_PLUGIN_ID); metrics.addCustomChart(new SingleLineChart("custom_dimensions", () -> Bukkit.getWorlds() .stream() .filter(IrisToolbelt::isIrisWorld) @@ -100,7 +37,7 @@ public class Bindings { .map(PlatformChunkGenerator::getEngine) .filter(Objects::nonNull) .collect(Collectors.toMap(engine -> engine.getDimension().getLoadKey(), engine -> { - var hash32 = engine.getHash32().getNow(null); + Long hash32 = engine.getHash32().getNow(null); if (hash32 == null) return Map.of(); int version = engine.getDimension().getVersion(); String checksum = Long.toHexString(hash32); diff --git a/core/src/main/java/art/arcane/iris/util/project/sentry/Attachments.java b/core/src/main/java/art/arcane/iris/util/project/sentry/Attachments.java deleted file mode 100644 index 026908c5c..000000000 --- a/core/src/main/java/art/arcane/iris/util/project/sentry/Attachments.java +++ /dev/null @@ -1,43 +0,0 @@ -package art.arcane.iris.util.project.sentry; - -import com.google.gson.Gson; -import com.google.gson.GsonBuilder; -import art.arcane.iris.core.safeguard.IrisSafeguard; -import art.arcane.volmlib.util.collection.KMap; -import io.sentry.Attachment; -import org.bukkit.Bukkit; - -import java.nio.charset.StandardCharsets; -import java.util.concurrent.Callable; - -public class Attachments { - private static final Gson GSON = new GsonBuilder().disableHtmlEscaping().create(); - public static final Attachment PLUGINS = jsonProvider(Attachments::plugins, "plugins.json"); - public static final Attachment SAFEGUARD = jsonProvider(IrisSafeguard::asAttachment, "safeguard.json"); - - public static Attachment json(Object object, String name) { - return new Attachment(GSON.toJson(object).getBytes(StandardCharsets.UTF_8), name, "application/json", "event.attachment", true); - } - - public static Attachment jsonProvider(Callable object, String name) { - return new Attachment(() -> GSON.toJson(object.call()).getBytes(StandardCharsets.UTF_8), name, "application/json", "event.attachment", true); - } - - private static KMap plugins() { - KMap enabled = new KMap<>(); - KMap disabled = new KMap<>(); - - var pm = Bukkit.getPluginManager(); - for (var plugin : pm.getPlugins()) { - if (plugin.isEnabled()) { - enabled.put(plugin.getName(), plugin.getDescription().getVersion()); - } else { - disabled.put(plugin.getName(), plugin.getDescription().getVersion()); - } - } - - return new KMap() - .qput("enabled", enabled) - .qput("disabled", disabled); - } -} diff --git a/core/src/main/java/art/arcane/iris/util/project/sentry/IrisLogger.java b/core/src/main/java/art/arcane/iris/util/project/sentry/IrisLogger.java deleted file mode 100644 index 36b789711..000000000 --- a/core/src/main/java/art/arcane/iris/util/project/sentry/IrisLogger.java +++ /dev/null @@ -1,47 +0,0 @@ -package art.arcane.iris.util.project.sentry; - -import art.arcane.iris.spi.IrisLogging; -import io.sentry.ILogger; -import io.sentry.SentryLevel; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; - -import java.io.PrintWriter; -import java.io.StringWriter; - -public class IrisLogger implements ILogger { - @Override - public void log(@NotNull SentryLevel level, @NotNull String message, @Nullable Object... args) { - IrisLogging.msg(String.format("%s: %s", level, String.format(message, args))); - } - - @Override - public void log(@NotNull SentryLevel level, @NotNull String message, @Nullable Throwable throwable) { - if (throwable == null) { - log(level, message); - } else { - IrisLogging.msg(String.format("%s: %s\n%s", level, String.format(message, throwable), captureStackTrace(throwable))); - } - } - - @Override - public void log(@NotNull SentryLevel level, @Nullable Throwable throwable, @NotNull String message, @Nullable Object... args) { - if (throwable == null) { - log(level, message, args); - } else { - IrisLogging.msg(String.format("%s: %s\n%s", level, String.format(message, throwable), captureStackTrace(throwable))); - } - } - - @Override - public boolean isEnabled(@Nullable SentryLevel level) { - return true; - } - - private @NotNull String captureStackTrace(@NotNull Throwable throwable) { - StringWriter stringWriter = new StringWriter(); - PrintWriter printWriter = new PrintWriter(stringWriter); - throwable.printStackTrace(printWriter); - return stringWriter.toString(); - } -} diff --git a/core/src/main/java/art/arcane/iris/util/project/sentry/ServerID.java b/core/src/main/java/art/arcane/iris/util/project/sentry/ServerID.java deleted file mode 100644 index 69b99e06f..000000000 --- a/core/src/main/java/art/arcane/iris/util/project/sentry/ServerID.java +++ /dev/null @@ -1,65 +0,0 @@ -package art.arcane.iris.util.project.sentry; - -import art.arcane.volmlib.util.io.IO; -import io.sentry.protocol.User; -import lombok.SneakyThrows; -import org.bukkit.Bukkit; -import oshi.SystemInfo; - -import java.nio.ByteBuffer; -import java.nio.charset.StandardCharsets; -import java.security.MessageDigest; -import java.security.NoSuchAlgorithmException; - -public class ServerID { - private static final class Holder { - private static final String ID = calculate(); - } - - public static String getId() { - return Holder.ID; - } - - public static User asUser() { - User u = new User(); - u.setId(Holder.ID); - return u; - } - - @SneakyThrows - private static String calculate() { - Digest md = new Digest(); - md.update(System.getProperty("java.vm.name")); - md.update(System.getProperty("java.vm.version")); - md.update(new SystemInfo().getHardware().getProcessor().toString()); - md.update(Runtime.getRuntime().maxMemory()); - for (var p : Bukkit.getPluginManager().getPlugins()) { - md.update(p.getName()); - } - - return IO.bytesToHex(md.digest()); - } - - private static final class Digest { - private final MessageDigest md = MessageDigest.getInstance("SHA-256"); - private final byte[] buffer = new byte[8]; - private final ByteBuffer wrapped = ByteBuffer.wrap(buffer); - - private Digest() throws NoSuchAlgorithmException { - } - - public void update(String string) { - if (string == null) return; - md.update(string.getBytes(StandardCharsets.UTF_8)); - } - - public void update(long Long) { - wrapped.putLong(0, Long); - md.update(buffer, 0, 8); - } - - public byte[] digest() { - return md.digest(); - } - } -} diff --git a/core/src/main/resources/languages/de_DE.json b/core/src/main/resources/languages/de_DE.json index 146e807ea..c3011034c 100644 --- a/core/src/main/resources/languages/de_DE.json +++ b/core/src/main/resources/languages/de_DE.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Der Modrinth-Import ist nur unter Bukkit verfügbar; installiere diese Datapacks bei Bedarf manuell unter world/datapacks.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Installierte Weltdatenpakete: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Eine Testausnahme wurde an den Iris-Fehlerreporter gesendet (Sentry, falls aktiviert).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Netzwerk-Scan fehlgeschlagen: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Es läuft bereits ein GoldenHash-Scan.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Die Datapack-ID (Ordnername) wird angezeigt von /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris-Weltverwaltung", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Anzahl geladener TectonicPlates abrufen", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Eine Testausnahme an Sentry senden", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Generierte Blockausgabe eines festen Bereichs für Determinismus- und Identitätstests hashen", "iris.director.commanddeveloper.param.world_hash": "Die zu hashende Welt", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Radius in Chunks um die Mitte", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Hilfen für Installation und Status von Welt-Datapacks", "iris.modded.help.entry.group.structure": "Werkzeuge für Iris-Strukturindex, Informationen und Platzierung", "iris.modded.help.entry.command.goldenhash": "Generieren Sie deterministische Block-Hashes für Paritätstests", - "iris.modded.help.entry.group.developer": "Entwicklerdiagnostik: Sentry-Test, Netzwerkschnittstellen, Region-Datei-Scan", + "iris.modded.help.entry.group.developer": "Entwicklerdiagnostik: Netzwerkschnittstellen und Region-Datei-Scan", "iris.modded.help.entry.command.biome": "Ein Iris-Biom finden", "iris.modded.help.entry.command.region": "Eine Iris-Region finden", "iris.modded.help.entry.command.object": "Finden Sie eine Objektplatzierung", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Bukkit-Ablauf für den Strukturimport erklären", "iris.modded.help.entry.command.capture": "Bukkit-Ablauf für die Strukturerfassung erklären", "iris.modded.help.entry.command.verify": "Erreichbarkeit nativer und Iris-Strukturen in der aktuellen Dimension anzeigen", - "iris.modded.help.entry.command.sentry": "Eine Testausnahme an den Iris-Fehlerbericht senden", "iris.modded.help.entry.command.network": "Liste der Netzwerkschnittstellen und ihrer Adressen", "iris.runtime.progress.finding_regions": "Regionen werden gesucht", "iris.runtime.progress.converting": "Umwandlung", diff --git a/core/src/main/resources/languages/es_ES.json b/core/src/main/resources/languages/es_ES.json index 481a9bc21..1af4b5099 100644 --- a/core/src/main/resources/languages/es_ES.json +++ b/core/src/main/resources/languages/es_ES.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "La ingesta de Modrinth solo está disponible en Bukkit; instala estos datapacks manualmente en world/datapacks si es necesario.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Datapacks del mundo instalados: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Se envió una excepción de prueba al sistema de informes de errores de Iris (Sentry si está habilitado).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "El escaneo de red falló: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Ya hay un análisis GoldenHash en curso.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "El id del datapack (nombre de carpeta) que muestra /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Gestor de mundos de Iris", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Obtener el número de TectonicPlates cargadas", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Enviar una excepción de prueba a Sentry", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Calcular el hash de los bloques generados en un área fija para comprobar el determinismo y la identidad", "iris.director.commanddeveloper.param.world_hash": "El mundo cuyo hash se calculará", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Radio en chunks alrededor del centro", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Herramientas de instalación y estado de datapacks del mundo", "iris.modded.help.entry.group.structure": "Herramientas de índice, información y colocación de estructuras de Iris", "iris.modded.help.entry.command.goldenhash": "Generar hashes de bloques deterministas para pruebas de paridad", - "iris.modded.help.entry.group.developer": "Diagnósticos para desarrolladores: prueba de Sentry, interfaces de red y análisis de archivos de región", + "iris.modded.help.entry.group.developer": "Diagnósticos para desarrolladores: interfaces de red y análisis de archivos de región", "iris.modded.help.entry.command.biome": "Buscar un bioma de Iris", "iris.modded.help.entry.command.region": "Buscar una región de Iris", "iris.modded.help.entry.command.object": "Buscar la colocación de un objeto", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Explicar el flujo de importación de estructuras de Bukkit", "iris.modded.help.entry.command.capture": "Explicar el flujo de captura de estructuras de Bukkit", "iris.modded.help.entry.command.verify": "Informar de la accesibilidad de estructuras nativas y de Iris en la dimensión actual", - "iris.modded.help.entry.command.sentry": "Enviar una excepción de prueba al sistema de informes de errores de Iris", "iris.modded.help.entry.command.network": "Listar las interfaces de red y sus direcciones", "iris.runtime.progress.finding_regions": "Buscando regiones", "iris.runtime.progress.converting": "Convirtiendo", diff --git a/core/src/main/resources/languages/fi_FI.json b/core/src/main/resources/languages/fi_FI.json index b69e97388..67d547aec 100644 --- a/core/src/main/resources/languages/fi_FI.json +++ b/core/src/main/resources/languages/fi_FI.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth ingest on Bukkit-vain; asenna nämä käsin world/datapacks tarvittaessa.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Asennetut maailman datapaketit: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Lähetti testipoikkeuksen Iris virheilmoittaja (Sentry, jos käytössä).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Verkkoskannaus epäonnistui: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Kultahaskanneri on jo käynnissä.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Datapaketin tunniste (kansionimi) /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Maailmanjohtaja", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Hae Ladattu TectonicPlates Lukumäärä", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Lähetä testipoikkeus vartijalle", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Hashin tuottama lohkon tuotos kiinteällä alueella determinismi-/identiteettitestausta varten", "iris.director.commanddeveloper.param.world_hash": "Maailma hasista", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Radius palasina keskellä", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "maailman datapaketin asennus- ja tilaapurit", "iris.modded.help.entry.group.structure": "Iris rakenneindeksi, tiedot ja työvälineet", "iris.modded.help.entry.command.goldenhash": "Luo deterministinen lohkon hashes pariteettitestaus", - "iris.modded.help.entry.group.developer": "Kehittäjän diagnostiikka: Sentry-testi, verkkoliitännät, aluetiedostojen skannaus", + "iris.modded.help.entry.group.developer": "Kehittäjän diagnostiikka: verkkoliitännät ja aluetiedostojen skannaus", "iris.modded.help.entry.command.biome": "Etsi Iris bome", "iris.modded.help.entry.command.region": "Etsi Iris alue", "iris.modded.help.entry.command.object": "Etsi kohteen sijoitus", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Selitä Bukkit rakenteen mukainen työnkulku", "iris.modded.help.entry.command.capture": "Selitä Bukkit rakenteen kaappaustyövirta", "iris.modded.help.entry.command.verify": "Ilmoita syntyperäinen ja Iris rakenteen saavutettavuus nykyisessä ulottuvuudessa", - "iris.modded.help.entry.command.sentry": "Lähetä testi poikkeus Iris virheraportointi", "iris.modded.help.entry.command.network": "Listaa verkkoliittymät ja niiden osoitteet", "iris.runtime.progress.finding_regions": "Alueet", "iris.runtime.progress.converting": "Muunnetaan", diff --git a/core/src/main/resources/languages/fr_FR.json b/core/src/main/resources/languages/fr_FR.json index fe86fd6e9..c18b81d09 100644 --- a/core/src/main/resources/languages/fr_FR.json +++ b/core/src/main/resources/languages/fr_FR.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "L'ingestion Modrinth est réservée à Bukkit ; installez ces datapacks manuellement dans world/datapacks si nécessaire.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Datapacks du monde installés : {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Une exception de test a été envoyée au système de rapports d'erreurs Iris (Sentry s'il est activé).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "La numérisation réseau a échoué : {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Une analyse GoldenHash est déjà en cours.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "L'id du datapack (nom du dossier) affiché par /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Gestionnaire de mondes Iris", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Obtenir le nombre de TectonicPlates chargées", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Envoyer une exception de test à Sentry", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Calculer le hash des blocs générés dans une zone fixe afin de tester le déterminisme et l'identité", "iris.director.commanddeveloper.param.world_hash": "Le monde dont le hash sera calculé", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Rayon en chunks autour du centre", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Outils d'installation et d'état des datapacks du monde", "iris.modded.help.entry.group.structure": "Outils d'index, d'informations et de placement des structures Iris", "iris.modded.help.entry.command.goldenhash": "Générer des hashes de blocs déterministes pour les tests de parité", - "iris.modded.help.entry.group.developer": "Diagnostics développeur : test Sentry, interfaces réseau et analyse des fichiers de région", + "iris.modded.help.entry.group.developer": "Diagnostics développeur : interfaces réseau et analyse des fichiers de région", "iris.modded.help.entry.command.biome": "Rechercher un biome Iris", "iris.modded.help.entry.command.region": "Rechercher une région Iris", "iris.modded.help.entry.command.object": "Rechercher le placement d'un objet", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Expliquer le flux d'importation des structures Bukkit", "iris.modded.help.entry.command.capture": "Expliquer le flux de capture des structures Bukkit", "iris.modded.help.entry.command.verify": "Afficher l'accessibilité des structures natives et Iris dans la dimension actuelle", - "iris.modded.help.entry.command.sentry": "Envoyer une exception de test au rapporteur d'erreurs Iris", "iris.modded.help.entry.command.network": "Lister les interfaces réseau et leurs adresses", "iris.runtime.progress.finding_regions": "Recherche des régions", "iris.runtime.progress.converting": "Conversion", diff --git a/core/src/main/resources/languages/he_IL.json b/core/src/main/resources/languages/he_IL.json index efdfe91e0..c6e3d2626 100644 --- a/core/src/main/resources/languages/he_IL.json +++ b/core/src/main/resources/languages/he_IL.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth טעינה Bukkit- רק; להתקין אותם באופן ידני world/datapacks אם צריך.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "התקנת חבילות נתונים עולמיות: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "נשלחה חריגת בדיקה אל מדווח השגיאות של Iris (Sentry אם מופעל).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "סריקות רשת נכשלות: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "סריקת זהב כבר פועלת.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "חבילת הנתונים id (שם כפול) מוצג על ידי /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris מנהל עולמי", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "קבל טעון TectonicPlates הרוזן", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "שלח יוצא מן הבחינה לשולח", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "האש יצרה פלט בלוק של אזור קבוע עבור בדיקות determin / זהות", "iris.director.commanddeveloper.param.world_hash": "העולם שיש", "iris.director.commanddeveloper.param.radius_chunks_around_center": "רדינוס בחלקים סביב המרכז", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "חבילת נתונים עולמית להתקין ועוזרי סטטוס", "iris.modded.help.entry.group.structure": "Iris מדד מבנה, מידע וכלי מיקום", "iris.modded.help.entry.command.goldenhash": "לייצר בלוק determins עבור מבחן תאימות", - "iris.modded.help.entry.group.developer": "אבחון למפתחים: בדיקת Sentry, ממשקי רשת וסריקת קובצי אזור", + "iris.modded.help.entry.group.developer": "אבחון למפתחים: ממשקי רשת וסריקת קובצי אזור", "iris.modded.help.entry.command.biome": "מצא Iris ביו", "iris.modded.help.entry.command.region": "מצא Iris האזור האזורי", "iris.modded.help.entry.command.object": "מצא מיקום אובייקט", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "להסביר Bukkit ייבוא תהליך עבודה", "iris.modded.help.entry.command.capture": "להסביר Bukkit מבנה לכידת עבודה", "iris.modded.help.entry.command.verify": "דו\"ח Native ו- Iris מגיע לשיאות במימד הנוכחי", - "iris.modded.help.entry.command.sentry": "שלח יוצא דופן במבחן Iris עיתונאי טעות", "iris.modded.help.entry.command.network": "ממשקי רשת וכתובות", "iris.runtime.progress.finding_regions": "מציאת אזורים", "iris.runtime.progress.converting": "המרת", diff --git a/core/src/main/resources/languages/it_IT.json b/core/src/main/resources/languages/it_IT.json index 427e8e066..af52342b1 100644 --- a/core/src/main/resources/languages/it_IT.json +++ b/core/src/main/resources/languages/it_IT.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "L'importazione da Modrinth è disponibile solo su Bukkit; se necessario, installa manualmente questi datapack in world/datapacks.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Datapack installati nel mondo: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "È stata inviata un'eccezione di prova al sistema di segnalazione errori di Iris (Sentry se abilitato).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "La scansione di rete non è riuscita: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "È già in esecuzione una scansione GoldenHash.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Il datapack id (nome della cartella) indicato da /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Gestore dei mondi Iris", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Ottieni il numero di TectonicPlates caricate", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Invia un'eccezione di prova a Sentry", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Calcola l'hash dei blocchi generati in un'area fissa per test di determinismo e identità", "iris.director.commanddeveloper.param.world_hash": "Il mondo di cui calcolare l'hash", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Radio in chunk intorno al centro", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Installazione e stato dei datapack del mondo", "iris.modded.help.entry.group.structure": "Iris struttura indice, info e strumenti di posizionamento", "iris.modded.help.entry.command.goldenhash": "Genera blocchi deterministici per prove di parità", - "iris.modded.help.entry.group.developer": "Diagnostica degli sviluppatori: Test di Sentry, interfacce di rete, scansione dei file regionali", + "iris.modded.help.entry.group.developer": "Diagnostica degli sviluppatori: interfacce di rete e scansione dei file regionali", "iris.modded.help.entry.command.biome": "Trova un bioma Iris", "iris.modded.help.entry.command.region": "Trova una regione Iris", "iris.modded.help.entry.command.object": "Trova un posizionamento degli oggetti", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Spiega il flusso Bukkit per l'importazione delle strutture", "iris.modded.help.entry.command.capture": "Spiega il flusso Bukkit per l'acquisizione delle strutture", "iris.modded.help.entry.command.verify": "Mostra la raggiungibilità delle strutture native e Iris nella dimensione corrente", - "iris.modded.help.entry.command.sentry": "Invia un'eccezione di prova al sistema di segnalazione errori Iris", "iris.modded.help.entry.command.network": "Elenca le interfacce di rete e i loro indirizzi", "iris.runtime.progress.finding_regions": "Ricerca delle regioni", "iris.runtime.progress.converting": "Conversione", diff --git a/core/src/main/resources/languages/ja-JP.json b/core/src/main/resources/languages/ja-JP.json index ed77dd64c..7e13e3a5d 100644 --- a/core/src/main/resources/languages/ja-JP.json +++ b/core/src/main/resources/languages/ja-JP.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth の取り込みは Bukkit 専用です。必要に応じて world/datapacks に手動でインストールしてください。", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "インストール済みのワールドデータパック: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "テスト例外を Iris のエラーレポーターに送信しました(有効な場合は Sentry)。", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "ネットワークスキャン失敗: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "GoldenHash スキャンはすでに実行中です。", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "/iris datapack list に表示されるデータパック ID(フォルダー名)", "iris.director.commanddeveloper.director.iris_world_manager": "Iris ワールドマネージャー", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "読み込み済み TectonicPlates の数を取得します", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Sentry へテスト例外を送信します", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "固定範囲で生成されたブロック出力をハッシュ化し、決定性と一致性を検証します", "iris.director.commanddeveloper.param.world_hash": "ハッシュ化するワールド", "iris.director.commanddeveloper.param.radius_chunks_around_center": "中心からの半径(チャンク単位)", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "ワールドデータパックのインストールと状態確認を支援します", "iris.modded.help.entry.group.structure": "Iris 構造物のインデックス、情報、配置ツールです", "iris.modded.help.entry.command.goldenhash": "互換性テスト用に決定論的なブロックハッシュを生成します", - "iris.modded.help.entry.group.developer": "開発者の診断: Sentryテスト、ネットワーク インターフェイス、地域 ファイル スキャン", + "iris.modded.help.entry.group.developer": "開発者診断: ネットワークインターフェースとリージョンファイルのスキャン", "iris.modded.help.entry.command.biome": "Iris バイオームを検索します", "iris.modded.help.entry.command.region": "Iris リージョンを検索します", "iris.modded.help.entry.command.object": "オブジェクト配置を検索します", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Bukkit の構造物インポート手順を説明します", "iris.modded.help.entry.command.capture": "Bukkit の構造物キャプチャ手順を説明します", "iris.modded.help.entry.command.verify": "現在のディメンションでネイティブ構造物と Iris 構造物が到達可能か報告します", - "iris.modded.help.entry.command.sentry": "Iris エラーレポーターへテスト例外を送信します", "iris.modded.help.entry.command.network": "ネットワークインターフェースとアドレスを一覧表示します", "iris.runtime.progress.finding_regions": "リージョンを検索中", "iris.runtime.progress.converting": "変換中", diff --git a/core/src/main/resources/languages/ko_KR.json b/core/src/main/resources/languages/ko_KR.json index d700c7faf..8072fdbe0 100644 --- a/core/src/main/resources/languages/ko_KR.json +++ b/core/src/main/resources/languages/ko_KR.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth 수집는 Bukkit-만; 수동으로 설치 world/datapacks 필요한 경우.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "설치된 세계 데이터 팩: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "테스트 예외를 Iris 오류 보고기로 전송했습니다(Sentry가 활성화된 경우).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "네트워크 검사 실패: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "황금빛 검사는 이미 달리고 있습니다.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "/iris datapack list에 표시되는 데이터 팩 ID(폴더 이름)", "iris.director.commanddeveloper.director.iris_world_manager": "Iris 월드 관리자", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "로드된 TectonicPlates 수를 가져옵니다", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Sentry로 테스트 예외를 보냅니다", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "고정 영역의 생성 블록 출력을 해시해 결정성과 일치성을 검사합니다", "iris.director.commanddeveloper.param.world_hash": "해시할 월드", "iris.director.commanddeveloper.param.radius_chunks_around_center": "중심 기준 반경(청크 단위)", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "월드 데이터 팩 설치와 상태 확인 도구입니다", "iris.modded.help.entry.group.structure": "Iris 구조물 인덱스, 정보, 배치 도구입니다", "iris.modded.help.entry.command.goldenhash": "동일성 검사용 결정적 블록 해시를 생성합니다", - "iris.modded.help.entry.group.developer": "개발자 진단: Sentry 테스트, 네트워크 인터페이스, 리전 파일 검사", + "iris.modded.help.entry.group.developer": "개발자 진단: 네트워크 인터페이스와 리전 파일 검사", "iris.modded.help.entry.command.biome": "Iris 바이옴을 찾습니다", "iris.modded.help.entry.command.region": "Iris 리전을 찾습니다", "iris.modded.help.entry.command.object": "오브젝트 배치를 찾습니다", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Bukkit 구조물 가져오기 절차를 설명합니다", "iris.modded.help.entry.command.capture": "Bukkit 구조물 캡처 절차를 설명합니다", "iris.modded.help.entry.command.verify": "현재 차원의 네이티브 및 Iris 구조물 도달 가능성을 보고합니다", - "iris.modded.help.entry.command.sentry": "Iris 오류 보고기로 테스트 예외를 보냅니다", "iris.modded.help.entry.command.network": "네트워크 인터페이스와 주소를 나열합니다", "iris.runtime.progress.finding_regions": "지역 찾기", "iris.runtime.progress.converting": "변환 중", diff --git a/core/src/main/resources/languages/lt_LT.json b/core/src/main/resources/languages/lt_LT.json index 3448c7ce8..3e3691a86 100644 --- a/core/src/main/resources/languages/lt_LT.json +++ b/core/src/main/resources/languages/lt_LT.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth vartoti Bukkit-tik; įdiegti šiuos rankiniu būdu į world/datapacks jei reikia.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Įdiegti pasauliniai duomenys: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Bandomoji išimtis išsiųsta į Iris klaidų pranešimų sistemą (Sentry, jei įjungta).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Tinklo skenavimas nepavyko: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Auksinis skenavimas jau veikia.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Datapack id (aplanko pavadinimas) rodo /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Pasaulio vadybininkas", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Įkelti TectonicPlates Skaičius", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Siųsti bandymo išimtį Sentry", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Stacionarios zonos sukauptas bloko išvestis determinizmui / tapatumo bandymams", "iris.director.commanddeveloper.param.world_hash": "Pasaulis, kuriam reikia maišyti", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Spindulys į gabaliukus aplink centrą", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "World datapack įdiegti ir būsenos pagalbininkai", "iris.modded.help.entry.group.structure": "Iris struktūros indeksas, informacija ir diegimo įrankiai", "iris.modded.help.entry.command.goldenhash": "Sugeneruoti deterministinius bloko smūgius pariteto bandymams", - "iris.modded.help.entry.group.developer": "Kūrėjo diagnostika: Sentry testas, tinklo sąsajos, regionų failų nuskaitymas", + "iris.modded.help.entry.group.developer": "Kūrėjo diagnostika: tinklo sąsajos ir regionų failų nuskaitymas", "iris.modded.help.entry.command.biome": "Rasti Iris biomas", "iris.modded.help.entry.command.region": "Rasti Iris regionas", "iris.modded.help.entry.command.object": "Rasti objekto vietą", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Paaiškinti Bukkit struktūra importo darbo eiga", "iris.modded.help.entry.command.capture": "Paaiškinti Bukkit struktūros surinkimo darbų srautas", "iris.modded.help.entry.command.verify": "Pranešti vietos ir Iris struktūros pasiekiamumas dabartiniame matmenyje", - "iris.modded.help.entry.command.sentry": "Siųsti bandymo išimtį Iris klaidų reporteris", "iris.modded.help.entry.command.network": "Išvardyti tinklo sąsajas ir jų adresus", "iris.runtime.progress.finding_regions": "Ieškomi regionai", "iris.runtime.progress.converting": "Konvertuojama", diff --git a/core/src/main/resources/languages/nl_NL.json b/core/src/main/resources/languages/nl_NL.json index dc4e1b3d1..d8400a159 100644 --- a/core/src/main/resources/languages/nl_NL.json +++ b/core/src/main/resources/languages/nl_NL.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth Inname is Bukkit-alleen; installeer deze handmatig in world/datapacks indien nodig.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Geïnstalleerde werelddatapacks: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Een testuitzondering is naar de Iris-foutrapportage verzonden (Sentry indien ingeschakeld).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Netwerkscan mislukt: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Een Goldenhash scan loopt al.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Het datapack id (mapnaam) getoond door /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Wereldmanager", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Laden TectonicPlates Aantal", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Stuur een test uitzondering naar de wachtdienst", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Hash gegenereerde blokuitgang van een vaste zone voor determinisme/identiteitstest", "iris.director.commanddeveloper.param.world_hash": "De wereld te hash", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Straal in stukjes rond het centrum", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "World Datapack installatie en status helpers", "iris.modded.help.entry.group.structure": "Iris structuurindex, info- en plaatsingsinstrumenten", "iris.modded.help.entry.command.goldenhash": "Genereer deterministische blokhashes voor pariteitstests", - "iris.modded.help.entry.group.developer": "Ontwikkelaardiagnostiek: Sentry test, netwerk interfaces, regio-bestand scan", + "iris.modded.help.entry.group.developer": "Ontwikkelaardiagnostiek: netwerkinterfaces en regio-bestandsscan", "iris.modded.help.entry.command.biome": "Zoek een Iris biom", "iris.modded.help.entry.command.region": "Zoek een Iris regio", "iris.modded.help.entry.command.object": "Een objectplaatsing zoeken", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Leg uit Bukkit structuur import workflow", "iris.modded.help.entry.command.capture": "Leg uit Bukkit structuur capture workflow", "iris.modded.help.entry.command.verify": "Native en Iris Bereikbaarheid van de structuur in de huidige dimensie", - "iris.modded.help.entry.command.sentry": "Stuur een testuitzondering naar de Iris foutverslaggever", "iris.modded.help.entry.command.network": "Lijst van netwerkinterfaces en hun adressen", "iris.runtime.progress.finding_regions": "Regio's vinden", "iris.runtime.progress.converting": "Converteren", diff --git a/core/src/main/resources/languages/pl_PL.json b/core/src/main/resources/languages/pl_PL.json index 4b05f9155..9594fd808 100644 --- a/core/src/main/resources/languages/pl_PL.json +++ b/core/src/main/resources/languages/pl_PL.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth jeśli Bukkit-tylko; zainstalować je ręcznie world/datapacks w razie potrzeby.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Zainstalowane world datapacks: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Wysłano wyjątek testowy do systemu raportowania błędów Iris (Sentry, jeśli jest włączony).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Skanowanie sieci nie powiodło się: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Skaner już działa.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Identyfikator datapack (nazwa folderu) pokazany przez /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Światowy menedżer", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Napełnij TectonicPlates Licz", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Wyślij wyjątek testowy do wartownika", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Wygenerowane przez Hasha wyjście blokowe stałego obszaru do celów badania determinizmu / tożsamości", "iris.director.commanddeveloper.param.world_hash": "Świat, by się zahaczyć", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Promień w chunkach wokół centrum", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Narzędzia instalacji i stanu datapacków świata", "iris.modded.help.entry.group.structure": "Iris indeks struktury, narzędzia informacyjne i umieszczania", "iris.modded.help.entry.command.goldenhash": "Generowanie hash bloku deterministycznego do badania parytetu", - "iris.modded.help.entry.group.developer": "Diagnostyka deweloperska: test Sentry, interfejsy sieciowe, skan plików regionów", + "iris.modded.help.entry.group.developer": "Diagnostyka deweloperska: interfejsy sieciowe i skan plików regionów", "iris.modded.help.entry.command.biome": "Znajdź Iris biom", "iris.modded.help.entry.command.region": "Znajdź Iris regiony", "iris.modded.help.entry.command.object": "Znajdź lokalizację obiektu", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Wyjaśnij Bukkit struktura importu pracy", "iris.modded.help.entry.command.capture": "Wyjaśnij Bukkit structure catch workflow", "iris.modded.help.entry.command.verify": "Zgłoś rodzime i Iris stabilność struktury w obecnym wymiarze", - "iris.modded.help.entry.command.sentry": "Wyślij wyjątek testowy do Iris zgłaszający błędy", "iris.modded.help.entry.command.network": "Lista interfejsów sieciowych i ich adresów", "iris.runtime.progress.finding_regions": "Znalezienie regionów", "iris.runtime.progress.converting": "Konwersja", diff --git a/core/src/main/resources/languages/pt_PT.json b/core/src/main/resources/languages/pt_PT.json index 1ed63969a..9f58bc938 100644 --- a/core/src/main/resources/languages/pt_PT.json +++ b/core/src/main/resources/languages/pt_PT.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth ingerir é Bukkit- somente; instale estes manualmente em world/datapacks se necessário.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Pacotes de dados mundiais instalados: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Foi enviada uma exceção de teste para o sistema de relatórios de erros do Iris (Sentry, se estiver ativado).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Falha na verificação da rede: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Já está a ser feito um exame ao Goldenhash.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "O ID do pacote de dados (nome da pasta) mostrado por /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Gestor Mundial", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Obter Carregado TectonicPlates Contagem", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Enviar uma exceção de teste para o sentinela", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Saída de bloco gerada por hash de uma área fixa para testes de determinismo/identidade", "iris.director.commanddeveloper.param.world_hash": "O mundo para hash", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Raio em chunks ao redor do centro", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Mundial datapack install e status helpers", "iris.modded.help.entry.group.structure": "Iris índice de estrutura, informações e ferramentas de colocação", "iris.modded.help.entry.command.goldenhash": "Gerar hashes de blocos determinísticos para testes de paridade", - "iris.modded.help.entry.group.developer": "Diagnóstico de programador: teste do Sentry, interfaces de rede e análise de ficheiros de região", + "iris.modded.help.entry.group.developer": "Diagnóstico de programador: interfaces de rede e análise de ficheiros de região", "iris.modded.help.entry.command.biome": "Procurar um Iris bioma", "iris.modded.help.entry.command.region": "Procurar um Iris região", "iris.modded.help.entry.command.object": "Encontrar uma colocação de objeto", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Explicar Bukkit workflow de importação da estrutura", "iris.modded.help.entry.command.capture": "Explicar Bukkit workflow de captura da estrutura", "iris.modded.help.entry.command.verify": "Relatório nativo e Iris capacidade de alcance da estrutura na dimensão atual", - "iris.modded.help.entry.command.sentry": "Enviar uma excepção de teste para o Iris repórter de erro", "iris.modded.help.entry.command.network": "Listar as interfaces de rede e os seus endereços", "iris.runtime.progress.finding_regions": "Regiões de pesquisa", "iris.runtime.progress.converting": "Conversão", diff --git a/core/src/main/resources/languages/ru_RU.json b/core/src/main/resources/languages/ru_RU.json index 2db029713..bdf0adef4 100644 --- a/core/src/main/resources/languages/ru_RU.json +++ b/core/src/main/resources/languages/ru_RU.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth глотать - это Bukkit-только; установить эти вручную в world/datapacks при необходимости.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Установка мировых пакетов данных: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Тестовое исключение отправлено в систему отчётов об ошибках Iris (Sentry, если включён).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Сканирование сети не удалось: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Сканирование Goldhash уже запущено.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "ID пакета данных (название папки), показанный /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Мировой менеджер", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Заряжайся TectonicPlates граф", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Отправить тестовое исключение для часового", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Hash генерируется блок выход фиксированной области для детерминизма/идентификации тестирования", "iris.director.commanddeveloper.param.world_hash": "Мир для хеширования", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Радиус в чанках вокруг центра", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Установка Мировой пакет данных и статус помощников", "iris.modded.help.entry.group.structure": "Iris Индекс структуры, информация и инструменты размещения", "iris.modded.help.entry.command.goldenhash": "Генерировать детерминированные хэши блоков для тестирования паритета", - "iris.modded.help.entry.group.developer": "Диагностика разработчиков: тест Sentry, сетевые интерфейсы, региональное сканирование файлов", + "iris.modded.help.entry.group.developer": "Диагностика разработчиков: сетевые интерфейсы и сканирование файлов регионов", "iris.modded.help.entry.command.biome": "Найти Iris биом", "iris.modded.help.entry.command.region": "Найти Iris регион", "iris.modded.help.entry.command.object": "Найти объект размещения", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Объяснять Bukkit Структура импортного рабочего процесса", "iris.modded.help.entry.command.capture": "Объяснять Bukkit Структура захвата рабочего процесса", "iris.modded.help.entry.command.verify": "Сообщение родного и Iris Достижимость структуры в текущем измерении", - "iris.modded.help.entry.command.sentry": "Отправить тестовое исключение из Iris репортер ошибок", "iris.modded.help.entry.command.network": "Список сетевых интерфейсов и их адреса", "iris.runtime.progress.finding_regions": "Поиск регионов", "iris.runtime.progress.converting": "преобразовывать", diff --git a/core/src/main/resources/languages/tr_TR.json b/core/src/main/resources/languages/tr_TR.json index 3a47f9418..93ff6952e 100644 --- a/core/src/main/resources/languages/tr_TR.json +++ b/core/src/main/resources/languages/tr_TR.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth Ingest is ingest BukkitSadece; bunları manuel olarak yükleme world/datapacks Gerekirse.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Bağlantılı dünya veri paketleri: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Iris hata raporlayıcısına bir test istisnası gönderildi (etkinse Sentry).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Ağ tarama başarısız oldu: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Altınhash tarama zaten çalışıyor.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Datapack id (folder adı) tarafından gösterilen /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Dünya Yöneticisi", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Yükleme alın TectonicPlates Kont", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Gönderilen bir test istisnaı gönder", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Hash, determinism/identity test için sabit bir bölgenin blok çıktısını üretti", "iris.director.commanddeveloper.param.world_hash": "Dünyanın sahip olması", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Radius merkez çevresinde", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Dünya veri paketi ve statü yardımcıları", "iris.modded.help.entry.group.structure": "Iris Yapı indeksi, bilgi ve yerleştirme araçları", "iris.modded.help.entry.command.goldenhash": "Genrate deterministic blok parity testi için vardır", - "iris.modded.help.entry.group.developer": "Geliştirici tanıları: Sentry testi, ağ arabirimleri, bölge-file tarama", + "iris.modded.help.entry.group.developer": "Geliştirici tanıları: ağ arabirimleri ve bölge dosyası taraması", "iris.modded.help.entry.command.biome": "Bir an bulun Iris Biyome", "iris.modded.help.entry.command.region": "Bir an bulun Iris Bölge bölgesi", "iris.modded.help.entry.command.object": "Bir nesne yerleşimi bulun", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Açık Açıklama Bukkit Yapı import iş akışı", "iris.modded.help.entry.command.capture": "Açık Açıklama Bukkit Yapı yakalama", "iris.modded.help.entry.command.verify": "Rapor yerli ve Iris Yapı mevcut boyutta erişilebilirlik", - "iris.modded.help.entry.command.sentry": "Bir test istisnaı gönderin Iris hata muhabiri", "iris.modded.help.entry.command.network": "Liste ağ arabirimleri ve adresleri", "iris.runtime.progress.finding_regions": "Bölgeleri bulmak", "iris.runtime.progress.converting": "Dönüştürmek", diff --git a/core/src/main/resources/languages/vi_VI.json b/core/src/main/resources/languages/vi_VI.json index 1b5a31618..f0d3ebd15 100644 --- a/core/src/main/resources/languages/vi_VI.json +++ b/core/src/main/resources/languages/vi_VI.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth Ăn là Bukkit-Chỉ; cài đặt những điều này bằng tay vào world/datapacks nếu cần thiết.", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "Bộ dữ liệu thế giới đã cài đặt: {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "Đã gửi một ngoại lệ thử nghiệm đến trình báo lỗi Iris (Sentry nếu được bật).", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "Việc quét mạng bị lỗi: {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "Chụp cắt lớp vàng đã chạy rồi.", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "Mã nhận diện dữ liệu (tên thư mục) được hiển thị bởi /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris Quản lý thế giới", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "Đã nạp TectonicPlates Số lượng", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "Name", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "Đã tạo ra khối kết xuất của một khu vực cố định để thử nghiệm chủ nghĩa xác định/không xác định", "iris.director.commanddeveloper.param.world_hash": "♪ Thế giới sẽ khô cằn ♪", "iris.director.commanddeveloper.param.radius_chunks_around_center": "Bán kính trong mảng xung quanh trung tâm", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "Name", "iris.modded.help.entry.group.structure": "Iris chỉ mục cấu trúc, thông tin và công cụ định vị", "iris.modded.help.entry.command.goldenhash": "Tạo ra khối quyết định để kiểm tra cân bằng", - "iris.modded.help.entry.group.developer": "Chẩn đoán dành cho nhà phát triển: kiểm tra Sentry, giao diện mạng và quét tệp vùng", + "iris.modded.help.entry.group.developer": "Chẩn đoán dành cho nhà phát triển: giao diện mạng và quét tệp vùng", "iris.modded.help.entry.command.biome": "Tìm một Iris sinh học", "iris.modded.help.entry.command.region": "Tìm một Iris vùng", "iris.modded.help.entry.command.object": "Tìm một vị trí đối tượng", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "Giải thích Bukkit Comment", "iris.modded.help.entry.command.capture": "Giải thích Bukkit Name", "iris.modded.help.entry.command.verify": "Báo cáo bản địa và Iris cấu trúc khả năng chạm tới trong chiều không gian hiện tại", - "iris.modded.help.entry.command.sentry": "Gửi một ngoại lệ thử nghiệm đến Iris Thông báo lỗi", "iris.modded.help.entry.command.network": "Liệt kê các giao diện mạng và địa chỉ của chúng", "iris.runtime.progress.finding_regions": "Tìm vùng", "iris.runtime.progress.converting": "Chuyển đổi", diff --git a/core/src/main/resources/languages/zh_CN.json b/core/src/main/resources/languages/zh_CN.json index 2e3ed665c..dbf7d20b5 100644 --- a/core/src/main/resources/languages/zh_CN.json +++ b/core/src/main/resources/languages/zh_CN.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth 摄入是 Bukkit- 只安装; 手动安装到 world/datapacks 如果需要的话。", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "安装的世界数据包 : {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "已向 Iris 错误报告器发送测试异常(若已启用 Sentry)。", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "网络扫描失败 : {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "金色扫描已经运行中 。", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "数据包 id (文件夹名称) 显示于 /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris 世界经理", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "加载 TectonicPlates 计数", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "向哨兵发送测试例外", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "用于确定/识别测试的固定区域的散列输出", "iris.director.commanddeveloper.param.world_hash": "散开的世界", "iris.director.commanddeveloper.param.radius_chunks_around_center": "半径为中心周围的块", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "世界数据包安装和状态工具", "iris.modded.help.entry.group.structure": "Iris 结构索引、信息和放置工具", "iris.modded.help.entry.command.goldenhash": "为一致性测试生成确定性方块哈希", - "iris.modded.help.entry.group.developer": "开发者诊断:Sentry 测试、网络接口和区域文件扫描", + "iris.modded.help.entry.group.developer": "开发者诊断:网络接口和区域文件扫描", "iris.modded.help.entry.command.biome": "查找 Iris 群系", "iris.modded.help.entry.command.region": "查找 Iris 区域", "iris.modded.help.entry.command.object": "查找对象放置", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "说明 Bukkit 结构导入流程", "iris.modded.help.entry.command.capture": "说明 Bukkit 结构捕获流程", "iris.modded.help.entry.command.verify": "报告当前维度中原生结构和 Iris 结构的可达性", - "iris.modded.help.entry.command.sentry": "向 Iris 错误报告器发送测试异常", "iris.modded.help.entry.command.network": "列出网络接口及其地址", "iris.runtime.progress.finding_regions": "寻找区域", "iris.runtime.progress.converting": "转换", diff --git a/core/src/main/resources/languages/zh_TW.json b/core/src/main/resources/languages/zh_TW.json index 6e1984825..7f09002ed 100644 --- a/core/src/main/resources/languages/zh_TW.json +++ b/core/src/main/resources/languages/zh_TW.json @@ -429,7 +429,6 @@ "iris.modded.moddeddatapackcommands.modrinth_ingest_is_bukkit_only_install_these_manually_into_world": "Modrinth 攝入是 Bukkit- 只安裝; 手動安裝到 world/datapacks 如果需要的話。", "iris.modded.moddeddatapackcommands.installed_world_datapacks": "安裝的世界資料包 : {value}", "iris.modded.moddeddatapackcommands.message_2": " - {name}", - "iris.modded.moddeddevelopercommands.dispatched_test_exception_iris_error_reporter_sentry_if_enabled": "已向 Iris 錯誤報告器傳送測試例外(若已啟用 Sentry)。", "iris.modded.moddeddevelopercommands.message": " {value}", "iris.modded.moddeddevelopercommands.network_scan_failed": "網路掃描失敗 : {value}", "iris.modded.moddedgoldenhash.goldenhash_scan_is_already_running": "金色掃描已經執行中 。", @@ -620,7 +619,6 @@ "iris.director.commanddatapack.param.datapack_id_folder_name_shown_by_iris_datapack_list": "資料包 id (資料夾名稱) 顯示於 /iris datapack list", "iris.director.commanddeveloper.director.iris_world_manager": "Iris 世界經理", "iris.director.commanddeveloper.director.get_loaded_tectonicplates_count": "載入 TectonicPlates 計數", - "iris.director.commanddeveloper.director.send_test_exception_sentry": "向哨兵傳送測試例外", "iris.director.commanddeveloper.director.hash_generated_block_output_fixed_area_determinism_identity_testing": "用於確定/識別測試的固定區域的雜湊輸出", "iris.director.commanddeveloper.param.world_hash": "散開的世界", "iris.director.commanddeveloper.param.radius_chunks_around_center": "半徑為中心周圍的塊", @@ -850,7 +848,7 @@ "iris.modded.help.entry.group.datapack": "世界資料包安裝和狀態工具", "iris.modded.help.entry.group.structure": "Iris 結構索引、資訊和放置工具", "iris.modded.help.entry.command.goldenhash": "為一致性測試生成確定性方塊雜湊", - "iris.modded.help.entry.group.developer": "開發者診斷:Sentry 測試、網路介面和區域檔案掃描", + "iris.modded.help.entry.group.developer": "開發者診斷:網路介面和區域檔案掃描", "iris.modded.help.entry.command.biome": "尋找 Iris 生態域", "iris.modded.help.entry.command.region": "尋找 Iris 區域", "iris.modded.help.entry.command.object": "尋找物件放置", @@ -912,7 +910,6 @@ "iris.modded.help.entry.command.import": "說明 Bukkit 結構匯入流程", "iris.modded.help.entry.command.capture": "說明 Bukkit 結構擷取流程", "iris.modded.help.entry.command.verify": "回報目前維度中原生結構和 Iris 結構的可達性", - "iris.modded.help.entry.command.sentry": "向 Iris 錯誤回報器傳送測試例外", "iris.modded.help.entry.command.network": "列出網路介面及其位址", "iris.runtime.progress.finding_regions": "尋找區域", "iris.runtime.progress.converting": "轉換", diff --git a/core/src/test/java/art/arcane/iris/core/localization/IrisLanguageTest.java b/core/src/test/java/art/arcane/iris/core/localization/IrisLanguageTest.java index 443fc3593..a7d10fa3d 100644 --- a/core/src/test/java/art/arcane/iris/core/localization/IrisLanguageTest.java +++ b/core/src/test/java/art/arcane/iris/core/localization/IrisLanguageTest.java @@ -55,7 +55,7 @@ public class IrisLanguageTest { + "|\\b[A-Za-z0-9_*{}.-]+\\.(?:json|toml|ya?ml|jar|nbt|iob|properties|log|zip)\\b" ); private static final Pattern PROPER_NAME = Pattern.compile( - "\\b(?:IrisDimensions|Iris|Minecraft|CraftBukkit|Bukkit|Paper|Folia|Fabric|NeoForge|Forge|Modrinth|GitHub|VSCode|Brigadier|Mantle|MiniMessage|Adventure|Sentry|NMS|NBT|JSON|TOML|YAML|GUI|HUD|TPS|MSPT|FPS|CPU|GPU|RAM|JAR|API|UUID|BUD|ETA|HD|LQ|ms)\\b" + "\\b(?:IrisDimensions|Iris|Minecraft|CraftBukkit|Bukkit|Paper|Folia|Fabric|NeoForge|Forge|Modrinth|GitHub|VSCode|Brigadier|Mantle|MiniMessage|Adventure|NMS|NBT|JSON|TOML|YAML|GUI|HUD|TPS|MSPT|FPS|CPU|GPU|RAM|JAR|API|UUID|BUD|ETA|HD|LQ|ms)\\b" ); private static final List IRIS_PRODUCT_NAMES = List.of( "Iris Vision", @@ -66,7 +66,6 @@ public class IrisLanguageTest { "ResourceManager", "GoldenHash", "IGenData", - "Sentry", "TectonicPlates" ); private static final Pattern MARKER_DEBRIS = Pattern.compile("(?:⟬|⟭|\\b(?:XQ|QZ)[A-Z0-9_]*\\b|[\\uE000-\\uF8FF])"); diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 8ccf6dbff..edeb4b5cc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,8 +6,6 @@ # Plugins shadow = "9.5.1" # https://plugins.gradle.org/plugin/com.gradleup.shadow slimjar = "2.1.9" # https://plugins.gradle.org/plugin/de.crazydev22.slimjar -download = "5.7.0" # https://plugins.gradle.org/plugin/de.undercouch.download -sentryPlugin = "6.14.0" # https://github.com/getsentry/sentry-android-gradle-plugin # Core Libraries lombok = "1.18.46" @@ -20,7 +18,6 @@ annotations = "26.1.0" # https://central.sonatype.com/artifact/org.jetbrains/ann paralithic = "0.8.1" # https://github.com/PolyhedralDev/Paralithic/ paperlib = "1.0.8" # https://github.com/PaperMC/PaperLib/ bstats = "3.2.1" # https://github.com/Bastian/bstats-metrics/tree/master -sentry = "8.48.0" # https://github.com/getsentry/sentry-java commons-io = "2.22.0" # https://central.sonatype.com/artifact/commons-io/commons-io commons-lang3 = "3.20.0" # https://central.sonatype.com/artifact/org.apache.commons/commons-lang3 oshi = "6.9.0" # Minecraft 26.2 runtime ceiling @@ -80,7 +77,6 @@ adventure-serializer-plain = { module = "net.kyori:adventure-text-serializer-pla paralithic = { module = "com.dfsek:paralithic", version.ref = "paralithic" } paperlib = { module = "io.papermc:paperlib", version.ref = "paperlib" } bstats = { module = "org.bstats:bstats-bukkit", version.ref = "bstats" } -sentry = { module = "io.sentry:sentry", version.ref = "sentry" } commons-io = { module = "commons-io:commons-io", version.ref = "commons-io" } commons-lang3 = { module = "org.apache.commons:commons-lang3", version.ref = "commons-lang3" } oshi = { module = "com.github.oshi:oshi-core", version.ref = "oshi" } @@ -127,5 +123,3 @@ fabricApi-permission = { module = "net.fabricmc.fabric-api:fabric-permission-api [plugins] shadow = { id = "com.gradleup.shadow", version.ref = "shadow" } slimjar = { id = "de.crazydev22.slimjar", version.ref = "slimjar" } -download = { id = "de.undercouch.download", version.ref = "download" } -sentry = { id = "io.sentry.jvm.gradle", version.ref = "sentryPlugin" } diff --git a/probe/build.gradle b/probe/build.gradle index c01c08d75..027271e54 100644 --- a/probe/build.gradle +++ b/probe/build.gradle @@ -33,7 +33,6 @@ dependencies { runtimeOnly(libs.lz4) runtimeOnly(libs.zip) runtimeOnly(libs.guava) - runtimeOnly(libs.sentry) runtimeOnly(libs.oshi) runtimeOnly(libs.byteBuddy.core) runtimeOnly(libs.byteBuddy.agent) diff --git a/probe/src/main/resources/classload-allowlist.tsv b/probe/src/main/resources/classload-allowlist.tsv index d28c8c8cd..7079199fc 100644 --- a/probe/src/main/resources/classload-allowlist.tsv +++ b/probe/src/main/resources/classload-allowlist.tsv @@ -86,4 +86,3 @@ art.arcane.iris.util.common.plugin.VolmitPlugin BUKKIT_API org.bukkit.event.List art.arcane.iris.util.common.plugin.VolmitSender BUKKIT_API org.bukkit.command.CommandSender art.arcane.iris.util.common.plugin.chunk.ChunkTickets BUKKIT_API org.bukkit.event.Listener art.arcane.iris.util.nbt.common.mca.NBTWorld$Holder BUKKIT_API org.bukkit.Material -art.arcane.iris.util.project.sentry.ServerID$Holder BUKKIT_API org.bukkit.Bukkit