File Details
playerapi-1.12.0.jar
- R
- Jun 17, 2026
- 441.83 KB
- 222
- 26.1.2
- Fabric
File Name
playerapi-1.12.0.jar
Supported Versions
- 26.1.2
Curse Maven Snippet
[1.12.0]
Added
UpdateChecker— shared GitHub-release update checker for all PlayerAPI-based mods, so the logic lives in one place instead of being copy-pasted per mod.UpdateChecker.check(modId, releasesApiUrl)fetches the latest release, compares versions, and notifies in chat.- Minecraft-version aware: release tags use
<modVersion>+<mcVersion>(e.g.1.2.0+26.1.2). If a newer release targets a different MC version than the one running, the notice says so rather than implying it's installable. Tags without+mcVersionbehave as before (version-agnostic). - Click to hide: each notification ends with a
[Hide]link that suppresses re-notification for that specific version (a genuinely newer version later still notifies). Dismissal state is stored per-mod inPlayerAPIConfig.
- Minecraft-version aware: release tags use
/playerapi dismissupdate <modid>client command (registered by PlayerAPI) that the[Hide]link runs; with an ALLOW_COMMAND fallback for servers that override the command tree.
Changed
- PlayerAPI's own update check now routes through
UpdateChecker(removed its duplicated checker code).

