Sinytra Connector is a translation/compatibility layer that allows running Fabric mods on NeoForge. Its goal is to bring the two platforms closer together, saving developers time and effort maintaining their mods for multiple platforms at once, as well as allowing players to play all their favourite mods in one modpack.
π The official documentation is available at sinytra.org.
We have an official Discord community for Connector. By joining, you can:
To install Connector and its dependencies, follow the same installation steps as you would for any other mods:
If you're having trouble running a mod on Connector, join our community on Discord, ask us on GitHub Discussions or open an issue in this repository.
Here's a few tips to follow when reporting issues:
Please note that providing as many details as possible is crucial to help us find and resolve the issue faster, while also getting you a fixed version ASAP.
β 1.21 is our primary supported version. This is the one that will receive new fixes and compatibility improvements.
β οΈ 1.20.1 is our long-term-support version and will still receive critical bugfixes. However, no compatibility fixes will be made.
Sinytra Connector is, and will always remain, licensed under the MIT License. All files in this repository should be treated as such unless otherwise explicitly stated.
Before you decide to make major changes, you might want to discuss them with us beforehand, so that you're not wasting your time. To submit your changes to the project, you can contribute via Pull-Request.
Here's a few tips to help get your PR approved:
If you're a mod developer and you'd like to run Connector in your dev environment, it is possible in just a few steps.
Used Fabric mods must be mapped to intermediary
so that Connector can process them.
plugins {
// Used to attach the clean mapped Minecraft artifact to run configurations
// Find the latest version at https://maven.su5ed.dev/#/releases/org/sinytra/adapter/userdev/
id 'org.sinytra.adapter.userdev' version '<version>'
}
repositories {
// Make sure to add this to the pluginManagement.repositories block in settings.gradle as well
maven {
name = "Sinytra"
url = "https://maven.su5ed.dev/releases"
}
}
dependencies {
// Add Connector to the launch classpath
additionalRuntimeClasspath "org.sinytra:Connector:<version>"
// Add FFAPI dependency
runtimeOnly "org.sinytra.forgified-fabric-api:forgified-fabric-api:<version>"
// Install desired Fabric mods. Make sure they remain unmapped at runtime
runtimeOnly "some.fabric:mod:<version>"
}
All information regarding Connector's configuration options can be found on our website.