Release diff: master → previous_release - #30
Closed
Th0rgal wants to merge 2 commits into
Closed
Conversation
* docs: redesign README with clean layout and project links * docs: add architecture diagram and technical depth to README * Refine README wording and links * Simplify README footer link * Clarify license wording
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
* feat: integrate Hopper for automatic PacketEvents downloading Replace shaded PacketEvents dependency with Hopper runtime downloader. Reduces JAR size by 84% (5.5MB → 822KB) and eliminates classpath conflicts. Plugin automatically downloads PacketEvents from Modrinth on first start, with server restart prompt if needed. Added Paper plugin bootstrap loader and updated documentation. * fix: unregister command on plugin disable to prevent memory leak Commands registered via CommandMap persist after plugin disable, causing leaks and issues on reload. Store reference and unregister. * fix: use absolute /docs paths for internal documentation links Relative links weren't resolving correctly with contentDirBasePath. * feat: add bStats metrics integration (ID: 20187) Track plugin usage statistics via bStats.org for analytics. * fix: support both Spigot and Paper command registration On Spigot, use getCommand().setExecutor() for plugin.yml commands. On Paper plugins, fall back to CommandMap registration.
| packetevents: | ||
| load: BEFORE | ||
| required: true | ||
| join-classpath: true |
There was a problem hiding this comment.
Required dependency conflicts with runtime download approach
The paper-plugin.yml declares packetevents as required: true, but AacBootstrap downloads PacketEvents at runtime via Hopper. On first install without PacketEvents pre-installed, Paper's dependency system checks for loaded plugins, not just JAR files on disk. Even after Hopper downloads PacketEvents, it won't be recognized as a loaded plugin until server restart, causing Paper to report a missing dependency error instead of showing the "please restart" message from the bootstrap. This creates a confusing first-run experience where users see dependency errors despite successful download.
Additional Locations (1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated PR. The 'previous_release' branch is force-updated on every push to master to point at the commit before the push, so this PR always represents the current release diff.
Note
• Plugin now auto-downloads
PacketEventsat runtime viaHopperinstead of shading it; adds a PaperPluginLoader(AacBootstrap) to fetch dependency before classload and prompts restart if needed.packetevents-spigottocompileOnly, addhopper-paperandbstats-bukkit, add Oraxen repo; adjust shading to relocate Hopper and bStats only./aacvia CommandMap for Paper, add bStats metrics, and clean command on reload.paper-plugin.ymlwith loader and dependency declarations.• Docs/README overhaul: refreshed landing README with architecture/links; install guide documents Hopper auto-download and troubleshooting; many docs links updated to
/docs/...; internal CLAUDE notes mention Hopper workflow.Written by Cursor Bugbot for commit 4d5d943. This will update automatically on new commits. Configure here.