ScraM Team
ScraM Team
This change lets server owners choose their Zlib implementation. In nukkit.yml: ``` network: # 0 for Original, 1 for Single-Thread, 2 for ThreadLocal zlib-provider: 0 ```
This fixes two minor issues with calculating damage for arrows fired from enchanted bows.
### Issue Description Arrows fired from bows with the Power enchantment don't seem to do as much damage as they are supposed to. Zombies don't die instantly like they do...
The Web Share API (https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share) looks very useful for web apps. It would be great if support was added to the built-in Navigator class, perhaps: * Navigator.isShareSupported() * Navigator.share(String url,...
DomBuilder.java:51 always creates elements using createElement. This works for HTML elements, but for SVG elements it causes the browser to not render the SVG. Using svg elements in a template...
Allow SVG in templates by using SVG namespace when creating the SVG elements. SVG elements (and children) have to be created using createElementNS. Otherwise they are treated as regular HTML...
Flavour currently uses hash-based routing, which works great for many cases. For a path like "/buttons", the URL looks like: https://frequal.com/tea-sampler/#/buttons However, it would be great to have an option...
(This addresses issue #51) This PR adds Path-based routing to Flavour. The existing Hash-based routing has been refactored into a HashRoutingStrategy. Routing now redirects to a strategy. The strategy can...
In a large project, it is hard to tell the source of errors in Flavour output, since filenames are missing in some cases. This change provides more detail in error...
If a std:if block is toggled on or off via Templates.update() inside a validation element, validation exceptions occur. The workaround: use CSS to hide the elements instead of removing them...