Closed kada49 closed 1 year ago
The mod dev will get around to it when they get time, but for now I've found extracting the jar file and changing the minecraft version match to 1.20
worked, at least on the title screen. There may be bugs though, so if you follow this method don't bother reporting them here.
The mod dev will get around to it when they get time, but for now I've found extracting the jar file and changing the minecraft version match to
1.20
worked, at least on the title screen. There may be bugs though, so if you follow this method don't bother reporting them here.
You can do a dependency override instead of changing the version manually on the meta file inside the jar. Just create a file called fabric_loader_dependencies.json
in your instance's config folder and put this in it:
{
"version": 1,
"overrides": {
"borderlessmining": {
"-depends": {
"minecraft": "IGNORED"
}
}
}
}
The mod dev will get around to it when they get time, but for now I've found extracting the jar file and changing the minecraft version match to
1.20
worked, at least on the title screen. There may be bugs though, so if you follow this method don't bother reporting them here.You can do a dependency override instead of changing the version manually on the meta file inside the jar. Just create a file called
fabric_loader_dependencies.json
in your instance's config folder and put this in it:{ "version": 1, "overrides": { "borderlessmining": { "-depends": { "minecraft": "IGNORED" } } } }
Thanks, that worked. And yes, it does work in game as well, not just in main menu. I would prefer a regular new version for 1.20, but that worked.
I wasn't smart enough to figure out how to use quilt dependency overrides feature so I modified the mod file directly:
borderless-mining-1.17+1.19.4.jar
to borderless-mining-1.17+1.19.4.zip
fabric.mod.json
"depends"
property to depend on 1.20:
...
"depends": {
"fabricloader": "\u003e\u003d0.7.2",
"fabric-resource-loader-v0": "*",
"minecraft": "1.20"
},
...
@nolanbarry , you can just edit file inside the jar using WinRAR, without extracting
ah, seems that even with the fabric_dependencies trick, the mod still crashes when one tries to go to the config on mod menu (Crash Report HERE).
@kada49 could you do a build of your fork for me to test?
I managed to get it working, after changing fabric_loader_dependencies.json
and fabric.mod.json
you also need to enable borderless fullscreen in config\borderlessmining.json
via notepad
Could you add support for Fabric 1.20? I already forked the project (https://github.com/kada49/BorderlessMining) and adapted the code to (probably) work in the newer version. I also did not open a merge request, since there is no 1.20 branch to merge to.
Thanks! :)