├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── suggestion.yml └── workflows │ ├── build.yml │ └── gitlabsync.yml ├── .gitignore ├── LICENSE ├── common.gradle ├── docs ├── CHANGELOG.md ├── README.md └── changelog.html ├── forge ├── .gitignore ├── build.gradle ├── deps │ └── generic │ │ ├── cloth-config-api │ │ └── 14.0.126 │ │ │ ├── cloth-config-api-14.0.126.jar │ │ │ └── cloth-config-api-14.0.126.pom │ │ ├── fabric-annotations │ │ └── v1.0.0 │ │ │ ├── fabric-annotations-v1.0.0-sources.jar │ │ │ ├── fabric-annotations-v1.0.0.jar │ │ │ └── fabric-annotations-v1.0.0.pom │ │ └── modmenu │ │ └── 5.0.2 │ │ ├── modmenu-5.0.2-obf.jar │ │ ├── modmenu-5.0.2.jar │ │ └── modmenu-5.0.2.pom ├── docs │ └── META-INF │ │ └── mods.toml ├── gradle.properties └── src │ └── main │ ├── java │ └── com │ │ └── aizistral │ │ └── nochatreports │ │ └── forge │ │ ├── NoChatReports.java │ │ └── mixins │ │ └── client │ │ ├── MixinClientConnection.java │ │ ├── MixinClientHandshakePacketListenerImpl.java │ │ └── MixinClientPacketListener.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ └── mods.toml │ ├── mixins │ └── forge │ │ └── nochatreports-forge.mixins.json │ └── pack.mcmeta ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── neoforge ├── .gitignore ├── build.gradle ├── docs │ └── META-INF │ │ └── neoforge.mods.toml ├── gradle.properties └── src │ └── main │ ├── java │ └── com │ │ └── aizistral │ │ └── nochatreports │ │ └── neoforge │ │ ├── NoChatReports.java │ │ └── mixins │ │ └── client │ │ ├── MixinClientConnection.java │ │ ├── MixinClientHandshakePacketListenerImpl.java │ │ └── MixinClientPacketListener.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ └── neoforge.mods.toml │ └── mixins │ └── neoforge │ └── nochatreports-neoforge.mixins.json ├── settings.gradle └── src └── main ├── java └── com │ └── aizistral │ └── nochatreports │ ├── common │ ├── NCRClient.java │ ├── NCRCore.java │ ├── config │ │ ├── ClothConfigIntegration.java │ │ ├── JSONConfig.java │ │ ├── ModMenuIntegration.java │ │ ├── NCRConfig.java │ │ ├── NCRConfigClient.java │ │ ├── NCRConfigCommon.java │ │ ├── NCRServerPreferences.java │ │ └── ServerAddressAdapter.java │ ├── core │ │ ├── ServerDataExtension.java │ │ ├── ServerSafetyLevel.java │ │ ├── ServerSafetyState.java │ │ ├── ServerStatusCache.java │ │ └── SigningMode.java │ ├── gui │ │ ├── AdaptiveWarningScreen.java │ │ ├── AdvancedImageButton.java │ │ ├── AdvancedTooltip.java │ │ ├── AdvancedWidgetTooltipHolder.java │ │ ├── FontHelper.java │ │ ├── GUIShenanigans.java │ │ ├── InvisibleButton.java │ │ ├── RealmsWarningScreen.java │ │ ├── SwitchableSprites.java │ │ ├── TooltipHelper.java │ │ ├── TriageWarningScreen.java │ │ └── UnsafeServerScreen.java │ ├── mixins │ │ ├── client │ │ │ ├── AccessorClientPacketListener.java │ │ │ ├── MixinChatListener.java │ │ │ ├── MixinChatOptionsScreen.java │ │ │ ├── MixinChatScreen.java │ │ │ ├── MixinClientPacketListener.java │ │ │ ├── MixinConnectScreen.java │ │ │ ├── MixinGuiMessageTag.java │ │ │ ├── MixinJoinMultiplayerScreen.java │ │ │ ├── MixinMinecraft.java │ │ │ ├── MixinOnlineServerEntry.java │ │ │ ├── MixinOptions.java │ │ │ ├── MixinPlayerEntry.java │ │ │ ├── MixinRealmsConnect.java │ │ │ ├── MixinRowHelper.java │ │ │ ├── MixinServerData.java │ │ │ ├── MixinServerStatusPinger$1.java │ │ │ ├── MixinTitleScreen.java │ │ │ ├── MixinToastComponent.java │ │ │ └── MixinYggdrasilUserApiService.java │ │ ├── common │ │ │ └── MixinJsonByteBufCodec.java │ │ └── server │ │ │ ├── MixinDedicatedServer.java │ │ │ ├── MixinPlayerList.java │ │ │ ├── MixinServerCommonPacketListenerImpl.java │ │ │ ├── MixinServerboundChatCommandSignedPacket.java │ │ │ ├── MixinServerboundChatPacket.java │ │ │ └── MixinServerboundChatSessionUpdatePacket.java │ └── platform │ │ ├── Platform.java │ │ ├── PlatformProvider.java │ │ ├── PlatformUtils.java │ │ └── events │ │ ├── ClientEvents.java │ │ ├── PlatformEvent.java │ │ └── particular │ │ ├── Disconnect.java │ │ └── PlayReady.java │ └── fabric │ ├── NoChatReports.java │ ├── NoChatReportsClient.java │ └── mixins │ └── client │ └── MixinMinecraft.java └── resources ├── assets └── nochatreports │ ├── lang │ ├── ca_es.json │ ├── cs_cz.json │ ├── da_dk.json │ ├── de_de.json │ ├── en_pt.json │ ├── en_us.json │ ├── es_ar.json │ ├── es_es.json │ ├── es_mx.json │ ├── et_ee.json │ ├── fi_fi.json │ ├── fr_fr.json │ ├── id_id.json │ ├── it_it.json │ ├── ja_jp.json │ ├── ko_kr.json │ ├── ms_my.json │ ├── nl_nl.json │ ├── pl_pl.json │ ├── pt_br.json │ ├── ro_ro.json │ ├── ru_ru.json │ ├── sk_sk.json │ ├── th_th.json │ ├── tr_tr.json │ ├── uk_ua.json │ ├── vi_vn.json │ ├── zh_cn.json │ ├── zh_tw.json │ └── zlm_arab.json │ └── textures │ ├── gui │ └── sprites │ │ ├── config_reload_button.png │ │ ├── config_reload_button_disabled.png │ │ ├── config_reload_button_hovered.png │ │ ├── ncr_active_button.png │ │ ├── ncr_active_button_disabled.png │ │ ├── ncr_active_button_hovered.png │ │ ├── ncr_inactive_button.png │ │ ├── ncr_inactive_button_disabled.png │ │ ├── ncr_inactive_button_hovered.png │ │ ├── report_server_button.png │ │ ├── report_server_button_disabled.png │ │ ├── report_server_button_hovered.png │ │ ├── safety_state │ │ ├── insecure.png │ │ ├── insecure_disabled.png │ │ ├── insecure_hovered.png │ │ ├── realms.png │ │ ├── realms_disabled.png │ │ ├── realms_hovered.png │ │ ├── secure.png │ │ ├── secure_disabled.png │ │ ├── secure_hovered.png │ │ ├── undefined.png │ │ ├── undefined_disabled.png │ │ ├── undefined_hovered.png │ │ ├── unintrusive.png │ │ ├── unintrusive_disabled.png │ │ ├── unintrusive_hovered.png │ │ ├── unknown.png │ │ ├── unknown_disabled.png │ │ └── unknown_hovered.png │ │ └── verified_server.png │ └── misc │ └── ncr_logo.png ├── fabric.mod.json ├── mixins ├── common │ └── nochatreports.mixins.json └── fabric │ └── nochatreports-fabric.mixins.json └── nochatreports.accesswidener /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.buymeacoffee.com/aizistral 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/gitlabsync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/.github/workflows/gitlabsync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/LICENSE -------------------------------------------------------------------------------- /common.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/docs/changelog.html -------------------------------------------------------------------------------- /forge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/.gitignore -------------------------------------------------------------------------------- /forge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/build.gradle -------------------------------------------------------------------------------- /forge/deps/generic/cloth-config-api/14.0.126/cloth-config-api-14.0.126.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/cloth-config-api/14.0.126/cloth-config-api-14.0.126.jar -------------------------------------------------------------------------------- /forge/deps/generic/cloth-config-api/14.0.126/cloth-config-api-14.0.126.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/cloth-config-api/14.0.126/cloth-config-api-14.0.126.pom -------------------------------------------------------------------------------- /forge/deps/generic/fabric-annotations/v1.0.0/fabric-annotations-v1.0.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/fabric-annotations/v1.0.0/fabric-annotations-v1.0.0-sources.jar -------------------------------------------------------------------------------- /forge/deps/generic/fabric-annotations/v1.0.0/fabric-annotations-v1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/fabric-annotations/v1.0.0/fabric-annotations-v1.0.0.jar -------------------------------------------------------------------------------- /forge/deps/generic/fabric-annotations/v1.0.0/fabric-annotations-v1.0.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/fabric-annotations/v1.0.0/fabric-annotations-v1.0.0.pom -------------------------------------------------------------------------------- /forge/deps/generic/modmenu/5.0.2/modmenu-5.0.2-obf.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/modmenu/5.0.2/modmenu-5.0.2-obf.jar -------------------------------------------------------------------------------- /forge/deps/generic/modmenu/5.0.2/modmenu-5.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/modmenu/5.0.2/modmenu-5.0.2.jar -------------------------------------------------------------------------------- /forge/deps/generic/modmenu/5.0.2/modmenu-5.0.2.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/deps/generic/modmenu/5.0.2/modmenu-5.0.2.pom -------------------------------------------------------------------------------- /forge/docs/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/docs/META-INF/mods.toml -------------------------------------------------------------------------------- /forge/gradle.properties: -------------------------------------------------------------------------------- 1 | archives_base_name=NoChatReports-FORGE -------------------------------------------------------------------------------- /forge/src/main/java/com/aizistral/nochatreports/forge/NoChatReports.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/java/com/aizistral/nochatreports/forge/NoChatReports.java -------------------------------------------------------------------------------- /forge/src/main/java/com/aizistral/nochatreports/forge/mixins/client/MixinClientConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/java/com/aizistral/nochatreports/forge/mixins/client/MixinClientConnection.java -------------------------------------------------------------------------------- /forge/src/main/java/com/aizistral/nochatreports/forge/mixins/client/MixinClientHandshakePacketListenerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/java/com/aizistral/nochatreports/forge/mixins/client/MixinClientHandshakePacketListenerImpl.java -------------------------------------------------------------------------------- /forge/src/main/java/com/aizistral/nochatreports/forge/mixins/client/MixinClientPacketListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/java/com/aizistral/nochatreports/forge/mixins/client/MixinClientPacketListener.java -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /forge/src/main/resources/mixins/forge/nochatreports-forge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/resources/mixins/forge/nochatreports-forge.mixins.json -------------------------------------------------------------------------------- /forge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/forge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/gradlew.bat -------------------------------------------------------------------------------- /neoforge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/.gitignore -------------------------------------------------------------------------------- /neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/build.gradle -------------------------------------------------------------------------------- /neoforge/docs/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/docs/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/gradle.properties: -------------------------------------------------------------------------------- 1 | archives_base_name=NoChatReports-NEOFORGE -------------------------------------------------------------------------------- /neoforge/src/main/java/com/aizistral/nochatreports/neoforge/NoChatReports.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/src/main/java/com/aizistral/nochatreports/neoforge/NoChatReports.java -------------------------------------------------------------------------------- /neoforge/src/main/java/com/aizistral/nochatreports/neoforge/mixins/client/MixinClientConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/src/main/java/com/aizistral/nochatreports/neoforge/mixins/client/MixinClientConnection.java -------------------------------------------------------------------------------- /neoforge/src/main/java/com/aizistral/nochatreports/neoforge/mixins/client/MixinClientHandshakePacketListenerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/src/main/java/com/aizistral/nochatreports/neoforge/mixins/client/MixinClientHandshakePacketListenerImpl.java -------------------------------------------------------------------------------- /neoforge/src/main/java/com/aizistral/nochatreports/neoforge/mixins/client/MixinClientPacketListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/src/main/java/com/aizistral/nochatreports/neoforge/mixins/client/MixinClientPacketListener.java -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/src/main/resources/mixins/neoforge/nochatreports-neoforge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/neoforge/src/main/resources/mixins/neoforge/nochatreports-neoforge.mixins.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/NCRClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/NCRClient.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/NCRCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/NCRCore.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/ClothConfigIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/ClothConfigIntegration.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/JSONConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/JSONConfig.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/ModMenuIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/ModMenuIntegration.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/NCRConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/NCRConfig.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/NCRConfigClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/NCRConfigClient.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/NCRConfigCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/NCRConfigCommon.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/NCRServerPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/NCRServerPreferences.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/config/ServerAddressAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/config/ServerAddressAdapter.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/core/ServerDataExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/core/ServerDataExtension.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/core/ServerSafetyLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/core/ServerSafetyLevel.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/core/ServerSafetyState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/core/ServerSafetyState.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/core/ServerStatusCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/core/ServerStatusCache.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/core/SigningMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/core/SigningMode.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/AdaptiveWarningScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/AdaptiveWarningScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/AdvancedImageButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/AdvancedImageButton.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/AdvancedTooltip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/AdvancedTooltip.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/AdvancedWidgetTooltipHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/AdvancedWidgetTooltipHolder.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/FontHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/FontHelper.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/GUIShenanigans.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/GUIShenanigans.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/InvisibleButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/InvisibleButton.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/RealmsWarningScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/RealmsWarningScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/SwitchableSprites.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/SwitchableSprites.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/TooltipHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/TooltipHelper.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/TriageWarningScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/TriageWarningScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/gui/UnsafeServerScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/gui/UnsafeServerScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/AccessorClientPacketListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/AccessorClientPacketListener.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinChatListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinChatListener.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinChatOptionsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinChatOptionsScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinChatScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinChatScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinClientPacketListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinClientPacketListener.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinConnectScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinConnectScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinGuiMessageTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinGuiMessageTag.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinJoinMultiplayerScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinJoinMultiplayerScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinMinecraft.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinMinecraft.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinOnlineServerEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinOnlineServerEntry.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinOptions.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinPlayerEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinPlayerEntry.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinRealmsConnect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinRealmsConnect.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinRowHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinRowHelper.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinServerData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinServerData.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinServerStatusPinger$1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinServerStatusPinger$1.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinTitleScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinTitleScreen.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinToastComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinToastComponent.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinYggdrasilUserApiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/client/MixinYggdrasilUserApiService.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/common/MixinJsonByteBufCodec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/common/MixinJsonByteBufCodec.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinDedicatedServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinDedicatedServer.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinPlayerList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinPlayerList.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerCommonPacketListenerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerCommonPacketListenerImpl.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerboundChatCommandSignedPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerboundChatCommandSignedPacket.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerboundChatPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerboundChatPacket.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerboundChatSessionUpdatePacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/mixins/server/MixinServerboundChatSessionUpdatePacket.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/platform/Platform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/platform/Platform.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/platform/PlatformProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/platform/PlatformProvider.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/platform/PlatformUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/platform/PlatformUtils.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/platform/events/ClientEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/platform/events/ClientEvents.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/platform/events/PlatformEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/platform/events/PlatformEvent.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/platform/events/particular/Disconnect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/platform/events/particular/Disconnect.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/common/platform/events/particular/PlayReady.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/common/platform/events/particular/PlayReady.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/fabric/NoChatReports.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/fabric/NoChatReports.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/fabric/NoChatReportsClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/fabric/NoChatReportsClient.java -------------------------------------------------------------------------------- /src/main/java/com/aizistral/nochatreports/fabric/mixins/client/MixinMinecraft.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/java/com/aizistral/nochatreports/fabric/mixins/client/MixinMinecraft.java -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/ca_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/ca_es.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/cs_cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/cs_cz.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/da_dk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/da_dk.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/de_de.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/en_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/en_pt.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/es_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/es_ar.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/es_es.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/es_mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/es_mx.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/et_ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/et_ee.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/fi_fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/fi_fi.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/fr_fr.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/id_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/id_id.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/it_it.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/ja_jp.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/ko_kr.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/ms_my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/ms_my.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/nl_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/nl_nl.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/pl_pl.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/pt_br.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/ro_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/ro_ro.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/ru_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/sk_sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/sk_sk.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/th_th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/th_th.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/tr_tr.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/uk_ua.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/vi_vn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/vi_vn.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/zh_tw.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/lang/zlm_arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/lang/zlm_arab.json -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/config_reload_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/config_reload_button.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/config_reload_button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/config_reload_button_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/config_reload_button_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/config_reload_button_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_active_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_active_button.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_active_button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_active_button_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_active_button_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_active_button_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_inactive_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_inactive_button.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_inactive_button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_inactive_button_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_inactive_button_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/ncr_inactive_button_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/report_server_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/report_server_button.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/report_server_button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/report_server_button_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/report_server_button_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/report_server_button_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/insecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/insecure.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/insecure_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/insecure_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/insecure_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/insecure_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/realms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/realms.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/realms_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/realms_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/realms_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/realms_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/secure.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/secure_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/secure_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/secure_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/secure_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/undefined.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/undefined_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/undefined_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/undefined_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/undefined_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unintrusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unintrusive.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unintrusive_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unintrusive_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unintrusive_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unintrusive_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unknown.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unknown_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unknown_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unknown_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/safety_state/unknown_hovered.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/gui/sprites/verified_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/gui/sprites/verified_server.png -------------------------------------------------------------------------------- /src/main/resources/assets/nochatreports/textures/misc/ncr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/assets/nochatreports/textures/misc/ncr_logo.png -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/mixins/common/nochatreports.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/mixins/common/nochatreports.mixins.json -------------------------------------------------------------------------------- /src/main/resources/mixins/fabric/nochatreports-fabric.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/mixins/fabric/nochatreports-fabric.mixins.json -------------------------------------------------------------------------------- /src/main/resources/nochatreports.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aizistral-Studios/No-Chat-Reports/HEAD/src/main/resources/nochatreports.accesswidener --------------------------------------------------------------------------------