Ever-present
Having received periodic updates ever since the last release, it's a new release of Not So New. This adds support for Minecraft versions between 1.19.1 and 24w13a, as well as various mods which previously had issues, including special support for OptiFabric.
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 >= 17), 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"
}
}
}
}