Skip to content

Broader Support for Broader Horizons

Choose a tag to compare

@Chocohead Chocohead released this 04 Dec 00:12
· 25 commits to master since this release

As another 1.21 release day (1.21.4 specifically) goes by, so does another Not So New release. This adds supports for Minecraft versions between 1.21.1 and 1.21.4, as well as a large expansion of mod supported which previously had issues.

As before, mods will be transformed wherever they use Java 9+ classes. Any mod which declares an explicit dependency on a Java version (e.g. java >= 21), such as the Example Mod, will need a manual dependency override to allow Not So New to do its work. This also includes Minecraft itself.

As an example, for just using Fabric API the following needs to be put in a file named fabric_loader_dependencies.json in the config folder:

{
	"version": 1,
	"overrides": {
		"minecraft": {
			"-depends": {
				"java": "Not any more"
			}
		},
		"fabric-api": {
			"-depends": {
				"java": "Not any more"
			}
		}
	}
}