Hugo Manrique
Hugo Manrique
I went from posts rendering in 0.93 seconds to 5.2+ seconds. Is it possible to integrate the new Jekyll cache with this plugin?
My site doesn't require any JS to read. I prefer 5 seconds of compile-time rather than rendering math at runtime (sending every client 250 kB + wasting time on their...
Having the same problem, I chose this project because it supports code highlighting, but not being able to use braces is a major issue right now.
This is expected behavior (and as you say is essentially the same as the linked issue) and mimics Brigadier's parsing mechanism.
I like the idea. How about also encouraging unsafe plugin authors to include a range of tested/"safe" versions and fail hard if unsupported? Of course, this can be implemented by...
Imo this is out of scope; you can add the copying logic to your (re)start script. I'm on a phone, but adding `mv -f plugin_updates/* plugins/` before the `java` command...
No, we document (and API users expect) that all the children of an alias node registered by the proxy **must** come from the proxy, see https://github.com/PaperMC/Velocity/blob/fee292bcc9b88638af94151286877296c1948f56/proxy/src/main/java/com/velocitypowered/proxy/command/CommandGraphInjector.java#L61. Thus, the backend server's...
The `ProxyShutdownEvent` is intended for plugins to clean up their resources, so firing disconnect events afterwards is not an option. There _are_ ways to detect the shutdown: a. Call [`ProxyServer#shutdown`](https://jd.papermc.io/velocity/3.0.0/com/velocitypowered/api/proxy/ProxyServer.html#shutdown()...
Sorry, also missed the extra dash in `Z-0`.
In addition, the composition over inheritance of these exception classes, apart of not being the norm in Java, can hurt the GC. Would be interesting to benchmark the impact with...