-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e55ff4
commit ea25cd0
Showing
46 changed files
with
781 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"version": 1, | ||
"overrides": { | ||
"immediatelyfast": { | ||
"-depends": { | ||
"minecraft": "IGNORED" | ||
} | ||
} | ||
} | ||
} |
76 changes: 76 additions & 0 deletions
76
src/1.21.3/fabric/config/yosbr/config/badoptimizations.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# BadOptimizations configuration | ||
# Here you can configure stuff, mostly enabling/disabling specific optimizations. | ||
|
||
# Whether we should cancel updating the lightmap if not needed. | ||
enable_lightmap_caching: false | ||
# How much the in-game time must change in ticks (1/20th of a second) | ||
# for the lightmap to immediately update. | ||
# Higher values will result in less frequent updates | ||
# to block lighting, but better performance. | ||
# Values below 2 will disable hte optimization. | ||
lightmap_time_change_needed_for_update: 80 | ||
|
||
# Whether the sky's color should be cached unless you're on a biome border. | ||
enable_sky_color_caching: true | ||
# How much the in-game time must change in ticks for the sky color to | ||
# be recalculated with our own calculation. Higher values will result in | ||
# the sky updating less frequently, but slightly better performance. | ||
# Values below 2 will all have the same effect. | ||
skycolor_time_change_needed_for_update: 3 | ||
|
||
# Whether we should avoid calling debug renderers | ||
# and their calculations if there are no debug entries to render | ||
enable_debug_renderer_disable_if_not_needed: true | ||
|
||
# | ||
# Micro optimizations | ||
# | ||
|
||
# Whether we should avoid calling the particle manager | ||
# and its calculations if there are no particles. | ||
enable_particle_manager_optimization: true | ||
# Whether we should avoid calling the toast manager | ||
# if there are no toasts | ||
enable_toast_optimizations: true | ||
# Whether the result of getSkyAngle should be cached | ||
# for the entire frame during rendering | ||
enable_sky_angle_caching_in_worldrenderer: true | ||
# Whether entity renderers should be stored directly in EntityType | ||
# instead of a HashMap. | ||
# Disable to fix compatibility with Twilight Forest | ||
enable_entity_renderer_caching: true | ||
# Whether block entity renderers should be stored in BlockEntityType | ||
# instead of a HashMap. | ||
enable_block_entity_renderer_caching: true | ||
# Whether entity flags should be cached instead of calling DataTracker. | ||
# Also removes the unnecessary thread lock in DataTracker | ||
# however this is also done by Lithium (they don't conflict, however). | ||
# This has no effect in 1.20.5+! | ||
enable_entity_flag_caching: true | ||
# Whether we should avoid calling FOV calculations | ||
# if the FOV effect scale is zero. | ||
enable_remove_redundant_fov_calculations: true | ||
# Don't tick the tutorial if the game is not in demo mode. | ||
enable_remove_tutorial_if_not_demo: true | ||
|
||
# | ||
# Other | ||
# | ||
|
||
# Whether BadOptimizations <version> should be added onto | ||
# the left text of the F3 menu. | ||
show_f3_text: true | ||
|
||
# Some config options will be force-disabled if certain mods are present | ||
# due to incompatibilities (e.g. entity rendering caching | ||
# is disabled w/ Twilight Forest). | ||
# However, if you still want to use the optimizations, you can override it | ||
# by setting this to true. Beware of crashes. And Herobrine. | ||
ignore_mod_incompatibilities: false | ||
|
||
# Whether to log the entire config into console when booting up. | ||
# If you plan on reporting an issue, please keep this on. | ||
log_config: true | ||
|
||
# Do not change this | ||
config_version: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version = 3 | ||
|
||
[clientSideConfig] | ||
[clientSideConfig.modifyMaxVDConfig] | ||
enableExtRenderDistanceProtocol = false | ||
enabled = false | ||
|
||
[noTickViewDistance] | ||
enableExtRenderDistanceProtocol = false | ||
maxViewDistance = 32 |
1 change: 1 addition & 0 deletions
1
src/1.21.3/fabric/config/yosbr/config/ferritecore.mixin.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
useSmallThreadingDetector = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"experimental_sign_text_buffering": true, | ||
"experimental_screen_batching": true | ||
} |
8 changes: 8 additions & 0 deletions
8
src/1.21.3/fabric/config/yosbr/config/modernfix-mixins.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
mixin.bugfix.packet_leak=true | ||
mixin.perf.clear_fabric_mapping_tables=true | ||
mixin.perf.clear_mixin_classinfo=true | ||
mixin.perf.deduplicate_climate_parameters=true | ||
mixin.perf.dynamic_entity_renderers=true | ||
mixin.perf.dynamic_resources=true | ||
mixin.perf.faster_item_rendering=true | ||
mixin.perf.worldgen_allocation=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
itemFrameLODRange = 16 | ||
itemFrame3FaceCullingRange = 2.0 | ||
includeMangroveRoots = true | ||
leavesCullingMode = "CHECK" | ||
endGatewayCulling = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"advanced": { | ||
"cpu_render_ahead_limit": 5 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"threadPriority": { | ||
"game": 8, | ||
"main": 3, | ||
"io": 6, | ||
"integratedServer": 5 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
enableVsync:false | ||
renderDistance:12 | ||
simulationDistance:5 | ||
maxFps:260 | ||
graphicsMode:0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
hash-format = "sha256" | ||
|
||
[[files]] | ||
file = "config/fabric_loader_dependencies.json" | ||
hash = "720879eb78d2d1751d3e1daed7a0eeb348fd6b0b9d8d9f6d8951f6a86f5b6c08" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/badoptimizations.txt" | ||
hash = "9c3320fd1f540bfff755d15ed3ab823eaedd2a4eda4fef3dfcc465a72ed8f5e0" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/c2me.toml" | ||
hash = "fe60a5347d097b78c7f2faa1d2f9aecda3ca2d5dec3ab2068726e9f39ce6cb78" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/ferritecore.mixin.properties" | ||
hash = "1fbbea658d8af2a751857e70cf2d5930a24490cc4c24f8db9b49630a818b895c" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/immediatelyfast.json" | ||
hash = "6bd59873ad94c9a07604af1001c1c45c09f510f9f8006e4c1819e370960955e3" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/modernfix-mixins.properties" | ||
hash = "483096dc25557b52bacdc1a9a1eaf21d33ce5882136d723830001c1c82ea924f" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/moreculling.toml" | ||
hash = "12d3decf5e932d53d073a3c6c70d1677762321b5cd26ebebb8f5b6cc07cb4114" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/sodium-options.json" | ||
hash = "23425f7d1e8da4edb6308afb2eedfb5b4a604c6fdcad2d920ab2705a67157a15" | ||
|
||
[[files]] | ||
file = "config/yosbr/config/threadtweak.json" | ||
hash = "26df7aaed06a389204a468b974ab6f00845f0ad500df42b5e7afea229e5c3b16" | ||
|
||
[[files]] | ||
file = "config/yosbr/options.txt" | ||
hash = "c1ef9686c2a5dfe03494258f1285e43e9fdb79b82a745c855dd9b3f0e1ffb107" | ||
|
||
[[files]] | ||
file = "mods/badoptimizations.pw.toml" | ||
hash = "f504ba087ee77ecd5a111e372eab535cddea4a7362f59902ccad72a6cb40ada2" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/c2me-fabric.pw.toml" | ||
hash = "6fd91ccc4925776234d2960202dae76f2371a3fe2e62822d6fe26eff29fee458" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/cloth-config.pw.toml" | ||
hash = "6bb5dc7d6fd4a3dcc54144f35ad6aee8d3d4903571931e702df9a83610d69179" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/dynamic-fps.pw.toml" | ||
hash = "389abdf912da1a7ee300d5603bcd0db449481c5f6ad57920163afa8f25b9f9e5" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/fabric-api.pw.toml" | ||
hash = "91794dc15db23a2adc3f5992bbba41231d06f970c22f8fa3bca0ce2492cba9ef" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/immediatelyfast.pw.toml" | ||
hash = "7ed4b1f815d4c6121591cbad1d0b41fea818c4cb377b0f8f39655392f8cf63df" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/iris.pw.toml" | ||
hash = "d3d53e83fbebd420919804c2204e411923f8ea0c62fafa2771c0beb5ed4cfbe2" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/lithium-fabric-mc24w40a-0.13.1+git.dacfbc2.jar" | ||
hash = "64fd96ebc850620600e46061aa71ce5b2dcb174afdc5827786d1033e8d13cba0" | ||
|
||
[[files]] | ||
file = "mods/modmenu.pw.toml" | ||
hash = "b1c44fce799dc98d07a3b5b28ea58ddb3ed19a16e5caffa1e736275aab026286" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/moreculling.pw.toml" | ||
hash = "9d8287876e77f35fd00cee4a5f11b58447f8f3c6dcb317d189e1c35dfb3143d8" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/sodium.pw.toml" | ||
hash = "cca92e4627588a252a72fa2510bf2b41506835a01f1eeb883b90452bdecf20f7" | ||
metafile = true | ||
|
||
[[files]] | ||
file = "mods/yosbr.pw.toml" | ||
hash = "34d8808403d641935e0803cd2b83a33689cdb351d2614e990a2c9268958a6a19" | ||
metafile = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "BadOptimizations" | ||
filename = "BadOptimizations-2.2.0-1.21.2.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/g96Z4WVZ/versions/DchDm00R/BadOptimizations-2.2.0-1.21.2.jar" | ||
hash-format = "sha512" | ||
hash = "d3171600b3f9d46db3ebb897a864319279e93f097dce32364221e8ebb9e90d7e7ee151b6cc25474744f2ee0e2c1c20d24f4480797f0b1c82d09ed83f27bbb68d" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "g96Z4WVZ" | ||
version = "DchDm00R" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Concurrent Chunk Management Engine (Fabric)" | ||
filename = "c2me-fabric-mc1.21.2-0.3.0+alpha.0.330.jar" | ||
side = "both" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/yshDT6lk/c2me-fabric-mc1.21.2-0.3.0%2Balpha.0.330.jar" | ||
hash-format = "sha512" | ||
hash = "656ae2a5d9e1eb4d11448feb2445b46e67ba2f6d3a3cd171ee1db0852621ce0099313f96121f0d0a44a396a78deab4dd873aa4d2b131f9eb39e9e3ac1d3af18f" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "VSNURh3q" | ||
version = "yshDT6lk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Cloth Config API" | ||
filename = "cloth-config-16.0.141-fabric.jar" | ||
side = "both" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/JbVSQUVw/cloth-config-16.0.141-fabric.jar" | ||
hash-format = "sha512" | ||
hash = "f8b0fa16fe80a8b78a059ebf1cf366d65132b1dd1830d8b689ecfc731696514e2b3dd73903fbb37d0a5f3d853aa521827bf7ed6fb5d9db245c6afd7ffb9e2687" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "9s6osm5g" | ||
version = "JbVSQUVw" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Dynamic FPS" | ||
filename = "dynamic-fps-3.7.4+minecraft-1.21.2-fabric.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/e9gdmZiv/dynamic-fps-3.7.4%2Bminecraft-1.21.2-fabric.jar" | ||
hash-format = "sha512" | ||
hash = "8042d057a979cf2bd16d3bfe52088f4e3748d089e89f4aa09a1a229587dd9efb168d34154a13cdb6d851c5edb0b54bcf758af60f13ba406e2c9e4475954fe8a7" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "LQ3K71Q1" | ||
version = "e9gdmZiv" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Fabric API" | ||
filename = "fabric-api-0.106.1+1.21.3.jar" | ||
side = "both" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/dhD4I4lJ/fabric-api-0.106.1%2B1.21.3.jar" | ||
hash-format = "sha512" | ||
hash = "2db4e8a6961a0453d403c65602257c3d23440de9fffc139ad5ad2ef58c1b62c3747b8f04798740b64f561079b1ff843c13867a8f040ae81caa672dc068bf614e" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "P7dR8mSH" | ||
version = "dhD4I4lJ" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "ImmediatelyFast" | ||
filename = "ImmediatelyFast-Fabric-1.3.0+1.21.3.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/bsaX5YIx/ImmediatelyFast-Fabric-1.3.0%2B1.21.3.jar" | ||
hash-format = "sha512" | ||
hash = "1a3545ae9d116fa3418f5eb9736698812d7c28800f961d7067a73988b6c090d8814b79d1913d5b2b00669f337809df7a0d7253dd5fa18aef553f4427ec41f197" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "5ZwdcRci" | ||
version = "bsaX5YIx" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Iris Shaders" | ||
filename = "iris-fabric-1.8.0-beta.6+mc1.21.2.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/XExINvk9/iris-fabric-1.8.0-beta.6%2Bmc1.21.2.jar" | ||
hash-format = "sha512" | ||
hash = "8f282e77a6cc795def38a047d60a6f2e814074a2c6ee1aab2dbbf08b6301374f38eb0a52f2d68a5f43357f7a8d31b786ec9bc9f32da7bdf66ab26e09ec8714ec" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "YL57xq9U" | ||
version = "XExINvk9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Mod Menu" | ||
filename = "modmenu-12.0.0-beta.1.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/PcJvQYqu/modmenu-12.0.0-beta.1.jar" | ||
hash-format = "sha512" | ||
hash = "7d7879f45e37048aa8ebd37dcc150b74ebcd6f72bd52fb25c409719779edad3610dc2cab5c248c581f10e3d7f8514555c4753ad7523fce5124b8fae6676948a6" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "mOgUt4GM" | ||
version = "PcJvQYqu" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "More Culling" | ||
filename = "moreculling-fabric-1.21.2-1.1.0-beta.1.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/51shyZVL/versions/MCl5VK6v/moreculling-fabric-1.21.2-1.1.0-beta.1.jar" | ||
hash-format = "sha512" | ||
hash = "1156471c813d3cf8008cdb1866088cbd690c9627d27bb1f5faa961287802b80f2da5243b2d0d7825c19bc72989b06143ace013743d12394f30806f3218eaa1fa" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "51shyZVL" | ||
version = "MCl5VK6v" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Sodium" | ||
filename = "sodium-fabric-0.6.0-beta.3+mc1.21.2.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/YWD36TtF/sodium-fabric-0.6.0-beta.3%2Bmc1.21.2.jar" | ||
hash-format = "sha512" | ||
hash = "bf1ebf525540752a03de122dff69f35a41aa6aa13b6765701865d6d49b1014bd70ae0334bac6fbc30a12ec2d4a7afa945a9979c3bf40f906ea9e1bad2fc5a370" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "AANobbMI" | ||
version = "YWD36TtF" |
Oops, something went wrong.