Tags
Creators
Details
Licensed MIT
Published 2 weeks ago
All versions
2.0.0
Release
GuidedMod 2.0.0last week 5
Uploaded by
Compatibility
Minecraft: Java Edition
1.21.1
Platform
NeoForge
Supported environments
Client-side
Changes
Important Changes
- Exact Word Boundary Matching: Completely overhauled the filename matching algorithm. The mod now uses strict word boundary checks (e.g., configuring
terralithonly matchesterralithand will never mistakenly disableterrablender). This ensures 100% precision when targeting mods and completely prevents accidental collateral damage to similarly named mods. - Version Bump: Updated the mod version directly to 2.0.0 to mark the stabilization of the mode switching engine and the finalized flat logo design.
Fixes
- Fixed a critical issue where the old partial prefix matching algorithm could overzealously match and disable multiple mods that shared the same prefix.
重要更新
- 精确词边界匹配算法:彻底重构了底层的文件名匹配逻辑。现在模组采用严格的词边界检测(例如:在配置中填写
terralith将只会且绝对只会命中terralith,再也不会误伤terrablender等拥有相同前缀的模组)。确保了对目标模组 100% 精确打击,杜绝任何“连坐”现象。 - 大版本号跨越:直接将版本号升级至 2.0.0,标志着模式切换引擎的安全性和稳定性已完全达标。
修复
- 修复了旧版模糊搜索算法在面对同前缀模组时,可能导致无辜模组被一并禁用的严重 Bug。
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:Lw8nqt7o:uuj1qceo"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Lw8nqt7o:uuj1qceo"
}

