Tags
Creators
Details
All versions
1.3
Release
PAPIProxyBridge v1.3 - API changes, stability3 years ago 324
Compatibility
Minecraft: Java Edition
1.20.1
1.19.4
1.18.2
1.17.1
1.16.5
Platforms
BungeeCord
Fabric
Spigot
Velocity
Supported environments
Server-side
Singleplayer
Changes
PAPIProxyBridge 1.3 makes changes to the API, adds the ability to fetch a list of servers with PAPIProxyBridge installed, and improves system stability.
- Add API method for fetching the list of server names which have PAPIProxyBridge installed (#54)
- Moved the API to be instance-based, rather than singleton-based, courtesy of @Jarva (#66)
- Each plugin should now create and store its own PAPIProxyBridge
PlaceholderAPIinstance. - The method has changed to
#createInstance();#getInstance()is now deprecated. - This allows plugins to independently configure cache time
- Each plugin should now create and store its own PAPIProxyBridge
- Fixed an issue where the Velocity Plugin Message event was still being passed to clients
- Fixed an
OutOfMemoryExceptionthat could occur in certain cases, caused by concurrent Map issues (#65)
To update, just drag+drop.
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:bEIUEGTX:74QioF1b"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:bEIUEGTX:74QioF1b"
}

