更新MC版本到 1.21.8 ,更新部分模组至最新版本,添加 NoChatReports 。

This commit is contained in:
枫沐x
2025-12-29 14:12:59 +08:00
parent c79e49b096
commit 1b3dfcdc0a
205 changed files with 1172 additions and 360 deletions

View File

@@ -0,0 +1,209 @@
#Screen Config
[screen]
#The duration of GUI background color and blur radius animation in milliseconds. (0 = OFF)
# Default: 200
# Range: 0 ~ 800
animationDuration = 200
#The GUI background color in #RRGGBB or #AARRGGBB format. Default value: #99000000
#Can be one to four values representing top left, top right, bottom right and bottom left color.
#Multiple values produce a gradient effect, whereas one value produce a solid color.
#When values is less than 4, the rest of the corner color will be replaced by the last value.
backgroundColor = ["#99000000"]
#Add Gaussian blur effect to GUI background when opened.
#Disable this if you run into a problem or are on low-end PCs
blurEffect = true
#Whether to add blur effect to GUI screens that have a background and do not originate from Modern UI.
additionalBlurEffect = false
#Whether to replace Vanilla 3-pass box blur with Modern UI Gaussian blur.
#This gives you better quality and performance, recommend setting this to true.
overrideVanillaBlur = true
#The kernel radius for gaussian convolution blur effect, 0 = disable.
#samples per pixel = ((radius * 2) + 1) * 2, sigma = radius / 2.
# Default: 7
# Range: 0 ~ 18
blurRadius = 7
#A list of GUI screen superclasses that won't activate blur effect when opened.
blurBlacklist = ["net.minecraft.class_408"]
#(Beta) Pause the game when inventory (also includes creative mode) opened.
inventoryPause = false
#Framerate limit on window inactive (out of focus), 0 = no change.
# Default: 60
# Range: 0 ~ 250
framerateInactive = 60
#Master volume multiplier on window inactive (out of focus or minimized), 1 = no change.
# Default: 0.5
# Range: 0.0 ~ 1.0
masterVolumeInactive = 0.5
#Master volume multiplier on window minimized, 1 = same as master volume inactive.
#This value will be no greater than master volume inactive.
# Default: 0.25
# Range: 0.0 ~ 1.0
masterVolumeMinimized = 0.25
#Tooltip Config
[tooltip]
#Whether to enable Modern UI enhanced tooltip, or back to vanilla default.
enable = true
#Whether to use rounded tooltip shapes, or to use vanilla style.
roundedShape = true
#True to center the tooltip title if rendering an item's tooltip.
#Following lines are not affected by this option.
centerTitle = true
#True to add a title break below the tooltip title line.
#TitleBreak and CenterTitle will work/appear at the same time.
titleBreak = true
#True to exactly position tooltip to pixel grid, smoother movement.
exactPositioning = true
#The tooltip background color in #RRGGBB or #AARRGGBB format. Default: #E6000000
#Can be one to four values representing top left, top right, bottom right and bottom left color.
#Multiple values produce a gradient effect, whereas one value produces a solid color.
#If less than 4 are provided, repeat the last value.
colorFill = ["#E6000000"]
#The tooltip border color in #RRGGBB or #AARRGGBB format. Default: #F0AADCF0, #F0DAD0F4, #F0FFC3F7 and #F0DAD0F4
#Can be one to four values representing top left, top right, bottom right and bottom left color.
#Multiple values produce a gradient effect, whereas one value produces a solid color.
#If less than 4 are provided, repeat the last value.
colorStroke = ["#FFC2D0D6", "#FFE7DAE5", "#FFCCDAC8", "#FFC8B9AC"]
#The cycle time of tooltip border color in milliseconds. (0 = OFF)
# Default: 1000
# Range: 0 ~ 5000
borderCycleTime = 1000
#The width of tooltip border, if rounded, in GUI Scale Independent Pixels.
# Default: 1.3333333333333333
# Range: 0.5 ~ 2.5
borderWidth = 1.3333333333333333
#The corner radius of tooltip border, if rounded, in GUI Scale Independent Pixels.
# Default: 4.0
# Range: 0.0 ~ 8.0
cornerRadius = 4.0
#The shadow radius of tooltip, if rounded, in GUI Scale Independent Pixels.
#No impact on performance.
# Default: 10.0
# Range: 0.0 ~ 32.0
shadowRadius = 10.0
#The shadow opacity of tooltip, if rounded. No impact on performance.
# Default: 0.25
# Range: 0.0 ~ 1.0
shadowOpacity = 0.25
#When true, tooltip border colors adapt to item's name and rarity.
adaptiveColors = true
#Amount to scroll the tooltip in response to a arrow key pressed event.
# Default: 60
# Range: 0 ~ 320
arrowScrollFactor = 60
#Provide line wrapping and optimization for tooltip components.
lineWrapping = true
#General Config
[general]
#Play a sound effect when the game is loaded.
ding = true
#Specify a sound event to custom the ding sound effect.
#The default is "minecraft:entity.experience_orb.pickup"
dingSound = ""
#Specify a volume multiplier to the ding sound effect.
# Default: 0.25
# Range: 0.0 ~ 10.0
dingVolume = 0.25
#Control the window mode, normal mode does nothing.
#Allowed Values: NORMAL, FULLSCREEN, FULLSCREEN_BORDERLESS, MAXIMIZED, MAXIMIZED_BORDERLESS, WINDOWED, WINDOWED_BORDERLESS
windowMode = "NORMAL"
#Whether to replace vanilla GUI scale button to slider with tips.
useNewGuiScale = true
#Remove telemetry event of client behaviors.
removeTelemetry = false
#Allow Slack or Discord shortcodes to replace Unicode Emoji Sequences in chat.
emojiShortcodes = true
#View Config
[view]
#Force layout direction to RTL, otherwise, the current Locale setting.
forceRtl = false
#The global font scale used with sp units.
# Default: 1.0
# Range: 0.5 ~ 2.0
fontScale = 1.0
#Default scrollbar size in dips.
# Default: 4
# Range: 0 ~ 1024
scrollbarSize = 4
#Distance a touch can wander before we think the user is scrolling in dips.
# Default: 4
# Range: 0 ~ 1024
touchSlop = 4
#Distance a hover can wander while it is still considered "stationary" in dips.
# Default: 4
# Range: 0 ~ 1024
hoverSlop = 4
#Minimum size of the touch target for a scrollbar in dips.
# Default: 16
# Range: 0 ~ 1024
minScrollbarTouchTarget = 16
#Minimum velocity to initiate a fling in dips per second.
# Default: 50
# Range: 0 ~ 32767
minimumFlingVelocity = 50
#Maximum velocity to initiate a fling in dips per second.
# Default: 8000
# Range: 0 ~ 32767
maximumFlingVelocity = 8000
#The coefficient of friction applied to flings/scrolls.
# Default: 0.014999999664723873
# Range: 0.001 ~ 7.389
scrollFriction = 0.014999999664723873
#Max distance in dips to overscroll for edge effects.
# Default: 0
# Range: 0 ~ 1024
overscrollDistance = 0
#Max distance in dips to overfling for edge effects.
# Default: 12
# Range: 0 ~ 1024
overflingDistance = 12
#Amount to scroll in response to a vertical scroll event, in dips per axis value.
# Default: 64.0
# Range: 0.0 ~ 1024.0
verticalScrollFactor = 64.0
#Amount to scroll in response to a horizontal scroll event, in dips per axis value.
# Default: 64.0
# Range: 0.0 ~ 1024.0
horizontalScrollFactor = 64.0
#The duration in milliseconds before a hover event causes a tooltip to be shown.
# Default: 500
# Range: 0 ~ 1200
hoverTooltipShowTimeout = 500
#The duration in milliseconds before mouse inactivity causes a tooltip to be hidden.
# Default: 30000
# Range: 3000 ~ 120000
hoverTooltipHideTimeout = 30000
#Font Config
[font]
#The first font family to use. See fallbackFontFamilyList
firstFontFamily = "Inter Frozen Medium"
#A set of fallback font families to determine the typeface to use.
#The order is first > fallbacks. TrueType & OpenType are supported.
#Each element can be one of the following two cases:
#1) Name of registered font family, for instance: Segoe UI
#2) Path of font files on your PC, for instance: /usr/shared/fonts/x.otf
#Registered font families include:
#1) OS builtin fonts.
#2) Font files in fontRegistrationList.
#3) Font files in '/resourcepacks' directory.
#4) Font files under 'modernui:font' in resource packs.
#Note that for TTC/OTC font, you should register it and select one of font families.
#Otherwise, only the first font family from the TrueType/OpenType Collection will be used.
#This is only read once when the game is loaded, you can reload via in-game GUI.
fallbackFontFamilyList = ["Source Han Sans CN Medium", "Noto Sans", "Segoe UI Variable", "Segoe UI", "San Francisco", "Open Sans", "SimHei", "STHeiti", "Segoe UI Symbol", "mui-i18n-compat"]
#A set of additional font files (or directories) to register.
#For TrueType/OpenType Collections, all contained font families will be registered.
#Registered fonts can be referenced in Modern UI and Minecraft (Modern Text Engine).
#For example, "E:/Fonts" means all font files in that directory will be registered.
#System requires random access to these files, you should not remove them while running.
#This is only read once when the game is loaded, i.e. registration.
fontRegistrationList = []
#Whether to use Google Noto Color Emoji, otherwise grayscale emoji (faster).
#See Unicode 15.0 specification for details on how this affects text layout.
useColorEmoji = true
#When enabled, text layout uses fractional metrics with no font hinting and applies sub-pixel positioning.
#When disabled, text layout uses integer metrics with full font hinting.
linearMetrics = true

View File

@@ -0,0 +1,7 @@
#Developer Config
[developer]
#Whether to enable developer mode.
enableDeveloperMode = false
# Default: 0
# Range: > -2147483648
oneTimeEvents = 0

View File

@@ -0,0 +1,107 @@
#Text Engine Config
[text]
#Allow text renderer to drop shadow, setting to false can improve performance.
allowShadow = true
#Fix resolution level at 2. When the GUI scale increases, the resolution level remains.
#Then GUI scale should be even numbers (2, 4, 6...), based on Minecraft GUI system.
#If your fonts are not bitmap fonts, then you should keep this setting false.
fixedResolution = false
#Control base font size, in GUI scaled pixels. The default and vanilla value is 8.
#For bitmap fonts, 8 represents a glyph size of 8x or 16x if fixed resolution.
#This option only applies to TrueType fonts.
# Default: 8.0
# Range: 6.5 ~ 9.5
baseFontSize = 8.0
#Control vertical baseline for vanilla text layout, in GUI scaled pixels.
#The vanilla default value is 7.
# Default: 7.0
# Range: 4.0 ~ 10.0
baselineShift = 7.0
#Control the text shadow offset for vanilla text rendering, in GUI scaled pixels.
# Default: 0.5
# Range: 0.20000000298023224 ~ 2.0
shadowOffset = 0.5
#Control the text outline offset for vanilla text rendering, in GUI scaled pixels.
# Default: 0.5
# Range: 0.20000000298023224 ~ 2.0
outlineOffset = 0.5
#Control the horizontal offset for bitmap fonts, in GUI scaled pixels.
# Default: 0.5
# Range: 0.0 ~ 1.0
bitmapOffset = 0.5
#Set the recycle time of layout cache in seconds, using least recently used algorithm.
# Default: 6
# Range: 2 ~ 15
cacheLifespan = 6
#The bidirectional text heuristic algorithm. The default is FirstStrong (Locale).
#This will affect which BiDi algorithm to use during text layout.
#Allowed Values: FIRST_STRONG, ANY_RTL, LTR, RTL, LOCALE, FIRST_STRONG_LTR, FIRST_STRONG_RTL
textDirection = "FIRST_STRONG"
#Whether to use Modern UI text rendering pipeline in 3D world.
#Disabling this means that SDF text and rendering optimization are no longer effective.
#But text rendering can be compatible with OptiFine Shaders and Iris Shaders.
#This does not affect text rendering in GUI.
#This option only applies to TrueType fonts.
useTextShadersInWorld = true
#For "minecraft:default" font, should we keep some glyph providers of them?
#Ignore All: Only use Modern UI typeface list.
#Keep ASCII: Include minecraft:font/ascii.png, minecraft:font/accented.png, minecraft:font/nonlatin_european.png
#Keep Other: Include providers other than ASCII and Unicode font.
#Keep All: Include all except Unicode font.
#Only Include: Only include providers that specified by defaultFontRuleSet.
#Only Exclude: Only exclude providers that specified by defaultFontRuleSet.
#Allowed Values: IGNORE_ALL, KEEP_ASCII, KEEP_OTHER, KEEP_ALL, ONLY_INCLUDE, ONLY_EXCLUDE
defaultFontBehavior = "ONLY_EXCLUDE"
#Used when defaultFontBehavior is either ONLY_INCLUDE or ONLY_EXCLUDE.
#This specifies a set of regular expressions to match the glyph provider name.
#For bitmap providers, this is the texture path without 'textures/'.
#For TTF providers, this is the TTF file path without 'font/'.
#For space providers, this is "font_name / minecraft:space",
#where font_name is font definition path without 'font/'.
defaultFontRuleSet = ["^minecraft:font\\/(nonlatin_european|accented|ascii|element_ideographs|cjk_punctuations|ellipsis|2em_dash)\\.png$", "^minecraft:include\\/space \\/ minecraft:space$", "^minecraft:font\\/(mcsans|emoji)_05_00\\d.png$"]
#Whether to use text component object as hash key to lookup in layout cache.
#If you find that Modern UI text rendering is not compatible with some mods,
#you can disable this option for compatibility, but this will decrease performance a bit.
#Modern UI will use another cache strategy if this is disabled.
useComponentCache = true
#Allow text layout to be computed from background threads (not cached).
#Otherwise, block the current thread and wait for main thread.
allowAsyncLayout = true
#See CSS line-break property, https://developer.mozilla.org/en-US/docs/Web/CSS/line-break
#Allowed Values: AUTO, LOOSE, NORMAL, STRICT
lineBreakStyle = "AUTO"
#Allowed Values: AUTO, PHRASE
lineBreakWordStyle = "AUTO"
#When enabled, Modern UI will compute texel density in device-space to determine whether to use SDF text or bilinear sampling.
#This feature requires GLSL 400 or has no effect.
#This generally decreases performance but provides better rendering quality.
#This option only applies to TrueType fonts. May not be compatible with OptiFine.
smartSDFShaders = true
#When rendering in 2D, this option allows Modern UI to exactly compute font size in device-space from the current coordinate transform matrix.
#This provides perfect text rendering for scaling-down texts in vanilla, but may increase GPU memory usage.
#When disabled, Modern UI will use SDF text rendering if appropriate.
#This option only applies to TrueType fonts.
computeDeviceFontSize = true
#When enabled, Modern UI will use SDF text rendering if appropriate.
#Otherwise, it uses nearest-neighbor or bilinear sampling based on texel density.
#This option only applies to TrueType fonts.
allowSDFTextIn2D = true
#When enabled, the outline of the experience level text will be tweaked.
tweakExperienceText = true
#Control the anti-aliasing of raw glyph rasterization.
antiAliasing = true
#When enabled, text layout uses fractional metrics with no font hinting.
#When disabled, text layout uses integer metrics with full font hinting.
#Disable if on low-res monitor; enable for linear text.
linearMetrics = false
#Control the minimum pixel density for SDF text and text in 3D world rendering.
#This value will be no less than current GUI scale.
#Recommend setting a higher value on high-res monitor and powerful PC hardware.
# Default: 4
# Range: 4 ~ 10
minPixelDensityForSDF = 4
#Enable linear sampling for A8 font atlases with mipmaps, mag filter will be always
#NEAREST. We prefer computeDeviceFontSize and allowSDFTextIn2D, then setting this to
#false can improve performance. If either of the above two is false or Shaders are active,
#then setting this to true can improve readability.
linearSamplingA8Atlas = false

View File

@@ -0,0 +1,20 @@
{
"defaultSigningMode": "PROMPT",
"enableMod": true,
"showNCRButton": true,
"showReloadButton": true,
"verifiedIconEnabled": true,
"showServerSafety": true,
"hideInsecureMessageIndicators": true,
"hideModifiedMessageIndicators": true,
"hideSystemMessageIndicators": true,
"hideWarningToast": true,
"hideSigningRequestMessage": false,
"alwaysHideReportButton": false,
"skipRealmsWarning": false,
"disableTelemetry": true,
"removeTelemetryButton": true,
"demandOnServer": false,
"verifiedIconOffsetX": 0,
"verifiedIconOffsetY": 0
}

View File

@@ -0,0 +1,7 @@
{
"demandOnClientMessage": "You do not have No Chat Reports, and this server is configured to require it on client!",
"demandOnClient": false,
"convertToGameMessage": true,
"addQueryData": true,
"enableDebugLog": false
}

View File

@@ -0,0 +1,3 @@
{
"signingModes": {}
}

View File

@@ -0,0 +1,3 @@
# No Chat Reports
You can find updated documentation of configuration files on the wiki:
https://github.com/Aizistral-Studios/No-Chat-Reports/wiki/Configuration-Files

View File

@@ -1,8 +1,9 @@
{
"renderPosition": "BEFORE_NAME",
"renderPosition": "BEFORE_LINE",
"offsetNonPlayerText": true,
"senderDetection": "UUID_AND_HEURISTIC",
"smartHeuristics": true,
"handleSystemMessages": true,
"drawShadow": true,
"nameAliases": { }
}

View File

@@ -1,6 +1,6 @@
{
"Settings": {
"ArmorAroundHotbar": false,
"ArmorAroundHotbar": true,
"HUDCorner": "Bottom-Right",
"EffectDuration": true,
"HideDamageOverPercent": 100,

View File

@@ -1,5 +1,5 @@
#Indigo properties file
#Tue May 13 23:58:08 CST 2025
#Mon Dec 29 14:09:57 CST 2025
always-tesselate-blocks=auto
ambient-occlusion-mode=hybrid
debug-compare-lighting=auto

View File

@@ -1,17 +1,29 @@
{
"screenBlacklist": [
"com.mamiyaotaru.voxelmap.persistent.GuiPersistentMap"
],
"screenWhitelist": [
"net.minecraft.class_473",
"net.minecraft.class_498",
"net.minecraft.class_442",
"net.minecraft.class_7744",
"journeymap.client.ui.waypoint.WaypointEditor",
"com.ldtteam.blockout.BOScreen"
],
"inputBlacklist": [],
"inputWhitelist": [],
"enableScreenRecovering": false,
"recoveredScreens": []
"basicSettings": {
"screenWhitelist": [
"com.simibubi.create.content.equipment.clipboard.ClipboardScreen",
"net.mehvahdjukaar.supplementaries.client.screens.TextHolderEditScreen",
"net.minecraft.class_7743"
],
"enableScreenRecovering": false,
"recoveredScreens": [],
"englishStateImpl": "CONVERSION_STATUS",
"primaryEnglishState": "CJK"
},
"advanceSettings": {
"enableCharSimulation": false
},
"windowsCompatibilitySettings": {
"enableConversionStatusApi": true,
"enableCursorPositionTracking": true,
"enableCompositionFontTweaks": true
},
"linuxCompatibilitySettings": {
"enableKeyboardPatch": true,
"ibusOnArgName": "libpinyin",
"ibusOffArgName": "xkb:us::eng",
"fcitx5OnArgName": "-o",
"fcitx5OffArgName": "-c",
"fcitx5OnStateName": "2"
}
}

View File

@@ -1,9 +1,9 @@
#This file stores configuration options for Iris, such as the currently active shaderpack
#Tue May 13 23:58:11 CST 2025
#Mon Dec 29 14:11:19 CST 2025
allowUnknownShaders=false
colorSpace=SRGB
disableUpdateMessage=false
enableDebugOptions=false
enableShaders=false
maxShadowRenderDistance=32
shaderPack=BSL_v8.4.01.2.zip
shaderPack=BSL_v10.1p1.zip

View File

@@ -12,18 +12,14 @@
"keys": ""
}
},
"actionbarHudTicks": 60,
"inGameMessageTimeout": 5.0,
"enableConfigSwitcher": {
"enabled": true,
"hotkey": {
"keys": ""
}
},
"enableStatusEffectsShift": {
"enabled": true,
"hotkey": {
"keys": ""
}
},
"realmsCommonConfig": true
},
"Debug": {

View File

@@ -1,64 +1,65 @@
{
"InfoLineOrders": {
"infoFPS": 0,
"infoMemoryUsage": 0,
"infoTimeIRL": 0,
"infoTimeWorld": 0,
"infoWorldTimeFormatted": 0,
"infoCoordinates": 0,
"infoCoordinatesScaled": 0,
"infoBlockPosition": 0,
"infoChunkPosition": 0,
"infoBlockInChunk": 0,
"infoDimensionId": 0,
"infoFacing": 0,
"infoRotationYaw": 0,
"infoRotationPitch": 0,
"infoBlockBreakSpeed": 0,
"infoPlayerExperience": 0,
"infoSpeed": 0,
"infoSpeedAxis": 0,
"infoSpeedHV": 0,
"infoSprinting": 0,
"infoServerTPS": 0,
"§6infoServux§r": 0,
"infoPing": 0,
"§6infoWeather§r": 0,
"infoTimeTotalModulo": 0,
"infoTimeDayModulo": 0,
"§6infoMobCaps§r": 0,
"infoParticleCount": 0,
"infoDifficulty": 0,
"infoEntities": 0,
"infoEntitiesClientWorld": 0,
"infoTileEntities": 0,
"infoLightLevel": 0,
"infoBiome": 0,
"infoBiomeRegistryName": 0,
"infoDistance": 0,
"infoLoadedChunksCount": 0,
"infoChunkSections": 0,
"infoChunkSectionsLine": 0,
"infoChunkUpdates": 0,
"infoRegionFile": 0,
"infoSlimeChunk": 0,
"infoLookingAtBlock": 0,
"infoLookingAtBlockInChunk": 0,
"infoBlockProperties": 0,
"§6infoBeeCount§r": 0,
"§6infoComparatorOutput§r": 0,
"infoHoneyLevel": 0,
"§6infoFurnaceXp§r": 0,
"infoEntityRegistryName": 0,
"infoLookingAtEntity": 0,
"infoLookingAtEffects": 0,
"infoLookingAtPlayerExp": 0,
"infoZombieConversion": 0,
"infoHorseSpeed": 0,
"infoHorseJump": 0,
"infoPandaGene": 0,
"infoMemoryUsage": 1,
"infoTimeIRL": 2,
"infoTimeWorld": 3,
"infoWorldTimeFormatted": 4,
"infoCoordinates": 5,
"infoCoordinatesScaled": 6,
"infoBlockPosition": 7,
"infoChunkPosition": 8,
"infoBlockInChunk": 9,
"infoDimensionId": 10,
"infoFacing": 11,
"infoRotationYaw": 12,
"infoRotationPitch": 13,
"infoBlockBreakSpeed": 14,
"infoPlayerExperience": 15,
"infoSpeed": 16,
"infoSpeedAxis": 17,
"infoSpeedHV": 18,
"infoSprinting": 19,
"infoServerTPS": 20,
"§6infoServux§r": 21,
"infoPing": 22,
"§6infoWeather§r": 23,
"infoTimeTotalModulo": 24,
"infoTimeDayModulo": 25,
"§6infoMobCaps§r": 26,
"infoParticleCount": 27,
"infoDifficulty": 28,
"infoEntities": 29,
"infoEntitiesClientWorld": 30,
"infoTileEntities": 31,
"infoLightLevel": 32,
"infoBiome": 33,
"infoBiomeRegistryName": 34,
"infoDistance": 35,
"infoLoadedChunksCount": 36,
"infoChunkSections": 37,
"infoChunkSectionsLine": 38,
"infoChunkUpdates": 39,
"infoRegionFile": 40,
"infoSlimeChunk": 41,
"infoLookingAtBlock": 42,
"infoLookingAtBlockInChunk": 43,
"infoBlockProperties": 44,
"§6infoBeeCount§r": 45,
"§6infoComparatorOutput§r": 46,
"infoHoneyLevel": 47,
"§6infoFurnaceXp§r": 48,
"infoEntityRegistryName": 49,
"infoLookingAtEntity": 50,
"infoLookingAtEffects": 51,
"infoLookingAtPlayerExp": 52,
"infoZombieConversion": 53,
"infoHorseSpeed": 54,
"infoHorseJump": 55,
"infoPandaGene": 56,
"infoDolphinTreasure": 57,
"infoEntityVariant": 0
"infoEntityVariant": 58,
"infoEntityHomePos": 59
},
"Colors": {
"beaconRangeLvl1": "#20E060FF",
@@ -67,6 +68,7 @@
"beaconRangeLvl4": "#2060FF40",
"blockGridOverlayColor": "#80FFFFFF",
"conduitRange": "#2030FFFF",
"conduitRangeOutlines": "#80FFFFFF",
"lightLevelMarkerBlockLit": "#FF209040",
"lightLevelMarkerDark": "#FFFF4848",
"lightLevelMarkerDim": "#FFC0C040",
@@ -118,6 +120,9 @@
"bundleDisplayRowWidth": 9,
"debugMessages": false,
"dontClearStoredSeedOnDimensionChange": true,
"conduitRangeOverlayCombineQuads": true,
"conduitRangeOverlayOutlines": false,
"conduitRangeOverlayThrough": false,
"hudDataSync": {
"enabled": false,
"hotkey": {
@@ -131,10 +136,9 @@
}
},
"entityDataSyncBackup": true,
"entityDataSyncBackupOpenToLan": false,
"entityDataSyncCacheRefresh": 0.25,
"entityDataSyncCacheTimeout": 1.0,
"entityDataSyncLoadNbt": false,
"infoLinesUsesNbt": true,
"lightLevelAutoHeight": false,
"lightLevelCollisionCheck": false,
"lightLevelColoredNumbers": true,
@@ -150,6 +154,7 @@
"shulkerDisplayBgColor": true,
"shulkerDisplayEnderChest": false,
"shulkerDisplayRequireShift": true,
"slimeChunkRenderThrough": false,
"slimeChunkTopToPlayer": false,
"sortLinesByLength": false,
"sortLinesReversed": false,
@@ -157,6 +162,7 @@
"spawnPlayerRedstoneOverlayEnabled": false,
"spawnRealOuterOverlayEnabled": false,
"spawnRealRedstoneOverlayEnabled": false,
"speedUnits": "mps",
"structuresRenderThrough": false,
"useCustomizedCoordinateFormat": true,
"useFontShadow": false,
@@ -238,7 +244,7 @@
"villagerOfferPriceThreshold": 1.0
},
"InfoTypeToggles": {
"infoFPS": false,
"infoFPS": true,
"infoMemoryUsage": false,
"infoTimeIRL": true,
"infoTimeWorld": false,
@@ -296,7 +302,8 @@
"infoHorseJump": false,
"infoPandaGene": false,
"infoDolphinTreasure": false,
"infoEntityVariant": false
"infoEntityVariant": false,
"infoEntityHomePos": false
},
"InfoHotkeys": {
"infoFPS": {
@@ -475,6 +482,9 @@
},
"infoEntityVariant": {
"keys": ""
},
"infoEntityHomePos": {
"keys": ""
}
},
"RendererToggles": {

View File

@@ -0,0 +1,10 @@
{
"data_storage": {
"distance_pos": [
0.0,
0.0,
0.0
]
},
"shapes": {}
}

View File

@@ -8,7 +8,7 @@
"count_hidden_mods": true,
"mod_count_location": "title_screen",
"hide_mod_links": false,
"show_libraries": true,
"show_libraries": false,
"hide_mod_license": false,
"hide_badges": false,
"hide_mod_credits": false,

View File

@@ -156,35 +156,11 @@
// Declares whether arrows in containers should be clickable.
"clickableRecipeArrows": true,
"registerRecipesInAnotherThread": true,
"newFastEntryRendering": true,
"cachingFastEntryRendering": false,
"cachingDisplayLookup": true,
"categorySettings": {
"filteringQuickCraftCategories": { },
"categoryOrdering": [
"minecraft:plugins/crafting",
"minecraft:plugins/smelting",
"minecraft:plugins/smoking",
"minecraft:plugins/blasting",
"minecraft:plugins/campfire",
"minecraft:plugins/stone_cutting",
"minecraft:plugins/fuel",
"minecraft:plugins/brewing",
"minecraft:plugins/composting",
"minecraft:plugins/stripping",
"minecraft:plugins/smithing",
"minecraft:plugins/anvil",
"minecraft:plugins/beacon_base",
"minecraft:plugins/beacon_payment",
"minecraft:plugins/tilling",
"minecraft:plugins/pathing",
"minecraft:plugins/waxing",
"minecraft:plugins/wax_scraping",
"minecraft:plugins/oxidizing",
"minecraft:plugins/oxidation_scraping",
"roughlyenoughitems:plugins/information",
"minecraft:plugins/tag"
],
"categoryOrdering": [],
"hiddenCategories": []
}
},
@@ -193,7 +169,8 @@
"shouldFilterDisplays": true,
"filteringRules": [
"{id:\"roughlyenoughitems:manual\",rule:{}}",
"{id:\"roughlyenoughitems:basic\",rule:{}}"
"{id:\"roughlyenoughitems:basic\",rule:{}}",
"{id:\"roughlyenoughitems:hidden_from_recipe_viewers\",rule:{}}"
]
}
}

View File

@@ -1,2 +1,2 @@
#Pinyin Options
#Tue May 06 22:45:19 CST 2025
#Mon Dec 29 14:11:11 CST 2025

View File

@@ -1,3 +1,3 @@
#Double Pinyin Options
#Tue May 06 22:45:19 CST 2025
#Mon Dec 29 14:11:11 CST 2025
Converter=sougou

View File

@@ -13,7 +13,122 @@
"rain_splash": true,
"block_break": true,
"block_breaking": true,
"other": {}
"other": {
"minecraft:portal": true,
"minecraft:firework": true,
"minecraft:flash": true,
"minecraft:rain": true,
"minecraft:dolphin": true,
"minecraft:glow": true,
"minecraft:heart": true,
"minecraft:bubble_pop": true,
"minecraft:falling_dripstone_water": true,
"minecraft:flame": true,
"minecraft:sculk_charge_pop": true,
"minecraft:item_snowball": true,
"minecraft:nautilus": true,
"minecraft:trail": true,
"minecraft:raid_omen": true,
"minecraft:tinted_leaves": true,
"minecraft:spore_blossom_air": true,
"minecraft:falling_obsidian_tear": true,
"minecraft:pale_oak_leaves": true,
"minecraft:dripping_lava": true,
"minecraft:dust": true,
"minecraft:bubble_column_up": true,
"minecraft:block_marker": true,
"minecraft:gust_emitter_small": true,
"minecraft:happy_villager": true,
"minecraft:enchant": true,
"minecraft:wax_on": true,
"minecraft:campfire_signal_smoke": true,
"minecraft:wax_off": true,
"minecraft:sculk_soul": true,
"minecraft:falling_spore_blossom": true,
"minecraft:damage_indicator": true,
"minecraft:infested": true,
"minecraft:ash": true,
"minecraft:explosion": true,
"minecraft:gust": true,
"minecraft:electric_spark": true,
"minecraft:gust_emitter_large": true,
"minecraft:dust_color_transition": true,
"minecraft:falling_dust": true,
"minecraft:current_down": true,
"minecraft:dust_plume": true,
"minecraft:item_cobweb": true,
"minecraft:lava": true,
"minecraft:reverse_portal": true,
"minecraft:trial_spawner_detection": true,
"minecraft:bubble": true,
"minecraft:landing_lava": true,
"minecraft:sneeze": true,
"minecraft:dripping_water": true,
"minecraft:landing_honey": true,
"minecraft:soul": true,
"minecraft:note": true,
"minecraft:mycelium": true,
"minecraft:explosion_emitter": true,
"minecraft:underwater": true,
"minecraft:small_gust": true,
"minecraft:block": true,
"minecraft:totem_of_undying": true,
"minecraft:large_smoke": true,
"minecraft:ominous_spawning": true,
"minecraft:item_slime": true,
"minecraft:instant_effect": true,
"minecraft:entity_effect": true,
"minecraft:falling_nectar": true,
"minecraft:cherry_leaves": true,
"minecraft:item": true,
"minecraft:sculk_charge": true,
"minecraft:elder_guardian": true,
"minecraft:vault_connection": true,
"minecraft:poof": true,
"minecraft:scrape": true,
"minecraft:sonic_boom": true,
"minecraft:sweep_attack": true,
"minecraft:shriek": true,
"minecraft:falling_lava": true,
"minecraft:dragon_breath": true,
"minecraft:small_flame": true,
"minecraft:egg_crack": true,
"minecraft:angry_villager": true,
"minecraft:block_crumble": true,
"minecraft:splash": true,
"minecraft:crit": true,
"minecraft:soul_fire_flame": true,
"minecraft:witch": true,
"minecraft:smoke": true,
"minecraft:glow_squid_ink": true,
"minecraft:spit": true,
"minecraft:falling_honey": true,
"minecraft:campfire_cosy_smoke": true,
"minecraft:snowflake": true,
"minecraft:fishing": true,
"minecraft:white_smoke": true,
"minecraft:falling_water": true,
"minecraft:squid_ink": true,
"minecraft:dust_pillar": true,
"minecraft:dripping_honey": true,
"minecraft:enchanted_hit": true,
"minecraft:warped_spore": true,
"minecraft:dripping_obsidian_tear": true,
"minecraft:cloud": true,
"minecraft:end_rod": true,
"minecraft:firefly": true,
"minecraft:trial_omen": true,
"minecraft:composter": true,
"minecraft:landing_obsidian_tear": true,
"minecraft:white_ash": true,
"minecraft:crimson_spore": true,
"minecraft:dripping_dripstone_water": true,
"minecraft:effect": true,
"minecraft:trial_spawner_detection_ominous": true,
"minecraft:vibration": true,
"minecraft:falling_dripstone_lava": true,
"minecraft:dripping_dripstone_lava": true
}
},
"detail_settings": {
"sky": true,
@@ -25,10 +140,54 @@
"sky_colors": true
},
"render_settings": {
"fog_distance": 0,
"fog_start": 100,
"multi_dimension_fog_control": false,
"dimensionFogDistance": {},
"global_fog": true,
"fog_type_config": {
"LAVA": {
"enable": true,
"environment_start_multiplier": 100,
"environment_end_multiplier": 100,
"render_distance_start_multiplier": 100,
"render_distance_end_multiplier": 100,
"sky_end_multiplier": 100,
"cloud_end_multiplier": 100
},
"WATER": {
"enable": true,
"environment_start_multiplier": 100,
"environment_end_multiplier": 100,
"render_distance_start_multiplier": 100,
"render_distance_end_multiplier": 100,
"sky_end_multiplier": 100,
"cloud_end_multiplier": 100
},
"POWDER_SNOW": {
"enable": true,
"environment_start_multiplier": 100,
"environment_end_multiplier": 100,
"render_distance_start_multiplier": 100,
"render_distance_end_multiplier": 100,
"sky_end_multiplier": 100,
"cloud_end_multiplier": 100
},
"DIMENSION_OR_BOSS": {
"enable": true,
"environment_start_multiplier": 100,
"environment_end_multiplier": 100,
"render_distance_start_multiplier": 100,
"render_distance_end_multiplier": 100,
"sky_end_multiplier": 100,
"cloud_end_multiplier": 100
},
"ATMOSPHERIC": {
"enable": true,
"environment_start_multiplier": 100,
"environment_end_multiplier": 100,
"render_distance_start_multiplier": 100,
"render_distance_end_multiplier": 100,
"sky_end_multiplier": 100,
"cloud_end_multiplier": 100
}
},
"light_updates": true,
"item_frame": true,
"armor_stand": true,
@@ -49,7 +208,6 @@
"reduce_resolution_on_mac": false,
"use_adaptive_sync": false,
"cloud_height": 192,
"cloud_distance": 100,
"toasts": true,
"advancement_toast": true,
"recipe_toast": true,

View File

@@ -11,12 +11,13 @@
},
"performance": {
"chunk_builder_threads": 0,
"always_defer_chunk_updates_v2": true,
"chunk_build_defer_mode": "ALWAYS",
"animate_only_visible_textures": true,
"use_entity_culling": true,
"use_fog_occlusion": true,
"use_block_face_culling": true,
"use_no_error_g_l_context": true
"use_no_error_g_l_context": true,
"quad_splitting_mode": "SAFE"
},
"notifications": {
"has_cleared_donation_button": true,

View File

@@ -0,0 +1,4 @@
{
"version": 1,
"userConsentedToSendCrashReports": false
}

View File

@@ -0,0 +1,4 @@
{
"version": 1,
"style": "VANILLA_MODERN"
}

View File

@@ -50,8 +50,8 @@ Show Player Names:true
Show Mob Names:true
Font Scale:1.0
Show Facing:true
Hidden Mobs:
Worldmap Zoom:0.5
Hidden Mobs:minecraft:,
Worldmap Zoom:1.5878984
Worldmap Minimum Zoom:0.5
Worldmap Maximum Zoom:16.0
Worldmap Cache Size:500

View File

@@ -23,6 +23,7 @@
blocks: [
"minecraft:barrier",
"minecraft:structure_void",
"minecraft:light",
"#waila:blacklist"
],
blockEntityTypes: [
@@ -41,7 +42,7 @@
// The values below are used internally by WTHIT, you SHOULD NOT modify it!
configVersion: 0,
pluginHash: [
981800043,
-158949004,
1449661236,
2021915756
]